From 9ce2b83bb325a32b6dbf500d491c740bd257f006 Mon Sep 17 00:00:00 2001 From: renwj Date: Wed, 10 May 2023 11:10:08 +0800 Subject: [PATCH] =?UTF-8?q?[Build]=20=E4=BF=AE=E6=AD=A3=E6=9F=90=E4=BA=9B?= =?UTF-8?q?=E5=BA=93=E8=AE=BE=E7=BD=AE=E7=9A=84compileSdkVersion=E8=BF=87?= =?UTF-8?q?=E9=AB=98=EF=BC=8C=E5=AF=BC=E8=87=B4=E9=9C=80=E8=A6=81=E6=9B=B4?= =?UTF-8?q?=E9=AB=98=E7=9A=84JDK=E7=89=88=E6=9C=AC=E6=89=8D=E8=83=BD?= =?UTF-8?q?=E6=9E=84=E5=BB=BA=E6=88=90=E5=8A=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- OCH/mogo-och-common-module/build.gradle | 5 +---- OCH/mogo-och-data/build.gradle | 7 ++----- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/OCH/mogo-och-common-module/build.gradle b/OCH/mogo-och-common-module/build.gradle index 458241bc09..84eb21a653 100644 --- a/OCH/mogo-och-common-module/build.gradle +++ b/OCH/mogo-och-common-module/build.gradle @@ -5,11 +5,8 @@ apply plugin: 'kotlin-kapt' android { compileSdkVersion rootProject.ext.android.compileSdkVersion - buildToolsVersion "30.0.2" - defaultConfig { - minSdkVersion 23 - targetSdkVersion 31 + minSdkVersion rootProject.ext.android.minSdkVersion versionCode 1 versionName "1.0" diff --git a/OCH/mogo-och-data/build.gradle b/OCH/mogo-och-data/build.gradle index 6947c919ef..ae9cbd0b40 100644 --- a/OCH/mogo-och-data/build.gradle +++ b/OCH/mogo-och-data/build.gradle @@ -4,12 +4,9 @@ plugins { } android { - compileSdkVersion 31 - + compileSdkVersion rootProject.ext.android.compileSdkVersion defaultConfig { - minSdkVersion 23 - targetSdkVersion 31 - + minSdkVersion rootProject.ext.android.minSdkVersion testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles "consumer-rules.pro" }