1234567891011121314151617181920212223242526272829 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 24
- buildToolsVersion "24.0.1"
- defaultConfig {
- applicationId "com.eyeofmidas.blush"
- minSdkVersion 15
- targetSdkVersion 24
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- wearApp project(':wear')
- testCompile 'junit:junit:4.12'
- compile 'com.android.support:appcompat-v7:24.2.0'
- compile 'com.android.support:recyclerview-v7:24.2.+'
- compile 'com.google.android.gms:play-services:9.4.0'
- }
|