diff --git a/app/build.gradle b/app/build.gradle index 067b998..19e6860 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -59,14 +59,10 @@ dependencies { if (Boolean.valueOf(RELEASE)) { implementation "com.mogo.cloud:tanlu:${MOGO_TANLU_VERSION}" implementation "com.mogo.cloud:realtime:${MOGO_REALTIME_VERSION}" - implementation "com.mogo.cloud:trafficlive:${MOGO_TRAFFICLIVE_VERSION}" - - implementation "com.mogo.cloud:live:${MOGO_LIVE_VERSION}" } else { implementation project(":modules:mogo-tanlu") implementation project(":modules:mogo-realtime") - implementation project(":foudations:mogo-live") implementation project(":modules:mogo-trafficlive") } diff --git a/gradle.properties b/gradle.properties index e226d15..470b4ff 100644 --- a/gradle.properties +++ b/gradle.properties @@ -27,23 +27,23 @@ SNAPSHOT_REPOSITORY_URL=http://nexus.zhidaoauto.com/repository/maven-snapshots/ USERNAME=xintai PASSWORD=xintai2018 # 编译模式: false - 依赖本地版本, true - 依赖 maven 版本 -RELEASE=false +RELEASE=true # AI CLOUD 云平台 # 工具类 -MOGO_UTILS_VERSION=1.0.46 +MOGO_UTILS_VERSION=1.0.48 # 网络请求 -MOGO_NETWORK_VERSION=1.0.46 +MOGO_NETWORK_VERSION=1.0.48 # 网络DNS -MOGO_HTTPDNS_VERSION=1.0.46 +MOGO_HTTPDNS_VERSION=1.0.48 # 鉴权 -MOGO_PASSPORT_VERSION=1.0.46 +MOGO_PASSPORT_VERSION=1.0.48 # 常链接 -MOGO_SOCKET_VERSION=1.0.46 +MOGO_SOCKET_VERSION=1.0.48 # 数据采集 -MOGO_REALTIME_VERSION=1.0.46 +MOGO_REALTIME_VERSION=1.0.48 # 探路,道路事件发布,获取 -MOGO_TANLU_VERSION=1.0.46 +MOGO_TANLU_VERSION=1.0.48 # 直播推流 -MOGO_LIVE_VERSION=1.0.46 +MOGO_LIVE_VERSION=1.0.48 # 直播拉流 -MOGO_TRAFFICLIVE_VERSION=1.0.46 +MOGO_TRAFFICLIVE_VERSION=1.0.48 diff --git a/modules/mogo-trafficlive/build.gradle b/modules/mogo-trafficlive/build.gradle index 1eea67d..9065f29 100644 --- a/modules/mogo-trafficlive/build.gradle +++ b/modules/mogo-trafficlive/build.gradle @@ -32,10 +32,10 @@ dependencies { if (Boolean.valueOf(RELEASE)) { implementation "com.mogo.cloud:network:${MOGO_NETWORK_VERSION}" - implementation "com.mogo.cloud:live:${MOGO_LIVE_VERSION}" + api "com.mogo.cloud:live:${MOGO_LIVE_VERSION}" } else { implementation project(":foudations:mogo-network") - implementation project(":foudations:mogo-live") + api project(":foudations:mogo-live") } }