78 lines
2.0 KiB
Plaintext
78 lines
2.0 KiB
Plaintext
// GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
|
|
|
|
buildscript {
|
|
repositories {**ARTIFACTORYREPOSITORY**
|
|
google()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.4.0'
|
|
**BUILD_SCRIPT_DEPS**}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {**ARTIFACTORYREPOSITORY**
|
|
google()
|
|
jcenter()
|
|
flatDir {
|
|
dirs 'libs'
|
|
}
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.library'
|
|
**APPLY_PLUGINS**
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
**DEPS**}
|
|
|
|
android {
|
|
compileSdkVersion **APIVERSION**
|
|
buildToolsVersion '**BUILDTOOLS**'
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
defaultConfig {
|
|
consumerProguardFiles 'proguard-unity.txt'**USER_PROGUARD**
|
|
minSdkVersion **MINSDKVERSION**
|
|
targetSdkVersion **TARGETSDKVERSION**
|
|
|
|
ndk {
|
|
abiFilters **ABIFILTERS**
|
|
}
|
|
versionCode **VERSIONCODE**
|
|
versionName '**VERSIONNAME**'
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
aaptOptions {
|
|
noCompress = ['.unity3d', '.ress', '.resource', '.obb'**STREAMING_ASSETS**]
|
|
ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
|
|
}**SIGN**
|
|
|
|
buildTypes {
|
|
debug {
|
|
minifyEnabled **MINIFY_DEBUG**
|
|
useProguard **PROGUARD_DEBUG**
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD****SIGNCONFIG**
|
|
jniDebuggable true
|
|
}
|
|
release {
|
|
minifyEnabled **MINIFY_RELEASE**
|
|
useProguard **PROGUARD_RELEASE**
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD****SIGNCONFIG**
|
|
}
|
|
}**PACKAGING_OPTIONS**
|
|
**BUILT_APK_LOCATION**
|
|
**EXTERNAL_SOURCES**
|
|
|
|
}**REPOSITORIES****SOURCE_BUILD_SETUP**
|