build.gradle 361 B

123456789101112131415161718
  1. apply plugin: 'com.android.library'
  2. apply from: '../dependencies.gradle'
  3. android {
  4. defaultConfig {
  5. }
  6. }
  7. dependencies {
  8. //根据是否独立运行,将模块作为apk还是module
  9. if (!singleModule.toBoolean()) {
  10. //其他模块作为app运行的话,就不能依赖库作为lib用
  11. }
  12. implementation project(path: ':service')
  13. }