76 lines
1.7 KiB
Groovy
76 lines
1.7 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
dependencies {
|
|
implementation project(':unityLibrary')
|
|
}
|
|
|
|
android {
|
|
ndkPath "C:/Program Files/Unity/Hub/Editor/2023.2.10f1/Editor/Data/PlaybackEngines/AndroidPlayer/NDK"
|
|
compileSdkVersion 33
|
|
buildToolsVersion "32.0.0"
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
}
|
|
|
|
defaultConfig {
|
|
applicationId "com.fertilgamezatify"
|
|
versionName "1.0"
|
|
minSdkVersion 23
|
|
targetSdkVersion 33
|
|
versionCode 1
|
|
|
|
ndk {
|
|
abiFilters "armeabi-v7a"
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
aaptOptions {
|
|
ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~"
|
|
noCompress = ['.unity3d', '.ress', '.resource', '.obb', '.bundle', '.unityexp'] + unityStreamingAssets.tokenize(', ')
|
|
}
|
|
|
|
packagingOptions {
|
|
doNotStrip "*/armeabi-v7a/*.so"
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
minifyEnabled = false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt')
|
|
jniDebuggable = true
|
|
signingConfig signingConfigs.debug
|
|
}
|
|
|
|
release {
|
|
minifyEnabled = false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt')
|
|
signingConfig signingConfigs.debug
|
|
}
|
|
}
|
|
|
|
namespace "com.fertilgamezatify"
|
|
|
|
bundle {
|
|
language {
|
|
enableSplit = false
|
|
}
|
|
|
|
density {
|
|
enableSplit = false
|
|
}
|
|
|
|
abi {
|
|
enableSplit = true
|
|
}
|
|
|
|
texture {
|
|
enableSplit = true
|
|
}
|
|
}
|
|
} |