1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- apply plugin: 'com.android.application'
-
- dependencies {
- implementation project(':unityLibrary')
- }
-
- android {
- ndkPath "D:/2022.3.26f1/Editor/Data/PlaybackEngines/AndroidPlayer/NDK"
-
- compileSdkVersion 33
- buildToolsVersion '32.0.0'
-
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_11
- targetCompatibility JavaVersion.VERSION_11
- }
-
- defaultConfig {
- minSdkVersion 22
- targetSdkVersion 33
- applicationId 'com.gcmstart.ga'
- 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:/GA1/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
- }
- }
- }
-
-
- apply from: '..\\unityLibrary\\GoogleMobileAdsPlugin.androidlib\\packaging_options.gradle'
|