Advertisement
Guest User

gradle app

a guest
Jan 22nd, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3.  
  4. android {
  5. compileSdkVersion 28
  6. buildToolsVersion "28.0.3"
  7. useLibrary 'org.apache.http.legacy'
  8. defaultConfig {
  9. applicationId "br.com.mototaxidobrasil"
  10. minSdkVersion 22
  11. targetSdkVersion 28
  12. versionCode 80
  13. versionName "2.0.5"
  14. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  15. }
  16. buildTypes {
  17. release {
  18. minifyEnabled false
  19. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. compileOptions {
  23. sourceCompatibility = '1.8'
  24. targetCompatibility = '1.8'
  25. }
  26. }
  27.  
  28. dependencies {
  29. implementation fileTree(dir: 'libs', include: ['*.jar'])
  30. testImplementation 'junit:junit:4.13'
  31.  
  32. androidTestImplementation 'androidx.test:runner:1.2.0'
  33. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  34.  
  35. implementation 'androidx.appcompat:appcompat:1.2.0-alpha01'
  36. implementation 'com.google.android.material:material:1.0.0'
  37. implementation 'com.squareup.retrofit2:retrofit:2.7.1'
  38. implementation 'com.google.code.gson:gson:2.8.6'
  39. implementation 'com.squareup.retrofit2:converter-gson:2.7.1'
  40. implementation 'br.com.jansenfelipe:androidmask:1.0.1'
  41.  
  42. implementation 'com.google.android.gms:play-services-basement:16.0.1'
  43. implementation 'com.google.android.gms:play-services-location:17.0.0'
  44. implementation 'com.google.android.gms:play-services-places:17.0.0'
  45. implementation 'com.google.android.gms:play-services-maps:17.0.0'
  46. implementation 'com.google.android.gms:play-services-analytics:17.0.0'
  47.  
  48. implementation 'com.google.maps.android:android-maps-utils:0.6.2'
  49. implementation 'com.squareup.okhttp3:logging-interceptor:4.3.1'
  50. //Firebase dependencies
  51. //implementation 'com.google.firebase:firebase-core:16.2.1'
  52. implementation 'com.google.firebase:firebase-messaging:20.1.0'
  53. //implementation 'com.google.firebase:firebase-auth:16.2.1'
  54. implementation 'com.google.firebase:firebase-crash:16.2.1'
  55. //implementation 'com.google.firebase:firebase-analytics:17.2.0'
  56. // Firebase
  57. implementation 'com.google.firebase:firebase-core:16.0.9'
  58. implementation 'com.google.firebase:firebase-auth:17.0.0'
  59.  
  60. // Firebase UI
  61. implementation 'com.firebaseui:firebase-ui-auth:5.0.0'
  62. implementation 'com.firebaseui:firebase-ui-database:5.0.0'
  63.  
  64. //multidex
  65. implementation 'com.android.support:multidex:1.0.3'
  66. implementation 'org.apache.httpcomponents:httpcore:4.4.1'
  67. }
  68.  
  69. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement