pocket-casts-android
pocket-casts-android copied to clipboard
Automotive: The version upgrades work off the app version number so this won't work.
The VersionMigrationsJob logic works off the app version number, but Automotive requires a bigger version number than the app so it is set to a large number. For example it is the current production:
App version: 7.19.2 Google Play version: 7566 Automotive version: 57566 Buildkite build: 7366
Here is an example of the code:
if (previousVersionCode < 377) {
deletePodcastImages()
}
if (previousVersionCode < 422) {
addUpNextAutoDownload()
}