12345678910111213141516171819202122232425262728293031323334353637 |
- if (!isNeedAccoutModule.toBoolean()) {
- apply plugin: 'com.android.application'
- } else {
- apply plugin: 'com.android.library'
- }
- apply plugin: 'kotlin-android'
- apply plugin: 'kotlin-android-extensions'
- apply plugin: 'kotlin-kapt'
- apply from: "../gradle_component/baseconfig.gradle"
- android {
- defaultConfig {
- if (!isNeedAccoutModule.toBoolean()) {
- applicationId "com.bc_chat.account"
- }
- // javaCompileOptions {
- // annotationProcessorOptions {
- // arguments = [moduleName: project.getName()]
- // }
- // }
- kapt {
- arguments {
- arg("AROUTER_MODULE_NAME", project.getName())
- }
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- testImplementation 'junit:junit:4.12'
- androidTestImplementation 'com.android.support.test:runner:1.0.2'
- androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
- api project(':bc_base')
- kapt "com.alibaba:arouter-compiler:1.2.2"
- }
|