Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. Program Type Already Present : com.google.firebase.analytics.FirebaseAnalytics$UserProperty
  2.  
  3. apply plugin: 'com.android.application'
  4. apply plugin: 'com.google.gms.google-services'
  5.  
  6. android {
  7. compileSdkVersion 28
  8. defaultConfig {
  9. applicationId "com.example.project"
  10. minSdkVersion 28
  11. targetSdkVersion 28
  12. versionCode 1
  13. versionName "1.0"
  14. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  15. }
  16. buildTypes {
  17. release {
  18. minifyEnabled false
  19. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. }
  23.  
  24. dependencies {
  25.  
  26. implementation fileTree(dir: 'libs', include: ['*.jar'])
  27. implementation 'com.android.support:appcompat-v7:28.0.0'
  28. implementation 'com.android.support:mediarouter-v7:28.0.0'
  29. implementation 'com.android.support:support-v7:28.0.0'
  30. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  31. implementation 'com.google.android.gms:play-services:12.0.1'
  32. testImplementation 'junit:junit:4.12'
  33. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  34. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  35.  
  36.  
  37. implementation 'com.google.firebase:firebase-database:16.1.0'
  38. implementation 'com.google.firebase:firebase-core:16.0.8'
  39. implementation 'com.google.firebase:firebase-auth:16.2.0'
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement