123456789101112131415161718192021222324252627282930313233343536373839404142 |
- // GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
- apply plugin: 'com.android.library'
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- }
- android {
- compileSdkVersion 29
- buildToolsVersion '28.0.3'
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- defaultConfig {
- minSdkVersion 22
- targetSdkVersion 29
- ndk {
- abiFilters 'armeabi-v7a'
- }
- versionCode 1
- versionName '1.0.0'
- consumerProguardFiles 'proguard-unity.txt'
- }
- lintOptions {
- abortOnError false
- }
- aaptOptions {
- ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
- }
- packagingOptions {
- doNotStrip '*/armeabi-v7a/*.so'
- }
- }
|