1234567891011121314151617181920212223242526272829 |
- allprojects {
- buildscript {
- repositories {**ARTIFACTORYREPOSITORY**
- google()
- jcenter()
- }
- dependencies {
-
-
-
-
- classpath 'com.android.tools.build:gradle:4.0.1'
- **BUILD_SCRIPT_DEPS**
- }
- }
- repositories {**ARTIFACTORYREPOSITORY**
- google()
- jcenter()
- flatDir {
- dirs "${project(':unityLibrary').projectDir}/libs"
- }
- }
- }
- task clean(type: Delete) {
- delete rootProject.buildDir
- }
|