123456789101112131415161718192021222324252627282930313233343536373839404142 |
- apply plugin: 'com.android.library'
- apply plugin: 'com.android.application'
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'androidx.appcompat:appcompat:1.3.0'
- implementation 'com.google.android.material:material:1.4.0'
- }
- android {
- compileSdkVersion 31
- buildToolsVersion '31.0.0'
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- defaultConfig {
- minSdkVersion 21
- targetSdkVersion 31
- ndk {
- abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
- }
- versionCode 1
- versionName '1.0'
- consumerProguardFiles 'proguard-unity.txt'
- }
- lintOptions {
- abortOnError false
- }
- aaptOptions {
- noCompress = ['.unity3d', '.ress', '.resource', '.obb'] + unityStreamingAssets.tokenize(', ')
- ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
- }
-
- packagingOptions {
- exclude 'META-INF/proguard/androidx-annotations.pro'
- }
- }
|