build.gradle 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 25
  4. buildToolsVersion "26.0.0"
  5. defaultConfig {
  6. applicationId "com.kdanmobile.dragwebobject"
  7. minSdkVersion 17
  8. targetSdkVersion 25
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. repositories {
  21. mavenCentral()
  22. maven { url 'https://maven.google.com' }
  23. }
  24. dependencies {
  25. compile fileTree(dir: 'libs', include: ['*.jar'])
  26. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  27. exclude group: 'com.android.support', module: 'support-annotations'
  28. })
  29. compile 'com.android.support:appcompat-v7:25.3.1'
  30. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  31. compile 'com.android.support:support-v4:25.3.1'
  32. compile 'com.jakewharton:butterknife:7.0.1'
  33. compile 'com.github.bumptech.glide:glide:4.2.0'
  34. annotationProcessor 'com.github.bumptech.glide:compiler:4.2.0'
  35. testCompile 'junit:junit:4.12'
  36. }