pocket-casts-android icon indicating copy to clipboard operation
pocket-casts-android copied to clipboard

Automotive: The version upgrades work off the app version number so this won't work.

Open geekygecko opened this issue 2 years ago • 0 comments

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()
        }

geekygecko avatar Jul 14 '22 05:07 geekygecko