summaryrefslogtreecommitdiff
path: root/Source/Android
diff options
context:
space:
mode:
authorTacoTheDank <SkytkRSfan3895@gmail.com>2024-05-25 22:13:25 -0400
committerTacoTheDank <SkytkRSfan3895@gmail.com>2024-05-25 22:13:25 -0400
commit51f4dfabc21ba2f6070f9012acf34e3f42a76f84 (patch)
tree3f166524face8dd3a3fbf9bfc52253105e383fec /Source/Android
parent8167a046ef763d25e6bce91ef07abb99659dc39f (diff)
Android: Fix Gradle deprecation
Diffstat (limited to 'Source/Android')
-rw-r--r--Source/Android/app/build.gradle.kts5
-rw-r--r--Source/Android/gradle.properties1
2 files changed, 2 insertions, 4 deletions
diff --git a/Source/Android/app/build.gradle.kts b/Source/Android/app/build.gradle.kts
index 7322b4b5b5..a191d9daa7 100644
--- a/Source/Android/app/build.gradle.kts
+++ b/Source/Android/app/build.gradle.kts
@@ -12,6 +12,7 @@ android {
buildFeatures {
viewBinding = true
+ buildConfig = true
}
compileOptions {
@@ -116,12 +117,11 @@ android {
}
dependencies {
- "baselineProfile"(project(":benchmark"))
+ baselineProfile(project(":benchmark"))
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.0.4")
implementation("androidx.core:core-ktx:1.13.0")
implementation("androidx.appcompat:appcompat:1.6.1")
- implementation("androidx.exifinterface:exifinterface:1.3.7")
implementation("androidx.cardview:cardview:1.0.0")
implementation("androidx.recyclerview:recyclerview:1.3.2")
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
@@ -135,7 +135,6 @@ dependencies {
// Kotlin extensions for lifecycle components
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0")
- implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.7.0")
// Android TV UI libraries.
implementation("androidx.leanback:leanback:1.0.0")
diff --git a/Source/Android/gradle.properties b/Source/Android/gradle.properties
index ac3bc4bbd0..0f8bfbb671 100644
--- a/Source/Android/gradle.properties
+++ b/Source/Android/gradle.properties
@@ -14,6 +14,5 @@ android.enableJetifier=true
android.useAndroidX=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
-android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false