build.gradle 585 B

12345678910111213141516171819202122232425
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 23
  4. buildToolsVersion "23.0.3"
  5. defaultConfig {
  6. applicationId "com.ivalentin.gm"
  7. minSdkVersion 9
  8. targetSdkVersion 22
  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:22.2.1'
  19. compile 'com.android.support:appcompat-v7:22.2.1'
  20. compile 'com.google.android.gms:play-services:+'
  21. }