Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'realm-android'
  3.  
  4. android {
  5. compileSdkVersion 28
  6. defaultConfig {
  7. applicationId "app.koran"
  8. minSdkVersion 14
  9. targetSdkVersion 28
  10. versionCode 10
  11. versionName "3.5"
  12. multiDexEnabled true
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. }
  21.  
  22. /* IMPORTANT :
  23. * Be careful when update dependencies, different version library may caused error */
  24. dependencies {
  25. implementation fileTree(include: ['*.jar'], dir: 'libs')
  26. testImplementation 'junit:junit:4.12'
  27. // google library
  28. implementation 'com.android.support:appcompat-v7:28.0.0'
  29. implementation 'com.android.support:cardview-v7:28.0.0'
  30. implementation 'com.android.support:recyclerview-v7:28.0.0'
  31. implementation 'com.android.support:design:28.0.0'
  32. implementation 'com.android.support:support-v4:28.0.0'
  33. implementation 'com.google.firebase:firebase-core:16.0.8'
  34. implementation 'com.google.firebase:firebase-messaging:17.6.0'
  35. implementation 'com.google.firebase:firebase-ads:17.2.0'
  36. implementation 'com.google.android.gms:play-services-analytics:16.0.8'
  37. implementation 'com.google.android.ads.consent:consent-library:1.0.7'
  38. // library for api
  39. implementation('com.squareup.retrofit2:retrofit:2.1.0') {
  40. exclude module: 'okhttp'
  41. }
  42. implementation 'com.squareup.okhttp3:okhttp:3.10.0'
  43. implementation 'com.squareup.okhttp3:logging-interceptor:3.6.0'
  44. implementation 'com.squareup.retrofit2:converter-gson:2.2.0'
  45. implementation 'com.squareup.picasso:picasso:2.5.2'
  46. // ripple effect library
  47. implementation 'com.balysv:material-ripple:1.0.2'
  48. }
  49.  
  50. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement