build.gradle 764 B

1234567891011121314151617181920212223242526272829
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 24
  4. buildToolsVersion "24.0.1"
  5. defaultConfig {
  6. applicationId "com.eyeofmidas.blush"
  7. minSdkVersion 15
  8. targetSdkVersion 24
  9. versionCode 1
  10. versionName "1.0"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. compile fileTree(dir: 'libs', include: ['*.jar'])
  21. wearApp project(':wear')
  22. testCompile 'junit:junit:4.12'
  23. compile 'com.android.support:appcompat-v7:24.2.0'
  24. compile 'com.android.support:recyclerview-v7:24.2.+'
  25. compile 'com.google.android.gms:play-services:9.4.0'
  26. }