Android update target SDK to 35, update androidx versions

This commit is contained in:
advplyr 2025-04-15 17:21:48 -05:00
parent 46d5e1d96c
commit 93748a917f
2 changed files with 8 additions and 8 deletions

View file

@ -51,7 +51,7 @@
<activity
android:name=".MainActivity"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode|navigation"
android:exported="true"
android:label="@string/title_activity_main"
android:launchMode="singleTask"

View file

@ -1,15 +1,15 @@
ext {
minSdkVersion = 24
compileSdkVersion = 35
targetSdkVersion = 34
androidxActivityVersion = '1.8.0'
targetSdkVersion = 35
androidxActivityVersion = '1.9.2'
androidxAppCompatVersion = '1.7.0'
androidxCoordinatorLayoutVersion = '1.3.0'
androidxCoreVersion = '1.12.0'
androidxFragmentVersion = '1.6.2'
androidxCoreVersion = '1.15.0'
androidxFragmentVersion = '1.8.4'
junitVersion = '4.13.2'
androidxJunitVersion = '1.1.5'
androidxEspressoCoreVersion = '3.5.1'
androidxJunitVersion = '1.2.1'
androidxEspressoCoreVersion = '3.6.1'
cordovaAndroidVersion = '10.1.1'
androidx_core_ktx_version = '1.16.0'
androidx_media_version = '1.7.0'
@ -20,5 +20,5 @@ ext {
kotlin_coroutines_version = '1.10.1'
test_runner_version = '1.1.0'
coreSplashScreenVersion = '1.0.1'
androidxWebkitVersion = '1.9.0'
androidxWebkitVersion = '1.12.1'
}