123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- 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.test1'
- ndk {
- abiFilters 'armeabi-v7a', 'arm64-v8a'
- }
- versionCode 1
- versionName '1.0'
- }
-
- 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('D:/順通/user.keystore')
- storePassword '123456'
- keyAlias '123456'
- keyPassword '123456'
- }
- }
-
- 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'
- doNotStrip '*/arm64-v8a/*.so'
- }
-
- bundle {
- language {
- enableSplit = false
- }
- density {
- enableSplit = false
- }
- abi {
- enableSplit = true
- }
- }
- }
|