apply plugin: 'com.android.application' android { compileSdkVersion 31 //buildToolsVersion "31.0.0" defaultConfig { applicationId "jp.sourceforge.gokigen.memoma" minSdkVersion 14 targetSdkVersion 31 versionCode 16 versionName "1.3.1" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } 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' }