chore: upgrade androidx versions

Resolves #9966
This commit is contained in:
Yair Morgenstern
2023-09-06 12:00:30 +03:00
parent 538330db87
commit 057b2e1d5b
2 changed files with 3 additions and 5 deletions

View File

@ -6,6 +6,7 @@
<uses-sdk/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<!-- See https://developer.android.com/training/tv/start/start -->
<uses-feature android:name="android.software.leanback" android:required="false" />
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />

View File

@ -135,11 +135,8 @@ tasks.register<JavaExec>("run") {
}
dependencies {
// Updating to latest version would require upgrading sourceCompatibility and targetCompatibility to 1_8, and targetSdk to 31 -
// run `./gradlew build --scan` to see details
// Known Android Lint warning: "GradleDependency"
implementation("androidx.core:core-ktx:1.7.0")
implementation("androidx.work:work-runtime-ktx:2.7.1")
implementation("androidx.core:core-ktx:1.10.1")
implementation("androidx.work:work-runtime-ktx:2.8.1")
// Needed to convert e.g. Android 26 API calls to Android 21
// If you remove this run `./gradlew :android:lintDebug` to ensure everything's okay.
// If you want to upgrade this, check it's working by building an apk,