build.gradle 757 B

12345678910111213141516171819202122232425262728
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 26
  4. buildToolsVersion "26.0.0"
  5. defaultConfig {
  6. applicationId "me.yoqi.app.notescanner.notescanner"
  7. minSdkVersion 15
  8. targetSdkVersion 26
  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. testCompile 'junit:junit:4.12'
  22. compile 'com.android.support:appcompat-v7:26.0.0-alpha1'
  23. compile 'com.android.support:design:26.0.0-alpha1'
  24. compile 'com.android.support:support-v4:26.0.0-alpha1'
  25. }