123456789101112131415161718192021222324252627 |
- // GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
- allprojects {
- buildscript {
- repositories {
- google()
- jcenter()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:3.6.0'
-
- }
- }
- repositories {
- google()
- jcenter()
- flatDir {
- dirs "${project(':unityLibrary').projectDir}/libs"
- }
- }
- }
- task clean(type: Delete) {
- delete rootProject.buildDir
- }
|