From e4916acf01ff515d504e2298eaf69c8af50426bf Mon Sep 17 00:00:00 2001 From: niuhuan Date: Fri, 6 Sep 2024 18:01:59 +0800 Subject: [PATCH] :bug: fix: ci --- compatible/android/app/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compatible/android/app/build.gradle b/compatible/android/app/build.gradle index 0d26845a..d34aceb8 100644 --- a/compatible/android/app/build.gradle +++ b/compatible/android/app/build.gradle @@ -7,7 +7,7 @@ plugins { android { namespace = "opensource.pikapika" - compileSdk = flutter.compileSdkVersion + compileSdk = 31 // flutter.compileSdkVersion ndkVersion = flutter.ndkVersion compileOptions { @@ -24,8 +24,8 @@ android { applicationId = "opensource.pikapika" // You can update the following values to match your application needs. // For more information, see: https://flutter.dev/to/review-gradle-config. - minSdk = 31 // flutter.minSdkVersion - targetSdk = 31 // flutter.targetSdkVersion + minSdk = flutter.minSdkVersion + targetSdk = flutter.targetSdkVersion versionCode = flutter.versionCode versionName = flutter.versionName }