OSDN Git Service

ストレージを外部ストレージではなくて内部ストレージに変更する。
[gokigen/MeMoMa.git] / app / build.gradle
1 apply plugin: 'com.android.application'
2 apply plugin: 'kotlin-android'
3
4 android {
5     compileSdkVersion 33
6
7     defaultConfig {
8         applicationId "jp.sourceforge.gokigen.memoma"
9         minSdkVersion 14
10         targetSdkVersion 33
11         versionCode 16
12         versionName "1.3.1"
13         multiDexEnabled true
14     }
15     buildTypes {
16         release {
17             minifyEnabled false
18             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
19         }
20     }
21     compileOptions {
22         sourceCompatibility JavaVersion.VERSION_17
23         targetCompatibility JavaVersion.VERSION_17
24     }
25     namespace 'jp.sourceforge.gokigen.memoma'
26 }
27
28 dependencies {
29     api fileTree(dir: 'libs', include: ['*.jar'])
30     implementation "androidx.core:core-ktx:1.10.0"
31     implementation 'androidx.appcompat:appcompat:1.6.1'
32     implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
33     implementation 'androidx.preference:preference:1.2.0'
34 }