OSDN Git Service

まずSDKレベルを更新。
authorMRSa <mrsa@myad.jp>
Fri, 28 Apr 2023 14:53:18 +0000 (23:53 +0900)
committerMRSa <mrsa@myad.jp>
Fri, 28 Apr 2023 14:53:18 +0000 (23:53 +0900)
app/build.gradle
app/src/main/AndroidManifest.xml
build.gradle
gradle.properties

index 9b34774..a0dd05d 100644 (file)
@@ -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'
 }
index 833e367..7f77306 100644 (file)
@@ -1,6 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
-    package="jp.sourceforge.gokigen.memoma">
+<manifest xmlns:android="http://schemas.android.com/apk/res/android">
 
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
 
index 1e707a8..2081818 100644 (file)
@@ -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'
     }
 }
 
index 576580f..905c3a6 100644 (file)
@@ -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