| 1234567891011121314151617181920212223242526 |
- apply plugin: 'com.android.application'
- android {
- compileSdkVersion 23
- buildToolsVersion "23.0.3"
- defaultConfig {
- applicationId "com.ivalentin.margolariak"
- minSdkVersion 12
- targetSdkVersion 23
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
- }
- }
- }
- dependencies {
- // compile 'com.android.support:support-v4:23.4.0'
- // compile 'com.android.support:appcompat-v7:23.4.0'
- //noinspection GradleDynamicVersion
- compile 'com.google.android.gms:play-services:+'
- }
|