Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. apply plugin: 'kotlin-android'
  4.  
  5. apply plugin: 'kotlin-android-extensions'
  6.  
  7. android {
  8. compileSdkVersion 28
  9. defaultConfig {
  10. applicationId "com.pratham.sitapuriya"
  11. minSdkVersion 16
  12. targetSdkVersion 28
  13. versionCode 1
  14. versionName "1.0"
  15. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  16. }
  17. buildTypes {
  18. release {
  19. minifyEnabled false
  20. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  21. }
  22. }
  23. }
  24.  
  25. dependencies {
  26. implementation fileTree(dir: 'libs', include: ['*.jar'])
  27. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  28. implementation 'androidx.appcompat:appcompat:1.1.0-beta01'
  29. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  30. implementation 'com.google.android.material:material:1.1.0-alpha07'
  31. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  32. testImplementation 'junit:junit:4.12'
  33. androidTestImplementation 'androidx.test:runner:1.3.0-alpha01'
  34. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-alpha01'
  35. implementation 'com.android.volley:volley:1.1.1'
  36. implementation 'com.google.android.material:material:1.1.0-alpha07'
  37. repositories {
  38. mavenCentral()
  39. google()
  40. }
  41.  
  42. dependencies {
  43. implementation 'com.github.bumptech.glide:glide:4.9.0'
  44. annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
  45. }
  46.  
  47. implementation 'androidx.cardview:cardview:1.0.0'
  48. implementation 'com.squareup.retrofit2:retrofit:2.3.0'
  49. implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
  50. dependencies {
  51. implementation 'com.facebook.shimmer:shimmer:0.1.0@aar'
  52. }
  53. implementation 'com.github.marlonlom:timeago:4.0.1'
  54.  
  55. }
  56.  
  57. <androidx.coordinatorlayout.widget.CoordinatorLayout >
  58. // Other Childs
  59. </<androidx.coordinatorlayout.widget.CoordinatorLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement