Guest User

Untitled

a guest
May 19th, 2021
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2.  
  3. buildscript {
  4. ext {
  5. kotlin_version = "1.5.0"
  6. }
  7. repositories {
  8. google()
  9. mavenCentral()
  10. }
  11. dependencies {
  12. classpath "com.android.tools.build:gradle:7.0.0-beta01"
  13. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  14. classpath "de.mannodermaus.gradle.plugins:android-junit5:1.7.1.1"
  15. classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
  16. classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.5"
  17. classpath "com.google.gms:google-services:4.3.5"
  18. classpath "com.google.firebase:firebase-crashlytics-gradle:2.5.2"
  19. classpath "com.google.firebase:perf-plugin:1.3.5"
  20. }
  21. }
  22.  
  23. allprojects {
  24. repositories {
  25. google()
  26. mavenCentral()
  27. }
  28. }
  29.  
  30. task clean(type: Delete) {
  31. delete rootProject.buildDir
  32. }
  33.  
Add Comment
Please, Sign In to add comment