From: MRSa Date: Fri, 28 Apr 2023 14:53:18 +0000 (+0900) Subject: まずSDKレベルを更新。 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=f7f9db576f0eda8969330ad3750cdd072d8cbb67;p=gokigen%2FMeMoMa.git まずSDKレベルを更新。 --- 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