| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- apply plugin: 'com.android.library'
- apply from: 'lebian_cust.gradle'
- android {
- compileSdkVersion 29
- buildToolsVersion '29.0.1'
- defaultConfig {
- minSdkVersion 16
- targetSdkVersion 29
- manifestPlaceholders = [
- "MainChId": lebian.meta_MainChId,
- "ClientChId": lebian.meta_ClientChId,
- "LEBIAN_SECID": lebian.meta_LEBIAN_SECID,
- "LEBIAN_VERCODE": lebian.meta_LEBIAN_VERCODE,
- "LEBIAN_APPLICATION": 'com.excelliance.open.LBApplication',
- "screenOrientation": lebian.screenOrientation,
- "lb_target_pkgname": (lebian.packageName ? lebian.packageName :'${applicationId}'),
- "lb_task_Affinity": (lebian.taskAffinity ? lebian.taskAffinity :'${applicationId}')
- ]
- }
- lintOptions {
- checkReleaseBuilds false
- abortOnError false
- }
- buildTypes {
- debug {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), "proguard-rules.pro"
- }
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), "proguard-rules.pro"
- }
- }
- }
- dependencies {
- api fileTree(include: ['*.jar'], dir: 'libs')
- }
|