Guest User

Untitled

a guest
Jun 19th, 2018
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. buildscript {
  2.  
  3. repositories {
  4. google()
  5. jcenter()
  6. }
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:3.0.1'
  9.  
  10.  
  11. // NOTE: Do not place your application dependencies here; they belong
  12. // in the individual module build.gradle files
  13. classpath 'com.google.gms:google-services:3.1.0'
  14. }
  15. }
  16.  
  17. allprojects {
  18. repositories {
  19. google()
  20. jcenter()
  21. }
  22. }
  23.  
  24. task clean(type: Delete) {
  25. delete rootProject.buildDir
  26. }
  27.  
  28. apply plugin: 'com.android.application'
  29.  
  30. android {
  31. compileSdkVersion 26
  32. defaultConfig {
  33. applicationId "com.biji.riderapp"
  34. minSdkVersion 15
  35. targetSdkVersion 26
  36. versionCode 1
  37. versionName "1.0"
  38. testInstrumentationRunner
  39. "android.support.test.runner.AndroidJUnitRunner"
  40. }
  41. buildTypes {
  42. release {
  43. minifyEnabled false
  44. proguardFiles getDefaultProguardFile('proguard-android.txt'),
  45. 'proguard-rules.pro'
  46. }
  47. }
  48. }
  49.  
  50. dependencies {
  51. implementation fileTree(dir: 'libs', include: ['*.jar'])
  52. implementation 'com.android.support:appcompat-v7:26.1.0'
  53. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  54. implementation 'com.google.firebase:firebase-database:11.0.4'
  55. testImplementation 'junit:junit:4.12'
  56. androidTestImplementation 'com.android.support.test:runner:1.0.1'
  57. androidTestImplementation 'com.android.support.test.espresso:espresso-
  58. core:3.0.1'
  59. implementation 'com.android.support:recyclerview-v7:26.1.0'
  60. }
  61.  
  62.  
  63. apply plugin: 'com.google.gms.google-services'
Add Comment
Please, Sign In to add comment