summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/danoeh/antennapod/activity/DownloadAuthenticationActivity.java
AgeCommit message (Collapse)Author
2023-05-05Download Service Rewrite (#6420)ByteHamster
2023-02-19Remove another global callback object (#6316)ByteHamster
2022-11-06Move preferences to a new moduleByteHamster
2022-11-06Move DownloadService-Interface to new moduleByteHamster
2022-11-05Remove dependency from other classes to DownloadServiceByteHamster
2022-01-06Rewrite download request creation (#5530)ByteHamster
Android has a limit on the size of Intent parameters. When enqueuing a huge number of items, it just ignored the argument and did not call onNewIntent. We now load the list over in DownloadService.
2021-04-22Moved model to its own moduleByteHamster
2021-01-22Use authentication dialog instead of dedicated activityByteHamster
2021-01-13Store password when entering after failed downloadByteHamster
2021-01-13Simplify authentication activityByteHamster
2020-12-14Remove unused import statements to reduce dependenciesHerbert Reiter
2020-07-26Add missing @NonNull and @Nullable annotations.Tobias Preuss
2020-03-20Fixed white on white textByteHamster
2019-10-04Automatic AndroidX migrationByteHamster
2018-10-21Remove redundant type castsegsavage
2018-01-21Add missing spacesMartin Fietz
2018-01-13RefactorMartin Fietz
2018-01-10Remove superfluous loggingMartin Fietz
2016-03-22code cleaning:Domingos Lopes
- lambda expressions, method references, - multi catches, - remove unnecessary keywords (public keyword on interface method signatures, static on interfaces or enums, final on private method signatures), - == false expressions, - diamond type (<>) expressions, - replace StringBuffer with StringBuilder for local variables used by a single thread, - replace Arrays.asList with Collections.singletonList whenever applicable, - inline variable returns (whenever the variable name's meaning is not important to understand the code), - replace some chains of if/else if/... with switch/case, - break append(a + b) into append(a).append(b) for StringBuilder objects, - unused import statements, - reduce log TAGs to 23 characters, - MaterialDialog callback deprecated, - ActionBarActivity for AppCompatActivity,
2014-09-19Moved non-gui classes to 'core' packagedaniel oeh
2014-09-17Changed project structuredaniel oeh
Switched from custom layout to standard gradle project structure