apply plugin: 'com.android.application' apply from: 'setupSymbols.gradle' apply from: '../shared/keepUnitySymbols.gradle' dependencies { implementation project(':unityLibrary') } android { namespace "com.G.C.M.LTD.BarrierFree" ndkPath "D:/Unity/6000.0.9f1/Editor/Data/PlaybackEngines/AndroidPlayer/NDK" ndkVersion "23.1.7779620" compileSdk 34 buildToolsVersion = "34.0.0" compileOptions { sourceCompatibility JavaVersion.VERSION_17 targetCompatibility JavaVersion.VERSION_17 } defaultConfig { applicationId "com.G.C.M.LTD.BarrierFree" versionName "1.0.9" minSdk 23 targetSdk 34 versionCode 28 ndk { abiFilters "armeabi-v7a", "arm64-v8a" debugSymbolLevel "none" } } lint { abortOnError false } androidResources { ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~" noCompress = ['.unity3d', '.ress', '.resource', '.obb', '.bundle', '.unityexp'] + unityStreamingAssets.tokenize(', ') } packaging { jniLibs { useLegacyPackaging true } } signingConfigs { release { storeFile file('D:/Unity/BarrierFree/Assets/wsw.keystore') storePassword '111111' keyAlias 'wsw' keyPassword '111111' } } buildTypes { debug { minifyEnabled = false proguardFiles getDefaultProguardFile('proguard-android.txt') jniDebuggable = true signingConfig signingConfigs.release } release { minifyEnabled = false proguardFiles getDefaultProguardFile('proguard-android.txt') signingConfig signingConfigs.release } } bundle { language { enableSplit = false } density { enableSplit = false } abi { enableSplit = true } texture { enableSplit = true } } }