47 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Groovy
		
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Groovy
		
	
	
	
| // GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
 | |
| 
 | |
| apply plugin: 'com.android.library'
 | |
| **APPLY_PLUGINS**
 | |
| 
 | |
| dependencies {
 | |
|     implementation fileTree(dir: 'libs', include: ['*.jar'])
 | |
| 
 | |
|     implementation 'androidx.core:core-ktx:1.3.2'
 | |
|     implementation "org.jetbrains.kotlin:kotlin-stdlib:1.4.10"
 | |
|     implementation 'androidx.multidex:multidex:2.0.1'
 | |
|     implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.0")
 | |
|     implementation "org.jetbrains.kotlin:kotlin-reflect:1.6.10"
 | |
|     api 'com.tencent:mmkv:1.2.12'
 | |
|     api "org.greenrobot:eventbus:3.3.1"
 | |
| **DEPS**}
 | |
| 
 | |
| android {
 | |
|     compileSdkVersion **APIVERSION**
 | |
|     buildToolsVersion '**BUILDTOOLS**'
 | |
| 
 | |
|     compileOptions {
 | |
|         sourceCompatibility JavaVersion.VERSION_1_8
 | |
|         targetCompatibility JavaVersion.VERSION_1_8
 | |
|     }
 | |
| 
 | |
|     defaultConfig {
 | |
|         minSdkVersion **MINSDKVERSION**
 | |
|         targetSdkVersion **TARGETSDKVERSION**
 | |
|         ndk {
 | |
|             abiFilters **ABIFILTERS**
 | |
|         }
 | |
|         versionCode **VERSIONCODE**
 | |
|         versionName '**VERSIONNAME**'
 | |
|         consumerProguardFiles 'proguard-unity.txt'**USER_PROGUARD**
 | |
|     }
 | |
| 
 | |
|     lintOptions {
 | |
|         abortOnError false
 | |
|     }
 | |
| 
 | |
|     aaptOptions {
 | |
|         ignoreAssetsPattern = "!.svn:!.git:!.ds_store:!*.scc:.*:!CVS:!thumbs.db:!picasa.ini:!*~"
 | |
|     }**PACKAGING_OPTIONS**
 | |
| }**REPOSITORIES****SOURCE_BUILD_SETUP**
 | |
| **EXTERNAL_SOURCES**
 |