OSDN Git Service

33c3ff4efcabd3ef61cce29ac79e53acde6c4856
[gokigen/A01c.git] / app / build.gradle
1 apply plugin: 'com.android.application'
2
3 android {
4     compileSdkVersion 30
5     //buildToolsVersion "30.0.3"
6     defaultConfig {
7         applicationId "jp.sfjp.gokigen.a01c"
8         minSdkVersion 23
9         targetSdkVersion 30
10         versionCode 37
11         versionName "1.3.3"
12     }
13     buildTypes {
14         release {
15             minifyEnabled false
16             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
17         }
18     }
19 /*
20     productFlavors {
21         wear1 {
22             // Use the defaultConfig value
23             minSdkVersion 19
24         }
25         wear2 {
26             minSdkVersion 23
27         }
28     }
29 */
30 }
31
32 dependencies {
33     api fileTree(dir: 'libs', include: ['*.jar'])
34     wearApp project(path: ':wear')
35
36     compileOnly 'com.google.android.wearable:wearable:2.8.1'
37
38     implementation 'com.google.android.support:wearable:2.8.1'
39     implementation 'com.google.android.gms:play-services-wearable:17.0.0'
40     implementation 'com.android.support:wear:30.0.0'
41
42     implementation 'androidx.wear:wear:1.1.0'
43     implementation 'androidx.preference:preference-ktx:1.1.1'
44     implementation 'androidx.appcompat:appcompat:1.2.0'
45     implementation 'androidx.exifinterface:exifinterface:1.3.2'
46     implementation 'com.google.android.material:material:1.2.1'
47     implementation "androidx.core:core-ktx:1.3.2"
48     implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
49
50 }