75 lines
1.9 KiB
Groovy
Executable File
75 lines
1.9 KiB
Groovy
Executable File
// GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
dependencies {
|
|
implementation platform('com.google.firebase:firebase-bom:29.2.1')
|
|
implementation project(':unityLibrary')
|
|
implementation 'com.google.android.play:core:1.10.0'
|
|
}
|
|
|
|
android {
|
|
assetPacks = [":install_time_pack"]
|
|
|
|
compileSdkVersion 30
|
|
buildToolsVersion '30.0.2'
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
defaultConfig {
|
|
minSdkVersion 19
|
|
targetSdkVersion 30
|
|
applicationId 'com.idlelegend.arenaclash.battlefire'
|
|
ndk {
|
|
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
|
|
}
|
|
versionCode 1
|
|
versionName '0.1.0'
|
|
}
|
|
|
|
aaptOptions {
|
|
noCompress = ['.ress', '.resource', '.obb'] + unityStreamingAssets.tokenize(', ')
|
|
ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt')
|
|
signingConfig signingConfigs.debug
|
|
jniDebuggable true
|
|
}
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt')
|
|
signingConfig signingConfigs.debug
|
|
}
|
|
}
|
|
|
|
packagingOptions {
|
|
doNotStrip '*/armeabi-v7a/*.so'
|
|
doNotStrip '*/arm64-v8a/*.so'
|
|
doNotStrip '*/x86/*.so'
|
|
doNotStrip '*/x86_64/*.so'
|
|
}
|
|
|
|
bundle {
|
|
language {
|
|
enableSplit = false
|
|
}
|
|
density {
|
|
enableSplit = false
|
|
}
|
|
abi {
|
|
enableSplit = true
|
|
}
|
|
}
|
|
}
|