From f1bba1b1a3dce9c2d129561833e5c1da0c6af27e Mon Sep 17 00:00:00 2001 From: Seungbin Oh Date: Wed, 14 Aug 2024 20:40:03 +0900 Subject: [PATCH] chore: apply rootProject.ext.compileSdkVersion --- android/app/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index a51ee9b9..42cf5e62 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -31,7 +31,7 @@ if (keystorePropertiesFile.exists()) { android { namespace 'org.sparcs.otlplus' - compileSdk 34 + compileSdk rootProject.ext.compileSdkVersion sourceSets { main.java.srcDirs += 'src/main/kotlin' @@ -83,6 +83,6 @@ flutter { dependencies { testImplementation 'junit:junit:4.13.2' - androidTestImplementation 'androidx.test:runner:1.5.2' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' + androidTestImplementation 'androidx.test:runner:1.6.1' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1' }