module_default_config.gradle 481 B

123456789101112131415161718
  1. //默认的模块初始化gradle配置,可以依赖这个配置 再配置别的依赖
  2. apply plugin: 'com.android.library'
  3. apply plugin: 'kotlin-android'
  4. apply plugin: 'kotlin-kapt'
  5. apply from: rootProject.file('lib_base_config.gradle') //重复的配置统一由基类提供
  6. android {
  7. buildFeatures {
  8. dataBinding = true
  9. viewBinding = true
  10. }
  11. }
  12. dependencies {
  13. implementation project(':cs_cptServices') //Module模块默认添加Service模块的
  14. }