Guest User

Untitled

a guest
Oct 20th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 24
  5. buildToolsVersion "24.0.0"
  6. defaultConfig {
  7. applicationId "com.ann.myhouse"
  8. minSdkVersion 14
  9. targetSdkVersion 24
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. }
  21.  
  22. dependencies {
  23. compile fileTree(dir: 'libs', include: ['*.jar'])
  24. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  25. exclude group: 'com.android.support', module: 'support-annotations'
  26. })
  27. // compile 'com.android.support:appcompat-v7:24.2.1'
  28. testCompile 'junit:junit:4.12'
  29.  
  30.  
  31. compile 'com.android.support:recyclerview-v7:25.0.0'
  32. compile 'com.android.support:cardview-v7:25.0.0'
  33. compile 'com.android.support:design:25.0.0'
  34. compile 'com.jakewharton:butterknife:8.4.0'
  35. apt 'com.jakewharton:butterknife-compiler:8.4.0'
  36. compile 'com.thoughtbot:expandablerecyclerview:1.0'
  37. compile 'com.github.bumptech.glide:glide:3.7.0'
  38. compile 'de.hdodenhof:circleimageview:2.0.0'
  39. }
  40.  
  41. buildToolsVersion
  42. compileSdkVersion
  43. targetSdkVersion
Add Comment
Please, Sign In to add comment