I have a problem in my app that seems to occur on a certain Android 8.1 device and after googling around a bit I wondered if it is due to the androidxCoreVersion value in my app being out of date. When I first migrated this app from Ionic 3 to Ionic 5 I expect I followed the instructions here. In there you are told to create an android/variables.gradle file with the following in:
ext {
minSdkVersion = 21
compileSdkVersion = 29
targetSdkVersion = 29
androidxAppCompatVersion = '1.1.0'
androidxCoreVersion = '1.2.0'
androidxMaterialVersion = '1.1.0-rc02'
androidxBrowserVersion = '1.2.0'
androidxLocalbroadcastmanagerVersion = '1.0.0'
firebaseMessagingVersion = '20.1.2'
playServicesLocationVersion = '17.0.0'
junitVersion = '4.12'
androidxJunitVersion = '1.1.1'
androidxEspressoCoreVersion = '3.2.0'
cordovaAndroidVersion = '7.0.0'
}
This is currently what I still have set up in my project. Are these androidx values now out of date? I notice that the latest androidxCoreVersion here is now 1.5.
Should the values in the above file always be kept up to date?