12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- // GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
- apply plugin: 'com.android.application'
- dependencies {
- implementation project(':unityLibrary')
- }
- android {
- compileSdkVersion 28
- buildToolsVersion '28.0.3'
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- defaultConfig {
- minSdkVersion 21
- targetSdkVersion 28
- applicationId 'me.k.kotlin.paoku.s1'
- ndk {
- abiFilters 'armeabi-v7a'
- }
- versionCode 1
- versionName '1.0'
- }
- aaptOptions {
- noCompress = ['.unity3d', '.ress', '.resource', '.obb']
- ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
- }
- signingConfigs {
- debug {
- storeFile file("ojia.keystore")
- storePassword "111111"
- keyAlias "ojia"
- keyPassword "111111"
- }
- release {
- storeFile file("ojia.keystore")
- storePassword "111111"
- keyAlias "ojia"
- keyPassword "111111"
- }
- }
- 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
- }
- }
- }
|