OSDN Git Service

SDKを31に更新。
[gokigen/MeMoMa.git] / app / build.gradle
1 apply plugin: 'com.android.application'
2
3 android {
4     compileSdkVersion 31
5     //buildToolsVersion "31.0.0"
6
7     defaultConfig {
8         applicationId "jp.sourceforge.gokigen.memoma"
9         minSdkVersion 14
10         targetSdkVersion 31
11         versionCode 16
12         versionName "1.3.1"
13     }
14
15     buildTypes {
16         release {
17             minifyEnabled false
18             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
19         }
20     }
21
22     compileOptions {
23         sourceCompatibility JavaVersion.VERSION_1_8
24         targetCompatibility JavaVersion.VERSION_1_8
25     }
26
27 }
28
29 dependencies {
30     api fileTree(dir: 'libs', include: ['*.jar'])
31     implementation 'androidx.appcompat:appcompat:1.3.1'
32     implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
33     implementation 'androidx.preference:preference:1.1.1'
34 }