1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // 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 28
- buildToolsVersion '28.0.3'
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- defaultConfig {
- minSdkVersion 22
- targetSdkVersion 28
- ndk {
- abiFilters 'armeabi-v7a'
- }
- versionCode 1
- versionName '0.1'
- consumerProguardFiles 'proguard-unity.txt'
- }
- lintOptions {
- abortOnError false
- }
- aaptOptions {
- ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
- }
- packagingOptions {
- doNotStrip '*/armeabi-v7a/*.so'
- }
- }
|