Advertisement
Guest User

Untitled

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