Merge remote-tracking branch 'origin/dev_MogoAP_eagle-1030_211020_8.0.14' into dev_MogoAP_eagle-1030_211020_8.0.14

This commit is contained in:
donghongyu
2021-11-15 20:39:42 +08:00
42 changed files with 14151 additions and 25 deletions

View File

@@ -27,11 +27,13 @@ import com.mogo.eagle.core.function.hmi.ui.camera.CameraListView
import com.mogo.eagle.core.function.hmi.ui.notice.NoticeBannerView
import com.mogo.eagle.core.function.hmi.ui.notice.NoticeNormalBannerView
import com.mogo.eagle.core.function.hmi.ui.setting.DebugSettingView
import com.mogo.eagle.core.function.hmi.ui.utils.visible
import com.mogo.eagle.core.function.hmi.ui.widget.V2XNotificationView
import com.mogo.eagle.core.utilcode.util.ThreadUtils
import com.mogo.module.common.enums.EventTypeEnum
import com.mogo.utils.logger.Logger
import kotlinx.android.synthetic.main.fragment_hmi.*
import androidx.core.view.isVisible as isVisible
/**
* @author xiaoyuzhou
@@ -281,6 +283,10 @@ class MoGoHmiFragment : MvpFragment<MoGoWarningContract.View?, WaringPresenter?>
viewTrafficLightVr?.showWarningTrafficLight(checkLightId)
}
override fun isWarningTrafficLightShow(): Boolean {
return viewTrafficLightVr.visibility == View.VISIBLE
}
/**
* 关闭红绿灯预警展示,并重制灯态
*/

View File

@@ -15,6 +15,10 @@ class TrafficLightHMIManager {
private var initView: Boolean = false
fun isWarningTrafficLightShow():Boolean{
return CallerHmiManager.isWarningTrafficLightShow()
}
fun updateTrafficLight(trafficLightResult: TrafficLightResult) {
val currentTrafficLight = trafficLightResult.currentRoadTrafficLight()
currentTrafficLight?.let {

View File

@@ -46,6 +46,13 @@ class MogoTrafficLightManager : IMogoCarLocationChangedListener2 {
TrafficLightThreadHandler(WorkThreadHandler.newInstance("TrafficLight").looper,
{
Logger.d(TAG, "loop search roadID , mLocation : $mLocation")
//查询路口时,如果红绿灯显示,则隐藏掉
if(TrafficLightHMIManager.INSTANCE.isWarningTrafficLightShow()){
TrafficLightHMIManager.INSTANCE.hideTrafficLight()
CallTrafficLightListenerManager.resetTrafficLightData()
}
mLocation?.let { it ->
val tileId = MogoApisHandler.getInstance().apis
.mapServiceApi.mapUIController.getTileId(it.longitude, it.latitude)
@@ -74,7 +81,12 @@ class MogoTrafficLightManager : IMogoCarLocationChangedListener2 {
CallTrafficLightListenerManager.invokeTrafficLightStatus(result)
},
{ errorMsg ->
//如果没有获取到正确的红绿灯数据,则取消读灯,继续读路口,防止出现一直读灯的情况
Logger.d(TAG, "request Traffic Light error : $errorMsg")
//stop loop traffic light
trafficLightNetWorkModel.cancelRequestTrafficLight()
//未查到红绿灯加入2秒延时请求路口ID
mThreadHandler?.sendEmptyMessageDelayed(MSG_WHAT_LOOP_SEARCH_CROSS_ROAD, 2_000L)
})
}
}, {
@@ -116,7 +128,7 @@ class MogoTrafficLightManager : IMogoCarLocationChangedListener2 {
&& (CoordinateUtils.calculateLineDistance(
it.longitude, it.latitude,
trafficLightResult!!.lon, trafficLightResult!!.lat
) < 5)
) < 10)
) {
trafficLightResult = null
TrafficLightHMIManager.INSTANCE.hideTrafficLight()

View File

@@ -12,6 +12,7 @@ data class TrafficLightResult(
val lat: Double, //纬度
val lon: Double, //经度
val direction: String, //航向角
val heading: String, //红绿灯方向
val lightId: Int, //红绿灯ID
val laneNo: Int, //车道号
val arrowNo: Int, //当前车道对应地面要素转向

View File

@@ -63,6 +63,11 @@ interface IMoGoWaringProvider {
*/
fun showWarningTrafficLight(checkLightId: Int)
/**
* 红绿灯是否展示
*/
fun isWarningTrafficLightShow():Boolean
/**
* 关闭红绿灯预警
*/

View File

@@ -16,15 +16,16 @@ import com.mogo.eagle.core.function.call.base.CallerBase
* HMI 调用者管理这里对外及其他模块提供功能的调用用啥写啥不要过度设计不允许直接将Provider暴露出去
*/
object CallerHmiManager : CallerBase() {
private val waringProviderApi: IMoGoWaringProvider?
get() = ARouter.getInstance().build(MoGoFragmentPaths.PATH_FRAGMENT_HMI).navigation() as IMoGoWaringProvider
private val waringProviderApi: IMoGoWaringProvider
get() = ARouter.getInstance().build(MoGoFragmentPaths.PATH_FRAGMENT_HMI)
.navigation() as IMoGoWaringProvider;
/**
* 隐藏 脉速表
* @param visibility View.VISIBLE, View.INVISIBLE,View.GONE
*/
fun setSpeedChartViewVisibility(visibility: Int) {
waringProviderApi?.setSpeedChartViewVisibility(visibility)
waringProviderApi.setSpeedChartViewVisibility(visibility)
}
/**
@@ -32,7 +33,7 @@ object CallerHmiManager : CallerBase() {
* @param visibility View.VISIBLE, View.INVISIBLE,View.GONE
*/
fun setAutopilotStatusViewVisibility(visibility: Int) {
waringProviderApi?.setAutopilotStatusViewVisibility(visibility)
waringProviderApi.setAutopilotStatusViewVisibility(visibility)
}
/**
@@ -40,7 +41,7 @@ object CallerHmiManager : CallerBase() {
* @param visibility View.VISIBLE, View.INVISIBLE,View.GONE
*/
fun setPerspectiveSwitchViewVisibility(visibility: Int) {
waringProviderApi?.setPerspectiveSwitchViewVisibility(visibility)
waringProviderApi.setPerspectiveSwitchViewVisibility(visibility)
}
/**
@@ -48,7 +49,7 @@ object CallerHmiManager : CallerBase() {
* @param visibility View.VISIBLE, View.INVISIBLE,View.GONE
*/
fun setCheckStatusViewVisibility(visibility: Int) {
waringProviderApi?.setCheckStatusViewVisibility(visibility)
waringProviderApi.setCheckStatusViewVisibility(visibility)
}
/**
@@ -66,7 +67,7 @@ object CallerHmiManager : CallerBase() {
tag: String?,
listenerIMoGo: IMoGoWarningStatusListener?
) {
waringProviderApi?.showWarningV2X(v2xType, alertContent, ttsContent, tag, listenerIMoGo)
waringProviderApi.showWarningV2X(v2xType, alertContent, ttsContent, tag, listenerIMoGo)
}
/**
@@ -74,7 +75,7 @@ object CallerHmiManager : CallerBase() {
* @param tag 弹窗标识
*/
fun disableWarningV2X(tag: String?) {
waringProviderApi?.disableWarningV2X(tag)
waringProviderApi.disableWarningV2X(tag)
}
/**
@@ -83,35 +84,42 @@ object CallerHmiManager : CallerBase() {
* @param checkLightId 0-都是默认1-红2-黄3-绿
*/
fun showWarningTrafficLight(checkLightId: Int) {
waringProviderApi?.showWarningTrafficLight(checkLightId)
waringProviderApi.showWarningTrafficLight(checkLightId)
}
/**
* 关闭红绿灯预警
*/
fun disableWarningTrafficLight() {
waringProviderApi?.disableWarningTrafficLight()
waringProviderApi.disableWarningTrafficLight()
}
/**
* 红绿灯是否展示
*/
fun isWarningTrafficLightShow(): Boolean {
return waringProviderApi.isWarningTrafficLightShow()
}
/**
* 修改红灯倒计时
*/
fun changeCountdownRed(redNum: Int) {
waringProviderApi?.changeCountdownRed(redNum)
waringProviderApi.changeCountdownRed(redNum)
}
/**
* 修改黄灯倒计时
*/
fun changeCountdownYellow(yellowNum: Int) {
waringProviderApi?.changeCountdownYellow(yellowNum)
waringProviderApi.changeCountdownYellow(yellowNum)
}
/**
* 修改绿灯倒计时
*/
fun changeCountdownGreen(greenNum: Int) {
waringProviderApi?.changeCountdownGreen(greenNum)
waringProviderApi.changeCountdownGreen(greenNum)
}
/**
@@ -120,7 +128,7 @@ object CallerHmiManager : CallerBase() {
* @param greenNum 绿灯倒计时
*/
fun changeCountdownTrafficLightNum(readNum: Int, yellowNum: Int, greenNum: Int) {
waringProviderApi?.changeCountdownTrafficLightNum(readNum, yellowNum, greenNum)
waringProviderApi.changeCountdownTrafficLightNum(readNum, yellowNum, greenNum)
}
/**
@@ -129,14 +137,14 @@ object CallerHmiManager : CallerBase() {
* @param limitingSpeed 限速速度
*/
fun showLimitingVelocity(limitingSpeed: Int) {
waringProviderApi?.showLimitingVelocity(limitingSpeed)
waringProviderApi.showLimitingVelocity(limitingSpeed)
}
/**
* 关闭限速预警
*/
fun disableLimitingVelocity() {
waringProviderApi?.disableLimitingVelocity()
waringProviderApi.disableLimitingVelocity()
}
/**
@@ -145,7 +153,7 @@ object CallerHmiManager : CallerBase() {
* @see WarningDirectionEnum
*/
fun showWarning(direction: WarningDirectionEnum) {
waringProviderApi?.showWarning(direction)
waringProviderApi.showWarning(direction)
}
/**
@@ -155,7 +163,7 @@ object CallerHmiManager : CallerBase() {
* @param closeTime 倒计时
*/
fun showWarning(direction: WarningDirectionEnum, closeTime: Long) {
waringProviderApi?.showWarning(direction, closeTime)
waringProviderApi.showWarning(direction, closeTime)
}
/**
@@ -164,7 +172,7 @@ object CallerHmiManager : CallerBase() {
* @param trafficStylePushData
*/
fun showTrafficBanner(trafficStylePushData: NoticeTrafficStylePushData?) {
waringProviderApi?.showNoticeForTrafficWithData(trafficStylePushData)
waringProviderApi.showNoticeForTrafficWithData(trafficStylePushData)
}
/**
@@ -172,21 +180,21 @@ object CallerHmiManager : CallerBase() {
*
*/
fun showNoticeNormalData(noticeNormal: NoticeNormalData) {
waringProviderApi?.showNoticeNormalData(noticeNormal)
waringProviderApi.showNoticeNormalData(noticeNormal)
}
/**
* 展示VIP标识
*/
fun vipIdentification(visible: Boolean) {
waringProviderApi?.vipIdentification(visible)
waringProviderApi.vipIdentification(visible)
}
fun startRoadCameraLive(flvUrl: String) {
waringProviderApi?.startRoadCameraLive(flvUrl)
waringProviderApi.startRoadCameraLive(flvUrl)
}
fun showNoSignalView() {
waringProviderApi?.showNoSignView()
waringProviderApi.showNoSignView()
}
}

View File

@@ -0,0 +1,18 @@
/**
* Automatically generated file. DO NOT MODIFY
*/
package com.zhidao.mogo.module.main.launcher;
public final class BuildConfig {
public static final boolean DEBUG = Boolean.parseBoolean("true");
public static final String LIBRARY_PACKAGE_NAME = "com.zhidao.mogo.module.main.launcher";
/**
* @deprecated APPLICATION_ID is misleading in libraries. For the library package name use LIBRARY_PACKAGE_NAME
*/
@Deprecated
public static final String APPLICATION_ID = "com.zhidao.mogo.module.main.launcher";
public static final String BUILD_TYPE = "debug";
public static final String FLAVOR = "";
public static final int VERSION_CODE = 1;
public static final String VERSION_NAME = "2.0.67";
}

View File

@@ -0,0 +1,53 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.zhidao.mogo.module.main.launcher"
android:versionCode="1"
android:versionName="2.0.67" >
<uses-sdk
android:minSdkVersion="19"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<application>
<activity
android:name="com.zhidao.mogo.module.main.launcher.MainLauncherActivity"
android:clearTaskOnLaunch="true"
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|screenLayout|fontScale|uiMode|orientation|screenSize|smallestScreenSize"
android:enabled="true"
android:launchMode="singleTop"
android:resizeableActivity="false"
android:resumeWhilePausing="true"
android:screenOrientation="landscape"
android:stateNotNeeded="true"
android:theme="@style/Main"
android:windowSoftInputMode="adjustPan|stateHidden" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<!-- 调试用暂时开启LAUNCHER这个属性 -->
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.LAUNCHER_APP" />
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<data
android:host="launcher"
android:path="/main/switch2"
android:scheme="mogo" />
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>
</application>
</manifest>

View File

@@ -0,0 +1 @@
[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"2.0.67","enabled":true,"outputFile":"mogo-module-main-launcher-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.zhidao.mogo.module.main.launcher","split":""}}]

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/arrowem/Documents/androidProject/Launcher/core/mogo-core-function-call/src/main/jniLibs"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/arrowem/Documents/androidProject/Launcher/core/mogo-core-function-call/src/debug/jniLibs"/></dataSet></merger>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/arrowem/Documents/androidProject/Launcher/core/mogo-core-network/src/main/shaders"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/arrowem/Documents/androidProject/Launcher/core/mogo-core-network/src/debug/shaders"/></dataSet></merger>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/arrowem/Documents/androidProject/Launcher/core/mogo-core-data/src/main/assets"/><source path="/Users/arrowem/Documents/androidProject/Launcher/core/mogo-core-data/build/intermediates/shader_assets/debug/compileDebugShaders/out"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/arrowem/Documents/androidProject/Launcher/core/mogo-core-data/src/debug/assets"/></dataSet></merger>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="module_main_entrance_fragment_container_marginLeft_in_vr_mode">0px</dimen>
<dimen name="module_main_entrance_fragment_container_marginLeft_out_vr_mode">444px</dimen>
</resources>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="module_main_entrance_fragment_container_marginLeft_in_vr_mode">0px</dimen>
<dimen name="module_main_entrance_fragment_container_marginLeft_out_vr_mode">444px</dimen>
</resources>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="module_main_entrance_fragment_container_marginLeft_in_vr_mode">0px</dimen>
<dimen name="module_main_entrance_fragment_container_marginLeft_out_vr_mode">800px</dimen>
</resources>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="module_main_entrance_fragment_container_marginLeft_in_vr_mode">0px</dimen>
<dimen name="module_main_entrance_fragment_container_marginLeft_out_vr_mode">800px</dimen>
</resources>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/res"/><source path="/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/build/generated/res/rs/debug"/><source path="/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/build/generated/res/resValues/debug"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="main" generated-set="main$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/res"><file path="/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/res/values-xhdpi/dimens.xml" qualifiers="xhdpi-v4"><dimen name="module_main_entrance_fragment_container_marginLeft_in_vr_mode">0px</dimen><dimen name="module_main_entrance_fragment_container_marginLeft_out_vr_mode">800px</dimen></file><file path="/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/res/values/dimens.xml" qualifiers=""><dimen name="module_main_entrance_fragment_container_marginLeft_in_vr_mode">0px</dimen><dimen name="module_main_entrance_fragment_container_marginLeft_out_vr_mode">800px</dimen></file><file path="/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/res/values-ldpi/dimens.xml" qualifiers="ldpi-v4"><dimen name="module_main_entrance_fragment_container_marginLeft_in_vr_mode">0px</dimen><dimen name="module_main_entrance_fragment_container_marginLeft_out_vr_mode">444px</dimen></file><file path="/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/res/values-mdpi/dimens.xml" qualifiers="mdpi-v4"><dimen name="module_main_entrance_fragment_container_marginLeft_in_vr_mode">0px</dimen><dimen name="module_main_entrance_fragment_container_marginLeft_out_vr_mode">444px</dimen></file></source><source path="/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/build/generated/res/rs/debug"/><source path="/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/build/generated/res/resValues/debug"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug$Generated" generated="true" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/debug/res"/></dataSet><dataSet aapt-namespace="http://schemas.android.com/apk/res-auto" config="debug" generated-set="debug$Generated" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/debug/res"/></dataSet><mergedItems/></merger>

View File

@@ -0,0 +1,53 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.zhidao.mogo.module.main.launcher"
android:versionCode="1"
android:versionName="2.0.67" >
<uses-sdk
android:minSdkVersion="19"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<application>
<activity
android:name="com.zhidao.mogo.module.main.launcher.MainLauncherActivity"
android:clearTaskOnLaunch="true"
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|screenLayout|fontScale|uiMode|orientation|screenSize|smallestScreenSize"
android:enabled="true"
android:launchMode="singleTop"
android:resizeableActivity="false"
android:resumeWhilePausing="true"
android:screenOrientation="landscape"
android:stateNotNeeded="true"
android:theme="@style/Main"
android:windowSoftInputMode="adjustPan|stateHidden" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<!-- 调试用暂时开启LAUNCHER这个属性 -->
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.LAUNCHER_APP" />
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<data
android:host="launcher"
android:path="/main/switch2"
android:scheme="mogo" />
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>
</application>
</manifest>

View File

@@ -0,0 +1,4 @@
R_DEF: Internal format may change without notice
local
dimen module_main_entrance_fragment_container_marginLeft_in_vr_mode
dimen module_main_entrance_fragment_container_marginLeft_out_vr_mode

View File

@@ -0,0 +1,100 @@
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.zhidao.mogo.module.main.launcher"
4 android:versionCode="1"
5 android:versionName="2.0.67" >
6
7 <uses-sdk
8 android:minSdkVersion="19"
8-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml
9 android:targetSdkVersion="19" />
9-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml
10
11 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
11-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:4:5-79
11-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:4:22-77
12 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
12-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:5:5-80
12-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:5:22-78
13 <uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
13-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:6:5-88
13-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:6:22-86
14 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
14-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:7:5-78
14-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:7:22-76
15 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
15-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:8:5-78
15-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:8:22-75
16
17 <application>
17-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:10:5-41:19
18 <activity
18-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:11:9-40:20
19 android:name="com.zhidao.mogo.module.main.launcher.MainLauncherActivity"
19-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:12:13-49
20 android:clearTaskOnLaunch="true"
20-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:13:13-45
21 android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|screenLayout|fontScale|uiMode|orientation|screenSize|smallestScreenSize"
21-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:14:13-170
22 android:enabled="true"
22-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:15:13-35
23 android:launchMode="singleTop"
23-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:16:13-43
24 android:resizeableActivity="false"
24-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:17:13-47
25 android:resumeWhilePausing="true"
25-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:18:13-46
26 android:screenOrientation="landscape"
26-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:19:13-50
27 android:stateNotNeeded="true"
27-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:20:13-42
28 android:theme="@style/Main"
28-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:21:13-40
29 android:windowSoftInputMode="adjustPan|stateHidden" >
29-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:22:13-64
30 <intent-filter>
30-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:23:13-30:29
31 <action android:name="android.intent.action.MAIN" />
31-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:24:17-69
31-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:24:25-66
32 <!-- 调试用暂时开启LAUNCHER这个属性 -->
33 <category android:name="android.intent.category.LAUNCHER" />
33-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:26:17-77
33-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:26:27-74
34 <category android:name="android.intent.category.LAUNCHER_APP" />
34-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:27:17-81
34-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:27:27-78
35 <category android:name="android.intent.category.HOME" />
35-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:28:17-73
35-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:28:27-70
36 <category android:name="android.intent.category.DEFAULT" />
36-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:29:17-76
36-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:29:27-73
37 </intent-filter>
38 <intent-filter>
38-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:31:13-39:29
39 <data
39-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:32:17-35:45
40 android:host="launcher"
40-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:33:21-44
41 android:path="/main/switch2"
41-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:34:21-49
42 android:scheme="mogo" />
42-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:35:21-42
43
44 <category android:name="android.intent.category.DEFAULT" />
44-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:29:17-76
44-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:29:27-73
45
46 <action android:name="android.intent.action.VIEW" />
46-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:37:17-69
46-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:37:25-66
47
48 <category android:name="android.intent.category.BROWSABLE" />
48-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:38:17-78
48-->/Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:38:27-75
49 </intent-filter>
50 </activity>
51 </application>
52
53</manifest>

View File

@@ -0,0 +1 @@
[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"2.0.67","enabled":true,"outputFile":"mogo-module-main-launcher-debug.aar","fullName":"debug","baseName":"debug"},"path":"../../library_manifest/debug/AndroidManifest.xml","properties":{"packageId":"com.zhidao.mogo.module.main.launcher","split":""}}]

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="module_main_entrance_fragment_container_marginLeft_in_vr_mode">0px</dimen>
<dimen name="module_main_entrance_fragment_container_marginLeft_out_vr_mode">444px</dimen>
</resources>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="module_main_entrance_fragment_container_marginLeft_in_vr_mode">0px</dimen>
<dimen name="module_main_entrance_fragment_container_marginLeft_out_vr_mode">444px</dimen>
</resources>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="module_main_entrance_fragment_container_marginLeft_in_vr_mode">0px</dimen>
<dimen name="module_main_entrance_fragment_container_marginLeft_out_vr_mode">800px</dimen>
</resources>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="module_main_entrance_fragment_container_marginLeft_in_vr_mode">0px</dimen>
<dimen name="module_main_entrance_fragment_container_marginLeft_out_vr_mode">800px</dimen>
</resources>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,123 @@
-- Merging decision tree log ---
manifest
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:1:1-42:12
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:1:1-42:12
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:1:1-42:12
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:1:1-42:12
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:1:1-42:12
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:1:1-42:12
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:1:1-42:12
package
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:2:5-51
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml
android:versionName
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:1:1-42:12
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml
android:versionCode
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:1:1-42:12
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml
xmlns:android
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:1:11-69
uses-permission#android.permission.READ_EXTERNAL_STORAGE
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:4:5-79
android:name
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:4:22-77
uses-permission#android.permission.WRITE_EXTERNAL_STORAGE
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:5:5-80
android:name
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:5:22-78
uses-permission#android.permission.ACCESS_LOCATION_EXTRA_COMMANDS
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:6:5-88
android:name
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:6:22-86
uses-permission#android.permission.ACCESS_FINE_LOCATION
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:7:5-78
android:name
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:7:22-76
uses-permission#android.permission.SYSTEM_ALERT_WINDOW
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:8:5-78
android:name
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:8:22-75
application
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:10:5-41:19
activity#com.zhidao.mogo.module.main.launcher.MainLauncherActivity
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:11:9-40:20
android:screenOrientation
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:19:13-50
android:enabled
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:15:13-35
android:clearTaskOnLaunch
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:13:13-45
android:stateNotNeeded
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:20:13-42
android:launchMode
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:16:13-43
android:windowSoftInputMode
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:22:13-64
android:resizeableActivity
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:17:13-47
android:resumeWhilePausing
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:18:13-46
android:configChanges
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:14:13-170
android:theme
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:21:13-40
android:name
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:12:13-49
intent-filter#action:name:android.intent.action.MAIN+category:name:android.intent.category.DEFAULT+category:name:android.intent.category.HOME+category:name:android.intent.category.LAUNCHER+category:name:android.intent.category.LAUNCHER_APP
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:23:13-30:29
action#android.intent.action.MAIN
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:24:17-69
android:name
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:24:25-66
category#android.intent.category.LAUNCHER
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:26:17-77
android:name
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:26:27-74
category#android.intent.category.LAUNCHER_APP
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:27:17-81
android:name
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:27:27-78
category#android.intent.category.HOME
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:28:17-73
android:name
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:28:27-70
category#android.intent.category.DEFAULT
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:29:17-76
android:name
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:29:27-73
intent-filter#action:name:android.intent.action.VIEW+category:name:android.intent.category.BROWSABLE+category:name:android.intent.category.DEFAULT+data:host:launcher+data:path:/main/switch2+data:scheme:mogo
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:31:13-39:29
data
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:32:17-35:45
android:path
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:34:21-49
android:host
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:33:21-44
android:scheme
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:35:21-42
action#android.intent.action.VIEW
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:37:17-69
android:name
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:37:25-66
category#android.intent.category.BROWSABLE
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:38:17-78
android:name
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml:38:27-75
uses-sdk
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml reason: use-sdk injection requested
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml
android:targetSdkVersion
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml
android:minSdkVersion
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml
ADDED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml
INJECTED from /Users/arrowem/Documents/androidProject/Launcher/main-extensions/mogo-module-main-launcher/src/main/AndroidManifest.xml

View File

@@ -16,7 +16,7 @@ object IMVoiceClient {
private var intentRegister: IMogoIntentManager? = null
private const val REQUEST_VOICE_CALL = "主人,有新的小伙伴找你聊天啦,你要接听吗?你可以说“接听”开启通话。或者说“挂断”结束通话"
private const val REQUEST_CLOUD_VOICE_CALL = "您有来自管理平台的语音电话,请接听!"
private const val REQUEST_CLOUD_VOICE_CALL = "云平台请求跟你进行语音通话"
private val requestCallYArray: Array<String> = arrayOf("接听")
private val requestCallNArray: Array<String> = arrayOf("挂断")