OSDN Git Service

play serviceを更新。
[gokigen/A01c.git] / app / build.gradle
1 apply plugin: 'com.android.application'
2
3 android {
4     compileSdkVersion 25
5     buildToolsVersion "26.0.0"
6     defaultConfig {
7         applicationId "jp.sfjp.gokigen.a01c"
8         minSdkVersion 14
9         targetSdkVersion 25
10         versionCode 19
11         versionName "1.2.1"
12     }
13     buildTypes {
14         release {
15             minifyEnabled false
16             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
17         }
18     }
19     productFlavors {
20         wear1 {
21             // Use the defaultConfig value
22             minSdkVersion 14
23         }
24         wear2 {
25             minSdkVersion 23
26         }
27     }
28 }
29
30 dependencies {
31     compile fileTree(dir: 'libs', include: ['*.jar'])
32     wearApp project(path: ':wear')
33     provided 'com.google.android.wearable:wearable:2.0.3'
34     compile 'com.google.android.support:wearable:2.0.3'
35     compile 'com.google.android.gms:play-services-wearable:11.0.2'
36
37     compile 'com.android.support:animated-vector-drawable:25.3.1'
38     compile 'com.android.support:percent:25.3.1'
39     compile 'com.android.support:support-vector-drawable:25.3.1'
40     compile 'com.android.support:appcompat-v7:25.3.1'
41     compile 'com.android.support:preference-v7:25.3.1'
42     compile 'com.android.support:exifinterface:25.3.1'
43     compile 'com.android.support:support-v4:25.3.1'
44 }