OSDN Git Service

アイコン等変更。これでリリースにもっていくつもり。
[gokigen/mangle.git] / app / build.gradle
1 apply plugin: 'com.android.application'
2 apply plugin: 'kotlin-android'
3 apply plugin: 'kotlin-android-extensions'
4
5 android {
6     compileSdkVersion 30
7
8     defaultConfig {
9         applicationId "jp.osdn.gokigen.mangle"
10         minSdkVersion 21
11         targetSdkVersion 30
12         versionCode 1000000
13         versionName "1.0.0"
14         //testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
15     }
16
17     buildTypes {
18         release {
19             minifyEnabled false
20             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
21         }
22     }
23     //buildFeatures {
24     //    viewBinding true
25     //}
26
27     compileOptions {
28         sourceCompatibility JavaVersion.VERSION_1_8
29         targetCompatibility JavaVersion.VERSION_1_8
30     }
31 }
32
33 dependencies {
34     implementation fileTree(dir: "libs", include: ["*.jar"])
35     implementation "androidx.core:core-ktx:1.6.0"
36     implementation 'androidx.appcompat:appcompat:1.3.0'
37     implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
38     implementation 'androidx.preference:preference-ktx:1.1.1'
39     implementation 'com.google.android.material:material:1.4.0'
40
41     def camerax_version = "1.1.0-alpha06"
42     implementation "androidx.camera:camera-core:$camerax_version"
43     implementation "androidx.camera:camera-camera2:$camerax_version"
44     implementation "androidx.camera:camera-lifecycle:$camerax_version"
45
46     def camerax_view_version = "1.0.0-alpha26"
47     implementation "androidx.camera:camera-extensions:$camerax_view_version"
48     implementation "androidx.camera:camera-view:$camerax_view_version"
49
50     implementation "androidx.datastore:datastore-preferences:1.0.0-rc01"
51 }