summaryrefslogtreecommitdiff
path: root/app/src/androidTest
AgeCommit message (Collapse)Author
2022-05-15Merge pull request #5887 from TacoTheDank/assetFixesByteHamster
Remove unused assets, update licenses
2022-05-15Move test mp3s to androidTest directoryTacoTheDank
2022-05-13Remove gpodder toplistByteHamster
Half of the toplist no longer returns a valid podcast feed. Some of the suggested tags are just random characters and none of them is actually helpful. This does not remove search or synchronization. Just gpodder discovery.
2022-05-07Convert share dialog to bottom sheetByteHamster
2022-05-06Move download logs to a button on the downloads page instead of a tab (#5866)ByteHamster
2022-04-26Decouple preferencesByteHamster
2022-04-22Restore episode sharing that only includes a media URL (#5835)ByteHamster
2022-02-27Move database to its own moduleByteHamster
2022-02-22Delete a few unused thingsByteHamster
2022-02-19Remove startWhenPrepared and prepareImmediatelyByteHamster
They are always `true` anyway.
2022-02-18Decide whether or not to stream on demandByteHamster
Fixes a bug where local folders sometimes did not start because AntennaPod thought it needed to play locally. Also avoids situations in which it streams even though a local file is available. Simplifies the PlaybackService slightly.
2022-01-22Make emulator tests a bit more stableByteHamster
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.
2022-01-06Remove queue loading logic from PlaybackServiceTaskManagerByteHamster
This just causes problems with keeping the preloaded list up-to-date. We only call the method from background threads anyway.
2021-12-10Update AndroidX Media and ExoPlayer (#5371)Taco
2021-11-28Chromecast rework (#5518)ByteHamster
2021-11-04Merge pull request #5516 from ByteHamster/auto-download-backoffByteHamster
Fix auto-download retry backoff
2021-11-02Fix auto-download retry backoffByteHamster
The new value never got stored in the database. Also, it only got increased by certain types of errors - all other errors could be retried indefinitely. Also added a unit test.
2021-11-02Move (most) events to their own moduleByteHamster
2021-10-28Convert sleep timer update to eventByteHamster
2021-10-24Convert speed update to eventByteHamster
2021-10-24Convert buffering update to eventByteHamster
2021-10-24Merge pull request #5485 from ByteHamster/media-player-errorsByteHamster
Show actual error messages instead of just the error codes
2021-10-24Show actual error messages instead of just the error codesByteHamster
2021-10-16Merge pull request #5469 from ByteHamster/compact-notification-button-defaultByteHamster
Use ff/rew as default notification buttons
2021-10-14Use ff/rew as default notification buttonsByteHamster
2021-10-13Fewer default speed valuesByteHamster
2021-10-12Move speed dialog to the bottom (#5464)ByteHamster
2021-08-28Merge pull request #5360 from ByteHamster/parserByteHamster
Moved feed parser to its own module
2021-08-28Moved feed parser to its own moduleByteHamster
2021-08-27Removed gpodder suggestions featureByteHamster
The feature was invisible since 2014 and nobody noticed.
2021-08-22Move queue lock feature to the overflow menuByteHamster
2021-07-24Merge pull request #5200 from TacoTheDank/plugin-updatesByteHamster
Update plugins and Gradle
2021-07-24Show speed dialog on single clickByteHamster
2021-07-22Fix IgnoreWithoutReason code lint errorsTacoTheDank
2021-05-14Switched video player to ViewBindingByteHamster
2021-05-14Just assume we can always set the playback speedByteHamster
Our default ExoPlayer can always set the speed. All Android versions >23 also support it. So of the 2% of users with old devices, this only affects the ones who manually selected another player.
2021-04-24Moved synchronization to its own moduleByteHamster
2021-04-23New feed update interval or time dialogpeakvalleytech
Co-authored-by: Fivel Rangel <fivel10@hotmail.com> Co-authored-by: ByteHamster <info@bytehamster.com>
2021-04-22Moved model to its own moduleByteHamster
2021-04-06Parsing podcast:funding tag, showing payment, funding links on the show info ↵Tony Tam
screen (#4933)
2021-03-05Test fixesByteHamster
2021-03-05Fixed testByteHamster
2021-02-15Removed return parameter of loadMediaInfoByteHamster
We return true anyways. The call for actually loading is asynchronous, so returning anything here does not make sense. Reduces likelihood of loader being interrupted to just load the same item again when the state changes.
2021-02-12Remove PlaybackServiceCallbacksByteHamster
2021-02-07Refactoring: Remove ClientConfig.automaticDownloadAlgorithm (#4924)Herbert Reiter
2021-02-05Added new cleanup option: when not favoritedJonas Kalderstam
This is another way of solving #2077. The root issue is that queued episodes are never auto-deleted currently which means that if you automatically add episodes to the queue you will eventually end up with AntennaPod refusing to auto download more episodes because the cache is full and it can't make space. This option will only refuse to delete favorited items. Otherwise it will simply delete the oldest episodes.
2021-02-03Reduce coupling between widget and playback serviceByteHamster
Instead of binding to the service, pass the required data. This also ensures that the widget is updated instantly when calling from PlaybackService. JobService had the problem that the OS sometimes took some seconds before actually executing the job.
2021-01-24Merge pull request #4893 from damoasda/robolectric-feed-parser2ByteHamster
Run AtomParserTest and RssParserTest with Robolectric
2021-01-23Run DbReaderTest etc. with RobolectricHerbert Reiter