13 lines
561 B
Groovy
13 lines
561 B
Groovy
// 基础服务:仅比亚迪渠道用sdk方式实现,其他都基于apk基础服务
|
||
|
||
project.dependencies {
|
||
if (Boolean.valueOf(RELEASE)) {
|
||
qaImplementation rootProject.ext.dependencies.httpdnsnoop
|
||
demoImplementation rootProject.ext.dependencies.httpdnsnoop
|
||
onlineImplementation rootProject.ext.dependencies.httpdnsmogo
|
||
} else {
|
||
qaImplementation project(':foudations:httpdns-noop')
|
||
demoImplementation project(':foudations:httpdns-noop')
|
||
onlineImplementation project(':foudations:httpdns-mogo')
|
||
}
|
||
} |