75 lines
1.7 KiB
Groovy
75 lines
1.7 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
dependencies {
|
|
implementation project(':unityLibrary')
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 33
|
|
buildToolsVersion '30.0.2'
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
defaultConfig {
|
|
minSdkVersion 26
|
|
targetSdkVersion 33
|
|
applicationId 'com.DefaultCompany.Asean'
|
|
ndk {
|
|
abiFilters 'arm64-v8a'
|
|
}
|
|
versionCode 1
|
|
versionName '0.1'
|
|
}
|
|
|
|
aaptOptions {
|
|
noCompress = ['.unity3d', '.ress', '.resource', '.obb', '.bundle', '.unityexp'] + unityStreamingAssets.tokenize(', ')
|
|
ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
|
|
}
|
|
|
|
signingConfigs {
|
|
release {
|
|
storeFile file('E:/AR/Arsean/user.keystore')
|
|
storePassword 'nabila123'
|
|
keyAlias 'arsean'
|
|
keyPassword 'nabila123'
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt')
|
|
signingConfig signingConfigs.release
|
|
jniDebuggable true
|
|
}
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt')
|
|
signingConfig signingConfigs.release
|
|
}
|
|
}
|
|
|
|
packagingOptions {
|
|
doNotStrip '*/arm64-v8a/*.so'
|
|
}
|
|
|
|
bundle {
|
|
language {
|
|
enableSplit = false
|
|
}
|
|
density {
|
|
enableSplit = false
|
|
}
|
|
abi {
|
|
enableSplit = true
|
|
}
|
|
}
|
|
}
|