Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 27
  5.  
  6. defaultConfig {
  7. applicationId "uk.org.cetma.llanellistandard"
  8. minSdkVersion 23
  9. targetSdkVersion 26
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner
  13. "android.support.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android.txt'),
  19. 'proguard-rules.pro'
  20. }
  21. }
  22. }
  23.  
  24. repositories {
  25. mavenCentral() // jcenter() works as well because it pulls from Maven
  26. Central
  27. }
  28.  
  29. dependencies {
  30. implementation fileTree(dir: 'libs', include: ['*.jar'])
  31. implementation 'com.github.bumptech.glide:glide:3.7.0'
  32. implementation 'com.android.support:support-v7:27.1.0'
  33. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  34. implementation 'com.squareup.picasso:picasso:2.71828'
  35. testImplementation 'junit:junit:4.12'
  36. //androidTestImplementation 'com.android.support.test:runner:1.0.2'
  37. //androidTestImplementation 'com.android.support.test.espresso:espresso-
  38. core:3.0.2'
  39.  
  40. //Add Library
  41. implementation 'com.android.support.cardview-v7:27.1.1'
  42. implementation 'com.android.support:recyclerview-27.1.0'
  43. implementation 'com.google.code.gson:gson:2.8.2'
  44.  
  45.  
  46. }
  47.  
  48. ""ERROR: Failed to resolve: com.android.support.cardview-v7:27.1.1:
  49. Affected Modules: app""
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement