| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- // GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN
- buildscript {
- repositories {
- google()
- jcenter()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:3.2.0'
- if (file("${rootDir}/lebian").exists()) {
- classpath 'com.loveota.plugins:lbplugin:latest.release'
- }
- **BUILD_SCRIPT_DEPS**}
- }
- allprojects {
- repositories {
- google()
- jcenter()
- flatDir {
- dirs 'libs'
- }
- }
- }
- apply plugin: 'com.android.application'
- if (file("${rootDir}/lebian").exists()) {
- apply plugin: 'com.loveota.lbsdk'
- apply from: project(':lebian').file('lebian_app.gradle')
- }
- **APPLY_PLUGINS**
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'androidx.recyclerview:recyclerview:1.1.0'
- implementation 'androidx.appcompat:appcompat:1.2.0'
- implementation 'com.github.bumptech.glide:glide:4.11.0'
- implementation 'com.tencent.mm.opensdk:wechat-sdk-android-without-mta:+'
- **DEPS**}
- android {
- compileSdkVersion **APIVERSION**
- buildToolsVersion '**BUILDTOOLS**'
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- defaultConfig {
- minSdkVersion 21
- targetSdkVersion 28
- applicationId '**APPLICATIONID**'
- ndk {
- abiFilters **ABIFILTERS**
- }
- versionCode **VERSIONCODE**
- versionName '**VERSIONNAME**'
- }
- lintOptions {
- abortOnError false
- }
- aaptOptions {
- noCompress = ['.unity3d', '.ress', '.resource', '.obb'**STREAMING_ASSETS**]
- }**SIGN**
- buildTypes {
- debug {
- minifyEnabled **MINIFY_DEBUG**
- useProguard **PROGUARD_DEBUG**
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD**
- jniDebuggable true
- }
- release {
- minifyEnabled **MINIFY_RELEASE**
- useProguard **PROGUARD_RELEASE**
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-unity.txt'**USER_PROGUARD****SIGNCONFIG**
- }
- }**PACKAGING_OPTIONS****SPLITS**
- **BUILT_APK_LOCATION**
- bundle {
- language {
- enableSplit = false
- }
- density {
- enableSplit = false
- }
- abi {
- enableSplit = true
- }
- }
- }**SPLITS_VERSION_CODE****REPOSITORIES****SOURCE_BUILD_SETUP**
|