Advertisement
Ryggs

gRADLE

Sep 4th, 2019
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 28
  5. buildToolsVersion '28.0.3'
  6. defaultConfig {
  7. applicationId "com.simcoder.uber"
  8. minSdkVersion 18
  9. targetSdkVersion 28
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13. multiDexEnabled true
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. }
  22.  
  23. dependencies {
  24. implementation fileTree(dir: 'libs', include: ['*.jar'])
  25. androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
  26. exclude group: 'com.android.support', module: 'support-annotations'
  27. })
  28.  
  29.  
  30. implementation 'com.android.support:appcompat-v7:28.0.0'
  31. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  32. implementation 'com.google.firebase:firebase-core:11.6.0'
  33. implementation 'com.google.firebase:firebase-database:11.6.0'
  34. implementation 'com.google.firebase:firebase-auth:11.6.0'
  35. implementation 'com.google.firebase:firebase-storage:11.6.0'
  36. implementation 'com.firebase:geofire-android:2.1.1'
  37. implementation 'com.google.android.gms:play-services:11.6.0'
  38. implementation 'com.github.bumptech.glide:glide:4.0.0'
  39. implementation 'com.android.support:design:28.0.0'
  40. implementation 'com.android.support:cardview-v7:28.0.0'
  41. implementation 'com.github.jd-alexander:library:1.1.0'
  42.  
  43. implementation 'com.paypal.sdk:paypal-android-sdk:2.15.3'
  44. testImplementation 'junit:junit:4.12'
  45. }
  46. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement