diff --git a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.kt b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.kt index 6b2c12162b..656785efe3 100644 --- a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.kt +++ b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/DevaToolsProvider.kt @@ -4,58 +4,27 @@ import android.annotation.SuppressLint import android.content.Context import android.view.View import com.alibaba.android.arouter.facade.annotation.Route -import com.mogo.cloud.passport.MoGoAiCloudClientConfig import com.mogo.eagle.core.data.autopilot.AutoPilotRecordResult -import com.mogo.eagle.core.data.chain.ChainConstant.Companion.CHAIN_LINK_LOG_ADAS_INIT -import com.mogo.eagle.core.data.chain.ChainConstant.Companion.CHAIN_LINK_LOG_ADAS_MSG -import com.mogo.eagle.core.data.chain.ChainConstant.Companion.CHAIN_LINK_LOG_CONNECT_STATUS -import com.mogo.eagle.core.data.chain.ChainConstant.Companion.CHAIN_LINK_LOG_WEB_SOCKET_DATA import com.mogo.eagle.core.data.chain.ChainLogParam -import com.mogo.eagle.core.data.constants.MoGoConfig import com.mogo.eagle.core.data.constants.MogoServicePaths import com.mogo.eagle.core.function.api.devatools.IDevaToolsProvider -import com.mogo.eagle.core.utilcode.mogo.logger.Logger -import com.mogo.eagle.core.utilcode.mogo.storage.SharedPrefsMgr -import com.mogo.eagle.core.utilcode.util.DeviceUtils -import com.mogo.eagle.core.utilcode.util.Utils -import com.zhidao.loglib.fw.FileWriteManager -import com.zhidao.loglib.fw.FwBuild import com.zhjt.mogo_core_function_devatools.badcase.BadCaseManager import com.zhjt.mogo_core_function_devatools.logcatch.MogoLogCatchManager -import com.zhjt.service.chain.core.ChainTraceStarter +import com.zhjt.mogo_core_function_devatools.trace.TraceManager.Companion.traceManager @Route(path = MogoServicePaths.PATH_DEVA_TOOLS) class DevaToolsProvider : IDevaToolsProvider { - private val traceInfoCache = hashMapOf() - private val fwBuildMap: MutableMap = HashMap() + companion object { + const val MODULE_NAME = "DevaTools" + } override val functionName: String get() = "DevaToolsProvider" override fun init(context: Context) { - initTrace(context) + traceManager.init(context) MogoLogCatchManager.init(context) - logCheck(context) - } - - private fun logCheck(context: Context) { - val logger = SharedPrefsMgr.getInstance(context).getBoolean(MoGoConfig.CATCH_LOG, false) - val loggerTime = SharedPrefsMgr.getInstance(context).getLong(MoGoConfig.CATCH_LOG_TIME, 0) - val logCatchDuration = (System.currentTimeMillis() - loggerTime) / 1000 / 60 - if (logger && loggerTime > 0) { - val logTime: Int = if (10 - logCatchDuration < 1) { - 1 - } else { - 10 - logCatchDuration.toInt() - } - MogoLogCatchManager.startCatchLog(logTime) - } else { - Logger.d( - functionName, - "logCheck logger : $logger , logCatchDuration : $logCatchDuration" - ) - } } override fun startLogCatch() { @@ -70,37 +39,13 @@ class DevaToolsProvider : IDevaToolsProvider { MogoLogCatchManager.stopCatchLog() } - private fun initTrace(context: Context) { - // 初始化Trace抓取服务 - val pkgName = Utils.getApp().packageName - ChainTraceStarter.start(pkgName, DeviceUtils.getMacAddress(), false) - - // Trace过程中进行日志抓取,对日志进行配置 - fwBuildMap[CHAIN_LINK_LOG_CONNECT_STATUS] = - FwBuild(true, pkgName + CHAIN_LINK_LOG_ADAS_INIT, 5_000) - fwBuildMap[CHAIN_LINK_LOG_WEB_SOCKET_DATA] = - FwBuild(false, pkgName + CHAIN_LINK_LOG_ADAS_MSG, 500) - - traceInfoCache[CHAIN_LINK_LOG_CONNECT_STATUS] = ChainLogParam(true, "ADAS连接状态") - traceInfoCache[CHAIN_LINK_LOG_WEB_SOCKET_DATA] = ChainLogParam(false, "ADAS长链数据") - FileWriteManager.getInstance() - .init(context, MoGoAiCloudClientConfig.getInstance().sn, pkgName, fwBuildMap) - } - override fun getTraceInfo(): HashMap { - return traceInfoCache + return traceManager.getTraceInfo() } @SuppressLint("NewApi") override fun refreshTraceInfo(map: HashMap) { - map.forEach { (type, param) -> - val fwBuild = this.fwBuildMap[type] - fwBuild?.let { - Logger.d(functionName, "param : ${param.des} , record : ${param.record}") - it.isRecord = param.record - } - } - FileWriteManager.getInstance().operateChainMap(fwBuildMap) + traceManager.refreshTraceInfo(map) } override fun initBadCase(view: View, onShow: (() -> Unit)?, onHide: (() -> Unit)?) { diff --git a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.kt b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.kt index 8fe746db86..15ab61fa47 100644 --- a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.kt +++ b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/logcatch/MogoLogCatchManager.kt @@ -8,6 +8,7 @@ import com.mogo.cloud.passport.MoGoAiCloudClient import com.mogo.cloud.passport.MoGoAiCloudClientConfig import com.mogo.commons.AbsMogoApplication import com.mogo.commons.debug.DebugConfig +import com.mogo.eagle.core.data.app.AppConfigInfo import com.mogo.eagle.core.data.constants.MoGoConfig import com.mogo.eagle.core.function.call.autopilot.CallerAutoPilotManager import com.mogo.eagle.core.function.call.devatools.CallerDevaToolsListenerManager @@ -50,6 +51,26 @@ object MogoLogCatchManager : IMogoOnMessageListener, Handl .getSocketManagerApi(AbsMogoApplication.getApp().applicationContext) .registerOnMessageListener(LOG_PUSH_TYPE, this) manualContent.pkgName = context.packageName + logCheck(context) + } + + private fun logCheck(context: Context) { + val logger = SharedPrefsMgr.getInstance(context).getBoolean(MoGoConfig.CATCH_LOG, false) + val loggerTime = SharedPrefsMgr.getInstance(context).getLong(MoGoConfig.CATCH_LOG_TIME, 0) + val logCatchDuration = (System.currentTimeMillis() - loggerTime) / 1000 / 60 + if (logger && loggerTime > 0) { + val logTime: Int = if (10 - logCatchDuration < 1) { + 1 + } else { + 10 - logCatchDuration.toInt() + } + startCatchLog(logTime) + } else { + Logger.d( + TAG, + "logCheck logger : $logger , logCatchDuration : $logCatchDuration" + ) + } } override fun target(): Class { @@ -113,6 +134,7 @@ object MogoLogCatchManager : IMogoOnMessageListener, Handl logInfoManager = LogInfoManagerFactory.createPushLogInfoManager( mContext, MoGoAiCloudClientConfig.getInstance().sn, + AppConfigInfo.toString(), content, this ) diff --git a/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/trace/TraceManager.kt b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/trace/TraceManager.kt new file mode 100644 index 0000000000..eb0dd7ef8c --- /dev/null +++ b/core/function-impl/mogo-core-function-devatools/src/main/java/com/zhjt/mogo_core_function_devatools/trace/TraceManager.kt @@ -0,0 +1,60 @@ +package com.zhjt.mogo_core_function_devatools.trace + +import android.content.Context +import com.mogo.cloud.passport.MoGoAiCloudClientConfig +import com.mogo.eagle.core.data.chain.ChainConstant +import com.mogo.eagle.core.data.chain.ChainLogParam +import com.mogo.eagle.core.utilcode.mogo.logger.Logger +import com.mogo.eagle.core.utilcode.util.DeviceUtils +import com.mogo.eagle.core.utilcode.util.Utils +import com.zhidao.loglib.fw.FileWriteManager +import com.zhidao.loglib.fw.FwBuild +import com.zhjt.mogo_core_function_devatools.DevaToolsProvider.Companion.MODULE_NAME +import com.zhjt.service.chain.core.ChainTraceStarter + +class TraceManager { + + private val traceInfoCache = hashMapOf() + private val fwBuildMap: MutableMap = HashMap() + + companion object { + + val traceManager by lazy(LazyThreadSafetyMode.SYNCHRONIZED) { + TraceManager() + } + } + + fun init(context: Context) { + // 初始化Trace抓取服务 + val pkgName = Utils.getApp().packageName + ChainTraceStarter.start(pkgName, DeviceUtils.getMacAddress(), false) + + // Trace过程中进行日志抓取,对日志进行配置 + fwBuildMap[ChainConstant.CHAIN_LINK_LOG_CONNECT_STATUS] = + FwBuild(true, pkgName + ChainConstant.CHAIN_LINK_LOG_ADAS_INIT, 5_000) + fwBuildMap[ChainConstant.CHAIN_LINK_LOG_WEB_SOCKET_DATA] = + FwBuild(false, pkgName + ChainConstant.CHAIN_LINK_LOG_ADAS_MSG, 500) + + traceInfoCache[ChainConstant.CHAIN_LINK_LOG_CONNECT_STATUS] = + ChainLogParam(true, "ADAS连接状态") + traceInfoCache[ChainConstant.CHAIN_LINK_LOG_WEB_SOCKET_DATA] = + ChainLogParam(false, "ADAS长链数据") + FileWriteManager.getInstance() + .init(context, MoGoAiCloudClientConfig.getInstance().sn, pkgName, fwBuildMap) + } + + fun getTraceInfo(): HashMap { + return traceInfoCache + } + + fun refreshTraceInfo(map: HashMap) { + map.forEach { (type, param) -> + val fwBuild = this.fwBuildMap[type] + fwBuild?.let { + Logger.d(MODULE_NAME, "param : ${param.des} , record : ${param.record}") + it.isRecord = param.record + } + } + FileWriteManager.getInstance().operateChainMap(fwBuildMap) + } +} \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_launcher_background.xml b/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_launcher_background.xml new file mode 100644 index 0000000000..07d5da9cbf --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png b/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png new file mode 100644 index 0000000000..c134a4e58d Binary files /dev/null and b/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png differ diff --git a/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png b/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png new file mode 100644 index 0000000000..3cae2c038f Binary files /dev/null and b/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png differ diff --git a/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png b/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png new file mode 100644 index 0000000000..148792263e Binary files /dev/null and b/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png differ diff --git a/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png b/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png new file mode 100644 index 0000000000..2f3c319e1a Binary files /dev/null and b/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png differ diff --git a/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png b/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png new file mode 100644 index 0000000000..5387f3b95b Binary files /dev/null and b/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png differ diff --git a/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png b/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png new file mode 100644 index 0000000000..4f03cd5a1e Binary files /dev/null and b/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png differ diff --git a/core/function-impl/mogo-core-function-dispatch/build/generated/source/buildConfig/debug/com/zhjt/dispatch/BuildConfig.java b/core/function-impl/mogo-core-function-dispatch/build/generated/source/buildConfig/debug/com/zhjt/dispatch/BuildConfig.java new file mode 100644 index 0000000000..5180d06d58 --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/generated/source/buildConfig/debug/com/zhjt/dispatch/BuildConfig.java @@ -0,0 +1,18 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package com.zhjt.dispatch; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String LIBRARY_PACKAGE_NAME = "com.zhjt.dispatch"; + /** + * @deprecated APPLICATION_ID is misleading in libraries. For the library package name use LIBRARY_PACKAGE_NAME + */ + @Deprecated + public static final String APPLICATION_ID = "com.zhjt.dispatch"; + 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 = ""; +} diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml new file mode 100644 index 0000000000..2108d400f5 --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json b/core/function-impl/mogo-core-function-dispatch/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json new file mode 100644 index 0000000000..5516db9208 --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"","enabled":true,"outputFile":"mogo-core-function-dispatch-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.zhjt.dispatch","split":""}}] \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar b/core/function-impl/mogo-core-function-dispatch/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar new file mode 100644 index 0000000000..1ca3b39ff4 Binary files /dev/null and b/core/function-impl/mogo-core-function-dispatch/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar differ diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml new file mode 100644 index 0000000000..6c7152515d --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/mergeDebugShaders/merger.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000000..9799d0c38e --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/packageDebugAssets/merger.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/packageDebugAssets/merger.xml new file mode 100644 index 0000000000..e92017a03f --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/packageDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/packageDebugResources/compile-file-map.properties new file mode 100644 index 0000000000..4c4befb964 --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/packageDebugResources/compile-file-map.properties @@ -0,0 +1,18 @@ +#Wed Mar 09 14:31:24 CST 2022 +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/res/layout/module_dialog_adas_dispatch_airport.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/layout/module_dialog_adas_dispatch_airport.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/res/drawable/bg_adas_dispatch_affirm.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/bg_adas_dispatch_affirm.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/res/drawable/module_service_left_corner_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_left_corner_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/res/drawable/module_service_dispatch_cars_affirm_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_dispatch_cars_affirm_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-hdpi-v4/ic_launcher_background.png +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_launcher_background.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-anydpi-v21/ic_launcher_background.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/ic_launcher_background.png +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/ic_launcher_background.png +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/res/drawable/module_service_right_corner_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_right_corner_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_launcher_background.png +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/res/drawable/module_service_dispatch_cars_cancel_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_dispatch_cars_cancel_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/res/drawable/module_service_dispatch_cars_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_dispatch_cars_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_launcher_background.png +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/res/layout/module_dialog_adas_dispatch_cars.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/layout/module_dialog_adas_dispatch_cars.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/res/drawable/module_service_dispatch_timer_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_dispatch_timer_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_launcher_background.png +/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/res/drawable/bg_adas_dispatch.xml=/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/bg_adas_dispatch.xml diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/packageDebugResources/merged.dir/values-xhdpi-2560x1600-v4/values-xhdpi-2560x1600-v4.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/packageDebugResources/merged.dir/values-xhdpi-2560x1600-v4/values-xhdpi-2560x1600-v4.xml new file mode 100644 index 0000000000..870bbc3545 --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/packageDebugResources/merged.dir/values-xhdpi-2560x1600-v4/values-xhdpi-2560x1600-v4.xml @@ -0,0 +1,37 @@ + + + 70px + 140px + 700px + 32px + 484px + 415px + 100px + 1173px + 852px + 80px + 86px + 38px + 288px + 219px + 690px + 42px + 621px + 55px + 48px + 1263px + 474px + 179px + 38px + 32px + 540px + 152px + 251px + 54px + 20px + 46px + 24px + 55px + 48px + 950px + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/packageDebugResources/merged.dir/values-xhdpi-v4/values-xhdpi-v4.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/packageDebugResources/merged.dir/values-xhdpi-v4/values-xhdpi-v4.xml new file mode 100644 index 0000000000..656e62203c --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/packageDebugResources/merged.dir/values-xhdpi-v4/values-xhdpi-v4.xml @@ -0,0 +1,37 @@ + + + 52px + 105px + 525px + 24px + 363px + 311px + 125px + 880px + 639px + 60px + 100px + 28px + 216px + 164px + 519px + 30px + 466px + 41px + 36px + 947px + 355px + 134px + 28px + 24px + 405px + 114px + 188px + 40px + 15px + 35px + 18px + 41px + 36px + 712px + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml new file mode 100644 index 0000000000..bab592e9ff --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml @@ -0,0 +1,57 @@ + + + #3E7BFE + #E63B4577 + #E63B4577 + #AFB3C7 + #4D000000 + #8E9DD4 + #66B8BFE8 + #1F9BFE + #E63B4577 + 70px + 140px + 700px + 32px + 484px + 415px + 100px + 1173px + 852px + 80px + 86px + 38px + 288px + 219px + 690px + 42px + 621px + 55px + 48px + 1263px + 474.5px + 179px + 38px + 32px + 540px + 152px + 251px + 54px + 20px + 46px + 24px + 55px + 48px + 950px + 确认 + 取消 + 车辆将开启自动驾驶,并行驶至: + 调度确认 + 接受任务 + 结束地点: + 航班信息: + 开始地点: + 任务内容: + 任务时间: + 您有新的工作任务 + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/packageDebugResources/merger.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/packageDebugResources/merger.xml new file mode 100644 index 0000000000..f3fc044a81 --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/incremental/packageDebugResources/merger.xml @@ -0,0 +1,2 @@ + +947px880px24px28px36px30px41px164px216px311px363px466px519px125px639px100px60px525px105px52px712px405px24px36px41px28px134px40px188px114px355px15px35px18px1263px1173px32px38px48px42px55px219px288px415px484px621px690px100px852px86px80px700px140px70px950px540px32px48px55px38px179px54px251px152px474px20px46px24px#E63B4577#3E7BFE#1F9BFE#E63B4577#8E9DD4#4D000000#66B8BFE8#AFB3C7#E63B45771263px1173px32px38px48px42px55px219px288px415px484px621px690px100px852px86px80px700px140px70px950px540px32px48px55px38px179px54px251px152px474.5px20px46px24px您有新的工作任务开始地点:结束地点:任务时间:任务内容:航班信息:接受任务调度确认车辆将开启自动驾驶,并行驶至:确认取消 \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/library_manifest/debug/AndroidManifest.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/library_manifest/debug/AndroidManifest.xml new file mode 100644 index 0000000000..2108d400f5 --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/library_manifest/debug/AndroidManifest.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt b/core/function-impl/mogo-core-function-dispatch/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt new file mode 100644 index 0000000000..cf56c25ef9 --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt @@ -0,0 +1,78 @@ +R_DEF: Internal format may change without notice +local +color module_services_dispatch_affirm_bg +color module_services_dispatch_bg +color module_services_dispatch_cars_background +color module_services_dispatch_cars_cancel +color module_services_dispatch_cars_count_down_bg +color module_services_dispatch_cars_count_down_txt +color module_services_dispatch_cars_line +color module_services_dispatch_cars_text_loc +color module_services_remind_background +dimen module_services_dispatch_airport_dialog_affirm_corner +dimen module_services_dispatch_airport_dialog_affirm_height +dimen module_services_dispatch_airport_dialog_affirm_width +dimen module_services_dispatch_airport_dialog_corner +dimen module_services_dispatch_airport_dialog_endloc_content_margin_top +dimen module_services_dispatch_airport_dialog_endloc_margin_top +dimen module_services_dispatch_airport_dialog_first_column_margin_left +dimen module_services_dispatch_airport_dialog_height +dimen module_services_dispatch_airport_dialog_last_column_margin_left +dimen module_services_dispatch_airport_dialog_margin_bottom +dimen module_services_dispatch_airport_dialog_margin_top +dimen module_services_dispatch_airport_dialog_next_level_title_size +dimen module_services_dispatch_airport_dialog_startloc_content_margin_top +dimen module_services_dispatch_airport_dialog_startloc_margin_top +dimen module_services_dispatch_airport_dialog_task_content_margin_top +dimen module_services_dispatch_airport_dialog_task_content_size +dimen module_services_dispatch_airport_dialog_task_margin_top +dimen module_services_dispatch_airport_dialog_title_margin_top +dimen module_services_dispatch_airport_dialog_title_size +dimen module_services_dispatch_airport_dialog_width +dimen module_services_dispatch_cars_dialog_btn_width +dimen module_services_dispatch_cars_dialog_content_margin_top +dimen module_services_dispatch_cars_dialog_content_size +dimen module_services_dispatch_cars_dialog_corner +dimen module_services_dispatch_cars_dialog_height +dimen module_services_dispatch_cars_dialog_line_margin_bottom +dimen module_services_dispatch_cars_dialog_loc_margin_top +dimen module_services_dispatch_cars_dialog_loc_size +dimen module_services_dispatch_cars_dialog_timer_margin +dimen module_services_dispatch_cars_dialog_timer_size +dimen module_services_dispatch_cars_dialog_timer_txt_size +dimen module_services_dispatch_cars_dialog_title_margin_top +dimen module_services_dispatch_cars_dialog_title_size +dimen module_services_dispatch_cars_dialog_width +drawable bg_adas_dispatch +drawable bg_adas_dispatch_affirm +drawable ic_launcher_background +drawable module_service_dispatch_cars_affirm_bg +drawable module_service_dispatch_cars_bg +drawable module_service_dispatch_cars_cancel_bg +drawable module_service_dispatch_timer_bg +drawable module_service_left_corner_bg +drawable module_service_right_corner_bg +id module_adas_dispatch_remind_affirm +id module_adas_dispatch_remind_cancel +id module_adas_dispatch_remind_loc +id module_adas_dispatch_remind_timer +id module_services_dispatch_dialog_confirm +id module_services_dispatch_dialog_end_content +id module_services_dispatch_dialog_flight_time +id module_services_dispatch_dialog_start_content +id module_services_dispatch_dialog_task_content +id module_services_dispatch_dialog_task_time +id module_services_dispatch_dialog_title +layout module_dialog_adas_dispatch_airport +layout module_dialog_adas_dispatch_cars +string module_services_dispatch_cars_affirm +string module_services_dispatch_cars_cancel +string module_services_dispatch_cars_remind_content +string module_services_dispatch_cars_remind_title +string module_services_dispatch_dialog_affirm +string module_services_dispatch_dialog_end_loc +string module_services_dispatch_dialog_flight_info +string module_services_dispatch_dialog_start_loc +string module_services_dispatch_dialog_task_info +string module_services_dispatch_dialog_task_time +string module_services_dispatch_dialog_title diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/core/function-impl/mogo-core-function-dispatch/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt new file mode 100644 index 0000000000..e1b1aaba9d --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt @@ -0,0 +1,30 @@ +1 +2 +5 +6 /Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/AndroidManifest.xml +8 android:targetSdkVersion="19" /> +8-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/AndroidManifest.xml +9 +10 +10-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/AndroidManifest.xml:5:5-14:19 +11 +11-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/AndroidManifest.xml:7:9-12:20 +11-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/AndroidManifest.xml:7:19-69 +12 +12-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/AndroidManifest.xml:8:13-11:29 +13 +13-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/AndroidManifest.xml:9:17-74 +13-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/AndroidManifest.xml:9:25-71 +14 +15 +15-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/AndroidManifest.xml:10:17-76 +15-->/Users/arrowem/Documents/androidProject/Launcher/core/function-impl/mogo-core-function-dispatch/src/main/AndroidManifest.xml:10:27-73 +16 +17 +18 +19 +20 diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/merged_manifests/debug/output.json b/core/function-impl/mogo-core-function-dispatch/build/intermediates/merged_manifests/debug/output.json new file mode 100644 index 0000000000..0e692ec4cb --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"","enabled":true,"outputFile":"mogo-core-function-dispatch-debug.aar","fullName":"debug","baseName":"debug"},"path":"../../library_manifest/debug/AndroidManifest.xml","properties":{"packageId":"com.zhjt.dispatch","split":""}}] \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-anydpi-v21/ic_launcher_background.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-anydpi-v21/ic_launcher_background.xml new file mode 100644 index 0000000000..07d5da9cbf --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-anydpi-v21/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-hdpi-v4/ic_launcher_background.png b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-hdpi-v4/ic_launcher_background.png new file mode 100644 index 0000000000..c134a4e58d Binary files /dev/null and b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-hdpi-v4/ic_launcher_background.png differ diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_launcher_background.png b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_launcher_background.png new file mode 100644 index 0000000000..3cae2c038f Binary files /dev/null and b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_launcher_background.png differ diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_launcher_background.png b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_launcher_background.png new file mode 100644 index 0000000000..148792263e Binary files /dev/null and b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_launcher_background.png differ diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_launcher_background.png b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_launcher_background.png new file mode 100644 index 0000000000..2f3c319e1a Binary files /dev/null and b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_launcher_background.png differ diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/ic_launcher_background.png b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/ic_launcher_background.png new file mode 100644 index 0000000000..5387f3b95b Binary files /dev/null and b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-xxhdpi-v4/ic_launcher_background.png differ diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/ic_launcher_background.png b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/ic_launcher_background.png new file mode 100644 index 0000000000..4f03cd5a1e Binary files /dev/null and b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable-xxxhdpi-v4/ic_launcher_background.png differ diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/bg_adas_dispatch.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/bg_adas_dispatch.xml new file mode 100644 index 0000000000..1781514789 --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/bg_adas_dispatch.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/bg_adas_dispatch_affirm.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/bg_adas_dispatch_affirm.xml new file mode 100644 index 0000000000..160767303d --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/bg_adas_dispatch_affirm.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_dispatch_cars_affirm_bg.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_dispatch_cars_affirm_bg.xml new file mode 100644 index 0000000000..0a9df1117c --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_dispatch_cars_affirm_bg.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_dispatch_cars_bg.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_dispatch_cars_bg.xml new file mode 100644 index 0000000000..87a35b676b --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_dispatch_cars_bg.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_dispatch_cars_cancel_bg.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_dispatch_cars_cancel_bg.xml new file mode 100644 index 0000000000..c085e40ea4 --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_dispatch_cars_cancel_bg.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_dispatch_timer_bg.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_dispatch_timer_bg.xml new file mode 100644 index 0000000000..392cf1517e --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_dispatch_timer_bg.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_left_corner_bg.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_left_corner_bg.xml new file mode 100644 index 0000000000..0a45157a77 --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_left_corner_bg.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_right_corner_bg.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_right_corner_bg.xml new file mode 100644 index 0000000000..8740ce4329 --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/drawable/module_service_right_corner_bg.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/layout/module_dialog_adas_dispatch_airport.xml b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/layout/module_dialog_adas_dispatch_airport.xml new file mode 100644 index 0000000000..8780d79864 --- /dev/null +++ b/core/function-impl/mogo-core-function-dispatch/build/intermediates/packaged_res/debug/layout/module_dialog_adas_dispatch_airport.xml @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + +