build.gradle 761 B

1234567891011121314151617181920212223242526272829303132
  1. // GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
  2. allprojects {
  3. ext.kotlin_version = "1.4.20"
  4. buildscript {
  5. repositories {
  6. google()
  7. jcenter()
  8. }
  9. dependencies {
  10. classpath 'com.android.tools.build:gradle:3.4.0'
  11. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  12. classpath "com.tencent.bugly:tinker-support:+"
  13. }
  14. }
  15. repositories {
  16. google()
  17. jcenter()
  18. flatDir {
  19. dirs "${project(':launcher').projectDir}/libs"
  20. dirs "${project(':unityLibrary').projectDir}/libs"
  21. }
  22. }
  23. }
  24. task clean(type: Delete) {
  25. delete rootProject.buildDir
  26. }