build.gradle 639 B

1234567891011121314151617181920212223242526
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 23
  4. buildToolsVersion "23.0.3"
  5. defaultConfig {
  6. applicationId "com.ivalentin.margolariak"
  7. minSdkVersion 12
  8. targetSdkVersion 23
  9. }
  10. buildTypes {
  11. release {
  12. minifyEnabled false
  13. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  14. }
  15. }
  16. }
  17. dependencies {
  18. // compile 'com.android.support:support-v4:23.4.0'
  19. // compile 'com.android.support:appcompat-v7:23.4.0'
  20. //noinspection GradleDynamicVersion
  21. compile 'com.google.android.gms:play-services:+'
  22. }