build.gradle 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 25
  4. buildToolsVersion "25.0.2"
  5. defaultConfig {
  6. applicationId "org.notabug.lifeuser.moviedb"
  7. minSdkVersion 15
  8. targetSdkVersion 25
  9. versionCode 190
  10. versionName "1.9.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. dependencies {
  21. compile fileTree(dir: 'libs', include: ['*.jar'])
  22. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  23. exclude group: 'com.android.support', module: 'support-annotations'
  24. })
  25. compile 'com.android.support:appcompat-v7:25.1.0'
  26. compile 'com.android.support:design:25.1.0'
  27. compile 'com.squareup.picasso:picasso:2.5.2'
  28. compile 'com.android.support:cardview-v7:24.0.0-beta1'
  29. compile 'com.android.support:recyclerview-v7:24.0.0-beta1'
  30. compile 'com.android.support:percent:23.3.0'
  31. compile 'de.hdodenhof:circleimageview:2.0.0'
  32. compile 'com.android.support:support-v4:25.3.1'
  33. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  34. compile 'org.apmem.tools:layouts:1.10@aar'
  35. testCompile 'junit:junit:4.12'
  36. }