From f7f9db576f0eda8969330ad3750cdd072d8cbb67 Mon Sep 17 00:00:00 2001 From: MRSa Date: Fri, 28 Apr 2023 23:53:18 +0900 Subject: [PATCH] =?utf8?q?=E3=81=BE=E3=81=9ASDK=E3=83=AC=E3=83=99=E3=83=AB?= =?utf8?q?=E3=82=92=E6=9B=B4=E6=96=B0=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- app/build.gradle | 18 +++++++++--------- app/src/main/AndroidManifest.xml | 3 +-- build.gradle | 2 +- gradle.properties | 5 ++++- 4 files changed, 15 insertions(+), 13 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 9b34774..a0dd05d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,15 +1,15 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 31 - //buildToolsVersion "31.0.0" + compileSdkVersion 33 defaultConfig { applicationId "jp.sourceforge.gokigen.memoma" minSdkVersion 14 - targetSdkVersion 31 + targetSdkVersion 33 versionCode 16 versionName "1.3.1" + multiDexEnabled true } buildTypes { @@ -20,15 +20,15 @@ android { } compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 + sourceCompatibility JavaVersion.VERSION_17 + targetCompatibility JavaVersion.VERSION_17 } - + namespace 'jp.sourceforge.gokigen.memoma' } dependencies { api fileTree(dir: 'libs', include: ['*.jar']) - implementation 'androidx.appcompat:appcompat:1.3.1' - implementation 'androidx.constraintlayout:constraintlayout:2.1.1' - implementation 'androidx.preference:preference:1.1.1' + implementation 'androidx.appcompat:appcompat:1.6.1' + implementation 'androidx.constraintlayout:constraintlayout:2.1.4' + implementation 'androidx.preference:preference:1.2.0' } diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 833e367..7f77306 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,6 +1,5 @@ - + diff --git a/build.gradle b/build.gradle index 1e707a8..2081818 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:7.0.3' + classpath 'com.android.tools.build:gradle:8.0.0' } } diff --git a/gradle.properties b/gradle.properties index 576580f..905c3a6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -18,4 +18,7 @@ android.useAndroidX=true # Automatically convert third-party libraries to use AndroidX android.enableJetifier=true # Kotlin code style for this project: "official" or "obsolete": -kotlin.code.style=official \ No newline at end of file +kotlin.code.style=official +android.defaults.buildfeatures.buildconfig=true +android.nonTransitiveRClass=false +android.nonFinalResIds=false \ No newline at end of file -- 2.11.0