Guest User

Untitled

a guest
Nov 20th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. buildscript {
  2.  
  3. repositories {
  4. google()
  5. jcenter()
  6. }
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:3.1.3'
  9.  
  10. classpath 'com.google.gms:google-services:3.1.1'
  11. }
  12. }
  13.  
  14. allprojects {
  15.  
  16. repositories {
  17. google()
  18. jcenter()
  19. maven()
  20. {
  21. url "https://google.com"
  22. }
  23. }
  24. }
  25.  
  26. task clean(type: Delete) {
  27.  
  28. delete rootProject.buildDir
  29. }
  30.  
  31. apply plugin: 'com.android.application'
  32.  
  33. android {
  34. compileSdkVersion 28
  35. defaultConfig {
  36. applicationId "com.pachu.my_notification"
  37. minSdkVersion 21
  38. targetSdkVersion 28
  39. versionCode 1
  40. versionName "1.0"
  41. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  42. }
  43. buildTypes {
  44. release {
  45. minifyEnabled false
  46. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  47. }
  48. }
  49. }
  50.  
  51. dependencies {
  52. implementation fileTree(include: ['*.jar'], dir: 'libs')
  53. //noinspection GradleCompatible
  54. implementation 'com.android.support:appcompat-v7:28.0.0'
  55. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  56. implementation 'com.google.firebase:firebase-auth:11.6.0'
  57. implementation 'com.google.firebase:firebase-database:11.6.0'
  58. testImplementation 'junit:junit:4.12'
  59. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  60. androidTestImplementation 'com.android.support.test.espresso:espresso-
  61. core:3.0.2'
  62. implementation 'com.firebaseui:firebase-ui-database:4.2.1'
  63. implementation 'com.android.support:recyclerview-v7:28.0.0'
  64. }
  65.  
  66. apply plugin: 'com.google.gms.google-services'
  67.  
  68. Library Version
  69. firebase-auth 16.0.5
  70. play-services-auth 16.0.1
  71. firebase-database 16.0.3
  72. firebase-firestore 17.1.1
  73. firebase-storage 16.0.3
Add Comment
Please, Sign In to add comment