123456789101112131415161718192021 |
- plugins {
- id("com.android.application")
- }
- // 使用自定义插件
- apply<DefaultGradlePlugin>()
- android {
- //需要定义 namespace 和 applicationId 的信息
- namespace = "vn.hongyegroup.yybusiness"
- defaultConfig {
- applicationId = BuildConfig.applicationId
- }
- //如果要配置 JPush、GooglePlay等配置,直接接下去写即可
- }
- dependencies {
- api(project(":lib-indexablerecyclerview"))
- }
|