gonzalob

Untitled

Sep 13th, 2021
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. plugins {
  2. id 'com.android.application'
  3. id 'kotlin-android'
  4. id 'com.google.gms.google-services'
  5. }
  6.  
  7. android {
  8. compileSdkVersion 30
  9. buildToolsVersion "30.0.3"
  10.  
  11. defaultConfig {
  12. applicationId "com.coffeeandcookies.easytracking"
  13. minSdkVersion 21
  14. targetSdkVersion 30
  15. versionCode 1
  16. versionName "1.0"
  17. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  18. }
  19.  
  20. buildTypes {
  21. release {
  22. minifyEnabled false
  23. debuggable false
  24. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  25. }
  26. debug
  27. {
  28. debuggable true
  29. }
  30. }
  31. compileOptions {
  32. sourceCompatibility JavaVersion.VERSION_1_8
  33. targetCompatibility JavaVersion.VERSION_1_8
  34. }
  35.  
  36. }
  37.  
  38. dependencies {
  39.  
  40. implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
  41. implementation "androidx.cardview:cardview:1.0.0"
  42. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  43. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  44. implementation 'br.com.simplepass:loading-button-android:2.2.0'
  45. implementation 'com.google.android.material:material:1.4.0'
  46. implementation 'com.github.quentin7b:android-location-tracker:4.0'
  47. implementation(platform("com.squareup.okhttp3:okhttp-bom:4.9.1"))
  48. implementation("com.squareup.okhttp3:okhttp")
  49. implementation("com.squareup.okhttp3:logging-interceptor")
  50. implementation platform('com.google.firebase:firebase-bom:28.4.0')
  51. implementation 'com.google.firebase:firebase-analytics'
  52. }
Add Comment
Please, Sign In to add comment