Guest User

Untitled

a guest
Nov 17th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 26
  5. buildToolsVersion "27.0.1"
  6. defaultConfig {
  7. applicationId "codingwithmitch.com.firebasedirectmessage"
  8. minSdkVersion 16
  9. targetSdkVersion 26
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. }
  21.  
  22. dependencies {
  23. compile fileTree(dir: 'libs', include: ['*.jar'])
  24. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  25. exclude group: 'com.android.support', module: 'support-annotations'
  26. })
  27. compile 'com.android.support:appcompat-v7:26.+'
  28. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  29. testCompile 'junit:junit:4.12'
  30.  
  31. //RecyclerView
  32. compile 'com.android.support:recyclerview-v7:26.+'
  33.  
  34. //Firebase Authentication
  35. compile 'com.google.firebase:firebase-auth:11.4.0'
  36.  
  37. //Firebase Realtime Database
  38. compile 'com.google.firebase:firebase-database:11.4.0'
  39.  
  40. //Firebase Cloud Messaging
  41. compile 'com.google.firebase:firebase-messaging:11.4.0'
  42.  
  43. }
  44. apply plugin: 'com.google.gms.google-services'
Add Comment
Please, Sign In to add comment