build.gradle 720 B

1234567891011121314151617181920212223
  1. apply from: "../module.build.gradle"
  2. apply plugin: 'kotlin-android'
  3. apply plugin: 'kotlin-kapt'
  4. android {
  5. defaultConfig {
  6. // 如果是独立模块,则使用当前组件的包名
  7. if (singleModule.toBoolean()) {
  8. applicationId "com.yingyangfly.push"
  9. }
  10. }
  11. // 统一资源前缀,规范资源引用
  12. resourcePrefix "push_"
  13. }
  14. dependencies {
  15. implementation project(path: ':baselib')
  16. implementation(rootProject.ext.androidx.kotlin_lib)
  17. implementation(rootProject.ext.androidx.kotlin_core)
  18. implementation(rootProject.ext.androidx.appcompat)
  19. implementation(rootProject.ext.androidx.material)
  20. implementation(rootProject.ext.androidx.constraintlayout)
  21. }