diff options
author | Arne Schwabe <arne@rfc2549.org> | 2024-08-09 14:52:23 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2024-08-09 17:09:53 +0200 |
commit | f64ce22ef5d34c7e593b74ebb9197fabd5f616a4 (patch) | |
tree | 6dc41581ef34369bb6d3065cad3e150cbca8bf99 | |
parent | f3f6860bcea288d9ddc84f54aaa8e56a7c21168d (diff) |
Update libraries and move build config flag to non-deprecated place
-rw-r--r-- | gradle.properties | 1 | ||||
-rw-r--r-- | gradle/libs.versions.toml | 4 | ||||
-rw-r--r-- | main/build.gradle.kts | 1 |
3 files changed, 3 insertions, 3 deletions
diff --git a/gradle.properties b/gradle.properties index 0e3e6a55..b41950d3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,6 +4,5 @@ # android.useAndroidX=true -android.defaults.buildfeatures.buildconfig=true android.nonTransitiveRClass=false android.nonFinalResIds=false diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index eafb4d84..b20f2cb1 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,7 +1,7 @@ [versions] -android-gradle-plugin = "8.5.1" +android-gradle-plugin = "8.5.2" androidx-activity = "1.9.1" -androidx-annotation = "1.8.1" +androidx-annotation = "1.8.2" androidx-appcompat = "1.7.0" android-view-material = "1.12.0" androidx-core-ktx = "1.13.1" diff --git a/main/build.gradle.kts b/main/build.gradle.kts index b1c13e9d..d2e00578 100644 --- a/main/build.gradle.kts +++ b/main/build.gradle.kts @@ -14,6 +14,7 @@ plugins { android { buildFeatures { aidl = true + buildConfig = true } namespace = "de.blinkt.openvpn" compileSdk = 35 |