Guest User

Untitled

a guest
Feb 24th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 27
  5. defaultConfig {
  6. applicationId "codingwithmitch.com.recyclerview"
  7. minSdkVersion 16
  8. targetSdkVersion 27
  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.  
  21. dependencies {
  22. implementation fileTree(dir: 'libs', include: ['*.jar'])
  23. implementation 'com.android.support:appcompat-v7:27.0.2'
  24. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  25. testImplementation 'junit:junit:4.12'
  26. androidTestImplementation 'com.android.support.test:runner:1.0.1'
  27. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
  28.  
  29. //recyclerview
  30. compile 'com.android.support:recyclerview-v7:27.0.2'
  31.  
  32. //glide
  33. implementation 'com.github.bumptech.glide:glide:4.4.0'
  34. annotationProcessor 'com.github.bumptech.glide:compiler:4.4.0'
  35.  
  36. //circle imageview
  37. compile 'de.hdodenhof:circleimageview:2.2.0'
  38. }
Add Comment
Please, Sign In to add comment