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 22 targetSdkVersion 33 applicationId 'com.DefaultCompany.Arsean' ndk { abiFilters 'armeabi-v7a' } 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 false proguardFiles getDefaultProguardFile('proguard-android.txt') signingConfig signingConfigs.release jniDebuggable true } release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt') signingConfig signingConfigs.release } } packagingOptions { doNotStrip '*/armeabi-v7a/*.so' } bundle { language { enableSplit = false } density { enableSplit = false } abi { enableSplit = true } } }