From a0bae4c52b94f8cc51808e464b8c3e41a77f1427 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=91=A3=E5=AE=8F=E5=AE=87?= Date: Thu, 4 Mar 2021 12:46:15 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E5=B8=83=E7=89=88=E6=9C=AC1.0.48?= =?UTF-8?q?=EF=BC=8C=E7=94=A8=E4=BA=8E=E6=94=AF=E6=8C=81=E5=90=8C=E4=B8=80?= =?UTF-8?q?=E4=B8=AA=E8=AE=BE=E5=A4=87=E7=9B=B4=E6=92=AD=E7=9A=84=E6=97=B6?= =?UTF-8?q?=E5=80=99=E7=9C=8B=E5=88=AB=E4=BA=BA=E7=9B=B4=E6=92=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/build.gradle | 4 ---- gradle.properties | 20 ++++++++++---------- modules/mogo-trafficlive/build.gradle | 4 ++-- 3 files changed, 12 insertions(+), 16 deletions(-) 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") } }