Merge branch 'qa_d82x'

1+16已封版发布

# Conflicts:
#	app/build.gradle
#	app/src/main/java/com/mogo/launcher/MogoApplication.java
#	gradle.properties
#	modules/mogo-module-main/src/main/java/com/mogo/module/main/MainActivity.java
#	modules/mogo-module-search/src/main/res/values/dimens.xml
This commit is contained in:
tongchenfei
2020-07-29 14:42:13 +08:00
463 changed files with 8661 additions and 473 deletions

5
.idea/gradle.xml generated
View File

@@ -28,14 +28,19 @@
<option value="$PROJECT_DIR$/modules/mogo-module-authorize" />
<option value="$PROJECT_DIR$/modules/mogo-module-back" />
<option value="$PROJECT_DIR$/modules/mogo-module-common" />
<option value="$PROJECT_DIR$/modules/mogo-module-event-panel" />
<option value="$PROJECT_DIR$/modules/mogo-module-event-panel-noop" />
<option value="$PROJECT_DIR$/modules/mogo-module-extensions" />
<option value="$PROJECT_DIR$/modules/mogo-module-gps-simulator" />
<option value="$PROJECT_DIR$/modules/mogo-module-gps-simulator-debug" />
<option value="$PROJECT_DIR$/modules/mogo-module-gps-simulator-noop" />
<option value="$PROJECT_DIR$/modules/mogo-module-guide" />
<option value="$PROJECT_DIR$/modules/mogo-module-left-panel" />
<option value="$PROJECT_DIR$/modules/mogo-module-left-panel-noop" />
<option value="$PROJECT_DIR$/modules/mogo-module-main" />
<option value="$PROJECT_DIR$/modules/mogo-module-map" />
<option value="$PROJECT_DIR$/modules/mogo-module-media" />
<option value="$PROJECT_DIR$/modules/mogo-module-obu" />
<option value="$PROJECT_DIR$/modules/mogo-module-search" />
<option value="$PROJECT_DIR$/modules/mogo-module-service" />
<option value="$PROJECT_DIR$/modules/mogo-module-share" />

View File

@@ -114,6 +114,13 @@ android {
buildConfigField 'int', 'AIType','1'
buildConfigField 'boolean', 'AI_ASSIST_ACTIVE_STAUTS', 'true'
}
// d系列 1+16 版本
d82x{
dimension "product"
// 使用同行者语音
buildConfigField 'int', 'AIType','1'
buildConfigField 'boolean', 'AI_ASSIST_ACTIVE_STAUTS', 'true'
}
qa {
dimension "env"
buildConfigField 'int', 'NET_ENV', '2'
@@ -189,8 +196,6 @@ dependencies {
implementation rootProject.ext.dependencies.carcallprovider
implementation rootProject.ext.dependencies.carcall
implementation rootProject.ext.dependencies.guideshowprovider
implementation rootProject.ext.dependencies.guideshow
implementation rootProject.ext.dependencies.moduleV2x
implementation rootProject.ext.dependencies.moduletanlu, {
@@ -213,6 +218,16 @@ dependencies {
releaseImplementation rootProject.ext.dependencies.gpssimulatornoop
implementation rootProject.ext.dependencies.modulemedia
implementation rootProject.ext.dependencies.moduleservice
// 事件面板分渠道引用
d82xImplementation rootProject.ext.dependencies.moduleventpanelnoop
d8xxImplementation rootProject.ext.dependencies.moduleventpanel
e8xxImplementation rootProject.ext.dependencies.moduleventpanel
f8xxImplementation rootProject.ext.dependencies.moduleventpanel
// 左侧面板分渠道引用
d82xImplementation rootProject.ext.dependencies.moduleleftpanel
d8xxImplementation rootProject.ext.dependencies.moduleleftpanelnoop
e8xxImplementation rootProject.ext.dependencies.moduleleftpanelnoop
f8xxImplementation rootProject.ext.dependencies.moduleleftpanelnoop
} else {
launcherImplementation project(':main-extensions:mogo-module-main-launcher')
// launcherImplementation project(':modules:mogo-module-main')
@@ -226,6 +241,16 @@ dependencies {
releaseImplementation project(':modules:mogo-module-gps-simulator-noop')
implementation project(':modules:mogo-module-media')
implementation project(':modules:mogo-module-service')
// 事件面板分渠道引用
d82xImplementation project(':modules:mogo-module-event-panel-noop')
d8xxImplementation project(':modules:mogo-module-event-panel')
e8xxImplementation project(':modules:mogo-module-event-panel')
f8xxImplementation project(':modules:mogo-module-event-panel')
// 左侧面板分渠道引用
d82xImplementation project(':modules:mogo-module-left-panel')
d8xxImplementation project(':modules:mogo-module-left-panel-noop')
e8xxImplementation project(':modules:mogo-module-left-panel-noop')
f8xxImplementation project(':modules:mogo-module-left-panel-noop')
}
}

View File

@@ -24,6 +24,8 @@ import com.mogo.service.connection.IMogoSocketManager;
import com.mogo.utils.logger.LogLevel;
import com.mogo.utils.logger.Logger;
import com.zhidao.boot.persistent.lib.PersistentManager;
import com.zhidao.mogo.module.event.panel.EventPanelConstants;
import com.zhidao.mogo.module.left.panel.LeftPanelConst;
/**
* @author congtaowang
@@ -58,8 +60,13 @@ public class MogoApplication extends AbsMogoApplication {
MogoModulePaths.addModule(new MogoModule(TanluConstants.TAG, TanluConstants.MODEL_NAME));
MogoModulePaths.addModule(new MogoModule(MogoServicePaths.PATH_SHARE, "ShareControl"));
MogoModulePaths.addBaseModule(new MogoModule(ServiceConst.PATH_REFRESH_STRATEGY, ServiceConst.PATH_REFRESH_STRATEGY));
MogoModulePaths.addBaseModule(new MogoModule(V2XConst.PATH_V2X_UI, V2XConst.PATH_V2X_UI));
MogoModulePaths.addModule(new MogoModule(EventPanelConstants.PATH_NAME,
EventPanelConstants.MODULE_NAME));
MogoModulePaths.addModule(new MogoModule(LeftPanelConst.PATH_NAME,
LeftPanelConst.MODULE_NAME));
MogoModulePaths.addBaseModule( new MogoModule( ServiceConst.PATH_REFRESH_STRATEGY, ServiceConst.PATH_REFRESH_STRATEGY ) );
MogoModulePaths.addBaseModule( new MogoModule( V2XConst.PATH_V2X_UI, V2XConst.PATH_V2X_UI ) );
MogoModulePaths.addModule(new MogoModule( PushUIConstants.PATH, PushUIConstants.NAME));
if (!DebugConfig.isLauncher()) {

View File

@@ -1,3 +1,3 @@
<resources>
<string name="app_shell_name">智慧驾驶</string>
<string name="app_shell_name">蘑菇出行</string>
</resources>

View File

@@ -22,7 +22,6 @@ buildscript {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "com.alibaba:arouter-register:1.0.2"
classpath 'com.hujiang.aspectjx:gradle-android-plugin-aspectjx:2.0.4'
// classpath "com.mogo.module.pluginhook:module-pluginhook:${HOOKPLUGIN_VERSION}"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}

View File

@@ -126,6 +126,8 @@ ext {
socketsdk : 'com.zhidao.socketsdk:socketsdk:2.1.4',
socketsdkconnsvrprotoco : 'com.zhidao.ptech:connsvr-protoco:0.1.23',
socketsdkprotobufjava : 'com.google.protobuf:protobuf-java:3.5.1',
// OBU
moduleobu : "com.mogo.module:module-obu:${MOGO_MODULE_OBU_VERSION}",
//
jetbrainsannotationsjava5: "org.jetbrains:annotations-java5:15.0",
@@ -157,5 +159,16 @@ ext {
// 个人中心的SDK
personalsdk : "com.zhidaoauto.person.info:data:1.0.1",
tanluupload : "com.mogo.module:module-tanlu-upload:${TANLULIB_VERSION}",
// obu sdk
obusdk : "com.zhidao.enterprise.smartv2x:smartv2x:1.0.0.1",
//事件面板
moduleventpanel : "com.mogo.module:module-event-panel:${MOGO_MODULE_EVENT_PANEL_VERSION}",
// 事件面板空实现
moduleventpanelnoop : "com.mogo.module:module-event-panel-noop:${MOGO_MODULE_EVENT_PANEL_VERSION}",
// 左侧面板
moduleleftpanel : "com.mogo.module:module-left-panel:${MOGO_MODULE_LEFT_PANEL_VERSION}",
// 左侧面板空实现
moduleleftpanelnoop : "com.mogo.module:module-left-panel-noop:${MOGO_MODULE_LEFT_PANEL_VERSION}"
]
}

View File

@@ -7,6 +7,8 @@ import com.mogo.utils.logger.Logger;
* @since 2019-12-23
* <p>
* 各个模块递调试信息控制接口
* <p>
* 注:该类已经不再是简单的调试配置,已经涉及到功能逻辑了 囧
*/
public class DebugConfig {
@@ -115,17 +117,18 @@ public class DebugConfig {
/**
* 设置使用哪个语音助手
*
* @param aiType {@link #AI_TYPE_TXZ} {@link #AI_TYPE_SPEECH}
*/
public static void setAIType(int aiType){
Logger.d("DebugConfig", "setAiType: " + aiType);
public static void setAIType( int aiType ) {
Logger.d( "DebugConfig", "setAiType: " + aiType );
sAIType = aiType;
}
/**
* 使用哪个语音助手 {@link #AI_TYPE_TXZ} {@link #AI_TYPE_SPEECH}
*/
public static int getAIType(){
public static int getAIType() {
return sAIType;
}
@@ -164,4 +167,14 @@ public class DebugConfig {
public static void setActiveAIAssistFlag( boolean sActiveAIAssistFlag ) {
DebugConfig.sActiveAIAssistFlag = sActiveAIAssistFlag;
}
private static boolean useMockObuData;
public static void setUseMockObuData( boolean use ) {
useMockObuData = use;
}
public static boolean isUseMockObuData() {
return useMockObuData;
}
}

View File

@@ -7,7 +7,7 @@ import java.util.concurrent.ThreadFactory;
public class ThreadPoolService {
private static final ExecutorService SERVICE = Executors.newFixedThreadPool( 3, new ThreadFactoryImpl() );
private static final ExecutorService SINGLE_THREAD_SERVICE = Executors.newSingleThreadExecutor(new SingleThreadFactoryImpl());
private static class ThreadFactoryImpl implements ThreadFactory {
private static int mCounter = 1;
@@ -18,10 +18,26 @@ public class ThreadPoolService {
}
}
/**
* 单线程队列执行的ThreadFactory实现应该只会new一个Thread
*/
private static class SingleThreadFactoryImpl implements ThreadFactory{
private static int counter = 1;
@Override
public Thread newThread(Runnable r) {
return new Thread(r, "SingleThread - " + counter++);
}
}
private ThreadPoolService() {
}
public static void execute( Runnable task ) {
SERVICE.execute( task );
}
public static void singleExecute(Runnable task) {
SINGLE_THREAD_SERVICE.execute(task);
}
}

View File

@@ -27,43 +27,44 @@ PASSWORD=xintai2018
RELEASE=false
# 模块版本
## 工程内模块
MOGO_COMMONS_VERSION=1.2.1.9
MOGO_UTILS_VERSION=1.2.1.9
MAP_AMAP_VERSION=1.2.1.9
MAP_AUTONAVI_VERSION=1.2.1.9
MOGO_MAP_VERSION=1.2.1.9
MOGO_MAP_API_VERSION=1.2.1.9
MOGO_SERVICE_VERSION=1.2.1.9
MOGO_SERVICE_API_VERSION=1.2.1.9
MOGO_CONNECTION_VERSION=1.2.1.9
MOGO_MODULE_APPS_VERSION=1.2.1.9
MOGO_MODULE_NAVI_VERSION=1.2.1.9
MOGO_MODULE_SHARE_VERSION=1.2.1.18
MOGO_MODULE_COMMON_VERSION=1.2.1.9
MOGO_MODULE_MAIN_VERSION=1.2.1.9
MOGO_MODULE_MAP_VERSION=1.2.1.9
MOGO_MODULE_SERVICE_VERSION=1.2.1.9
MOGO_MODULE_EXTENSIONS_VERSION=1.2.1.9
MOGO_MODULE_SEARCH_VERSION=1.2.1.9
MOGO_MODULE_BACK_VERSION=1.2.1.9
MOGO_MODULE_GPS_SIMULATOR_VERSION=1.2.1.9
MOGO_MODULE_GPS_SIMULATOR_DEBUG_VERSION=1.2.1.9
MOGO_MODULE_GPS_SIMULATOR_NOOP_VERSION=1.2.1.9
MOGO_MODULE_AUTHORIZE_VERSION=1.2.1.9
MOGO_MODULE_GUIDE_VERSION=1.2.1.9
MOGO_MODULE_MEDIA_VERSION=1.2.1.9
MOGO_COMMONS_VERSION=1.2.1.13
MOGO_UTILS_VERSION=1.2.1.13
MAP_AMAP_VERSION=1.2.1.13
MAP_AUTONAVI_VERSION=1.2.1.13
MOGO_MAP_VERSION=1.2.1.13
MOGO_MAP_API_VERSION=1.2.1.13
MOGO_SERVICE_VERSION=1.2.1.13
MOGO_SERVICE_API_VERSION=1.2.1.13
MOGO_CONNECTION_VERSION=1.2.1.13
MOGO_MODULE_APPS_VERSION=1.2.1.13
MOGO_MODULE_NAVI_VERSION=1.2.1.13
MOGO_MODULE_SHARE_VERSION=1.2.1.13
MOGO_MODULE_COMMON_VERSION=1.2.1.14
MOGO_MODULE_MAIN_VERSION=1.2.1.13
MOGO_MODULE_MAP_VERSION=1.2.1.13
MOGO_MODULE_SERVICE_VERSION=1.2.1.13
MOGO_MODULE_EXTENSIONS_VERSION=1.2.1.13
MOGO_MODULE_SEARCH_VERSION=1.2.1.13
MOGO_MODULE_BACK_VERSION=1.2.1.13
MOGO_MODULE_GPS_SIMULATOR_VERSION=1.2.1.13
MOGO_MODULE_GPS_SIMULATOR_DEBUG_VERSION=1.2.1.13
MOGO_MODULE_GPS_SIMULATOR_NOOP_VERSION=1.2.1.13
MOGO_MODULE_AUTHORIZE_VERSION=1.2.1.13
MOGO_MODULE_GUIDE_VERSION=1.2.1.13
MOGO_MODULE_MEDIA_VERSION=1.2.1.13
MOGO_MODULE_MAIN_LAUNCHER_VERSION = 1.2.1.9
MOGO_MODULE_MAIN_INDEPENDENT_VERSION = 1.2.1.9
MOGO_MODULE_MAIN_LAUNCHER_VERSION = 1.2.1.13
MOGO_MODULE_MAIN_INDEPENDENT_VERSION = 1.2.1.13
MOGO_MODULE_OBU_VERSION = 1.2.1.10-SNAPSHOT
## 工程外部模块
# 探路
MOGO_MODULE_TANLU_VERSION=1.2.1.15
MOGO_MODULE_TANLU_VERSION=1.3.0.1-SNAPSHOT
# 车聊聊
CARCHATTING_VERSION=1.4.6
CARCHATTING_VERSION=1.3.2
# 车聊聊接口
CARCHATTINGPROVIDER_VERSION=1.2.0
CARCHATTINGPROVIDER_VERSION=1.3.2
# 视频引导
MOGO_MODULE_GUIDESHOW_VERSION=1.0.2-SNAPSHOT
# 视频引导接口
@@ -71,15 +72,20 @@ MOGO_MODULE_GUIDESHOW_PROVIDER_VERSION=1.0.2-SNAPSHOT
# 在线车辆F
MOGO_MODULE_ONLINECAR_VERSION=1.0.3.2
# v2x
MOGO_MODULE_V2X_VERSION=1.1.533
MOGO_MODULE_V2X_VERSION=1.2.81
# 推送
MOGO_MODULE_PUSH_VERSION=1.1.5.7
MOGO_MODULE_PUSH_BASE_VERSION=1.1.5.5
MOGO_MODULE_PUSH_NOOP_VERSION=1.1.5.6
MOGO_MODULE_PUSH_VERSION=1.1.5.2
MOGO_MODULE_PUSH_BASE_VERSION=1.1.5.2
MOGO_MODULE_PUSH_NOOP_VERSION=1.1.5.2
# 广告资源位
MOGO_MODULE_AD_CARD_VERSION=1.0.1
# 探路上报和分享模块
TANLULIB_VERSION=1.2.1.15
TANLULIB_VERSION=1.3.0.1-SNAPSHOT
MOGO_MODULE_EVENT_PANEL_VERSION = 1.0.0-SNAPSHOT
MOGO_MODULE_EVENT_PANEL_NOOP_VERSION = 1.0.0-SNAPSHOT
#左侧面板模块
MOGO_MODULE_LEFT_PANEL_VERSION = 1.2.1.10-SNAPSHOT
MOGO_MODULE_LEFT_PANEL_NOOP_VERSION = 1.2.1.10-SNAPSHOT
# Boost分包
BOOST_MULTIDEX_VERSION=1.0.0

View File

@@ -0,0 +1,18 @@
/**
* Automatically generated file. DO NOT MODIFY
*/
package com.mogo.map.impl.custom;
public final class BuildConfig {
public static final boolean DEBUG = Boolean.parseBoolean("true");
public static final String LIBRARY_PACKAGE_NAME = "com.mogo.map.impl.custom";
/**
* @deprecated APPLICATION_ID is misleading in libraries. For the library package name use LIBRARY_PACKAGE_NAME
*/
@Deprecated
public static final String APPLICATION_ID = "com.mogo.map.impl.custom";
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 = "1.2.1.9";
}

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mogo.map.impl.custom"
android:versionCode="1"
android:versionName="1.2.1.9" >
<uses-sdk
android:minSdkVersion="19"
android:targetSdkVersion="22" />
<application>
</application>
</manifest>

View File

@@ -0,0 +1 @@
[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.2.1.9","enabled":true,"outputFile":"map-custom-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.mogo.map.impl.custom","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/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/jniLibs"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/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/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/shaders"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/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/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/assets"/><source path="/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/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/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/debug/assets"/></dataSet></merger>

View File

@@ -0,0 +1,224 @@
#Fri Jul 03 09:54:47 CST 2020
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_16.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_16.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_13.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_13.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_67.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_67.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_30.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_30.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_64.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_64.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_40.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_40.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir16.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir16.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_56.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_56.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_53.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_53.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_37.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_37.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_26.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_26.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_5.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_5.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_36.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_36.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_15.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_15.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/marker_blue.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/marker_blue.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_25.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_25.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/live_exit.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/live_exit.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_23.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_23.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_20.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_20.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_6.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_6.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_14.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_14.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_12.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_12.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir7.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir7.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/location_city_image.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/location_city_image.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_27.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_27.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_63.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_63.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_60.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_60.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_44.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_44.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir_station.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir_station.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/not_join_checkbox_bg.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/not_join_checkbox_bg.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_19.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_19.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_16.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_16.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir12.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir12.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_52.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_52.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_67.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_67.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_33.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_33.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_84.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_84.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_43.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_43.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_59.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_59.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_56.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_56.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_22.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_22.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_endpoint.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_endpoint.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_1.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_1.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_32.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_32.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_11.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_11.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_8.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_8.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_21.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_21.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_39.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_39.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_2.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_2.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_10.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_10.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_28.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_28.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir3.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir3.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_26.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_26.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_23.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_23.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/amap_route_color_texture_0_arrow.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/amap_route_color_texture_0_arrow.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_9.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_9.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/amap_route_color_texture_1_arrow.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/amap_route_color_texture_1_arrow.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_40.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_40.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_17.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_17.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_15.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_15.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_12.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_12.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_68.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_68.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_66.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_66.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_63.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_63.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/public_arrow_back_iv.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/public_arrow_back_iv.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_19.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_19.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir15.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir15.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_55.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_55.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_52.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_52.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_36.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_36.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/main_solid_right_page_up_press.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/main_solid_right_page_up_press.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_25.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_25.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_59.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_59.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_4.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_4.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/amap_route_color_texture_2_arrow.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/amap_route_color_texture_2_arrow.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_35.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_35.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_endpoint.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_endpoint.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_14.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_14.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_24.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_24.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_22.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_22.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_5.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_5.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_13.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_13.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_11.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_11.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir6.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir6.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_26.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_26.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/default_image.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/default_image.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_62.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_62.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_43.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_43.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_18.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_18.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_15.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_15.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir11.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir11.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_51.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_51.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_69.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_69.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/amap_route_color_texture_3_arrow.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/amap_route_color_texture_3_arrow.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_66.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_66.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_32.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_32.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_42.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_42.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_58.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_58.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_55.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_55.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_21.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_21.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/main_solid_left_page_up_normal.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/main_solid_left_page_up_normal.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_39.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_39.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_31.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_31.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_10.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_10.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_28.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_28.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_7.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_7.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_20.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_20.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_38.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_38.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_1.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_1.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_17.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_17.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/map_location_normal.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/map_location_normal.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/ic_snapshot_ph.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/ic_snapshot_ph.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_68.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_68.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_27.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_27.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/amap_route_color_texture_4_arrow.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/amap_route_color_texture_4_arrow.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir2.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir2.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_25.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_25.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_22.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_22.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_8.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_8.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/join_checkbox_bg.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/join_checkbox_bg.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_16.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_16.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_14.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_14.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/amap_bus.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/amap_bus.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir9.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir9.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_11.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_11.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_65.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_65.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_62.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_62.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/app_icon.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/app_icon.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_18.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_18.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir14.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir14.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_54.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_54.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_51.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_51.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_35.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_35.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_69.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_69.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/amap_man.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/amap_man.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/map_location_press.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/map_location_press.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir_start.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir_start.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_24.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_24.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_58.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_58.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/amap_route_color_texture_5_arrow.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/amap_route_color_texture_5_arrow.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_3.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_3.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_34.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_34.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_13.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_13.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_85.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_85.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/search_information_normal.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/search_information_normal.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_23.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_23.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_21.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_21.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_4.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_4.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_12.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_12.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/amap_car.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/amap_car.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_10.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_10.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir5.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir5.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_28.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_28.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_25.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_25.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_61.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_61.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_42.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_42.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_17.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_17.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_14.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_14.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/amap_route_color_texture_6_arrow.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/amap_route_color_texture_6_arrow.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir10.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir10.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_50.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_50.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/amap_route_color_texture_7_arrow.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/amap_route_color_texture_7_arrow.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_68.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_68.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_31.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_31.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_65.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_65.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_41.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_41.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_57.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_57.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_20.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_20.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_54.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_54.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_38.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_38.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/amap_through.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/amap_through.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_30.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_30.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_27.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_27.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/main_solid_left_page_up_press.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/main_solid_left_page_up_press.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir_end.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir_end.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_6.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_6.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_37.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_37.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_16.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_16.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/video_loading_img.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/video_loading_img.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/amap_start.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/amap_start.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_26.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_26.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/amap_route_color_texture_8_arrow.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/amap_route_color_texture_8_arrow.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir1.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir1.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_24.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_24.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_21.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_21.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_7.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_7.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_15.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_15.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_13.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_13.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir8.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir8.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_10.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_10.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_28.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_28.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_64.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_64.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_61.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_61.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_17.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_17.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/mainpage_location_img.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/mainpage_location_img.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir13.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir13.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_53.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_53.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_50.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_50.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_68.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_68.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_34.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_34.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_85.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_85.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/ic_refresh.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/ic_refresh.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_44.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_44.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_57.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_57.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_23.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_23.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/amap_route_color_texture_9_arrow.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/amap_route_color_texture_9_arrow.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_2.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_2.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_33.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_33.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_12.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_12.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_84.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_84.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/amap_end.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/amap_end.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_9.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_9.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_22.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_22.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_20.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_20.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/tc_11.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/tc_11.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/amap_ride.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/amap_ride.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/search_information_press.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/search_information_press.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_27.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_27.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/dir4.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/dir4.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/ic_24.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_24.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-xhdpi/ic_60.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_60.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable-ldpi/tc_41.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable-ldpi-v4/tc_41.png
/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/res/drawable/main_solid_right_page_up_normal.png=/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/build/intermediates/packaged_res/debug/drawable/main_solid_right_page_up_normal.png

View File

@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="path_width">40px</dimen>
</resources>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="path_width">60px</dimen>
<string name="app_name">map-amap</string>
</resources>

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mogo.map.impl.custom"
android:versionCode="1"
android:versionName="1.2.1.9" >
<uses-sdk
android:minSdkVersion="19"
android:targetSdkVersion="22" />
<application>
</application>
</manifest>

View File

@@ -0,0 +1,144 @@
R_DEF: Internal format may change without notice
local
dimen path_width
drawable amap_bus
drawable amap_car
drawable amap_end
drawable amap_man
drawable amap_ride
drawable amap_route_color_texture_0_arrow
drawable amap_route_color_texture_1_arrow
drawable amap_route_color_texture_2_arrow
drawable amap_route_color_texture_3_arrow
drawable amap_route_color_texture_4_arrow
drawable amap_route_color_texture_5_arrow
drawable amap_route_color_texture_6_arrow
drawable amap_route_color_texture_7_arrow
drawable amap_route_color_texture_8_arrow
drawable amap_route_color_texture_9_arrow
drawable amap_start
drawable amap_through
drawable app_icon
drawable default_image
drawable dir1
drawable dir10
drawable dir11
drawable dir12
drawable dir13
drawable dir14
drawable dir15
drawable dir16
drawable dir2
drawable dir3
drawable dir4
drawable dir5
drawable dir6
drawable dir7
drawable dir8
drawable dir9
drawable dir_end
drawable dir_start
drawable dir_station
drawable ic_1
drawable ic_10
drawable ic_11
drawable ic_12
drawable ic_13
drawable ic_14
drawable ic_15
drawable ic_16
drawable ic_17
drawable ic_18
drawable ic_19
drawable ic_2
drawable ic_20
drawable ic_21
drawable ic_22
drawable ic_23
drawable ic_24
drawable ic_25
drawable ic_26
drawable ic_27
drawable ic_28
drawable ic_3
drawable ic_4
drawable ic_5
drawable ic_50
drawable ic_51
drawable ic_52
drawable ic_53
drawable ic_54
drawable ic_55
drawable ic_56
drawable ic_57
drawable ic_58
drawable ic_59
drawable ic_6
drawable ic_60
drawable ic_61
drawable ic_62
drawable ic_63
drawable ic_64
drawable ic_65
drawable ic_66
drawable ic_67
drawable ic_68
drawable ic_69
drawable ic_7
drawable ic_8
drawable ic_9
drawable ic_endpoint
drawable ic_refresh
drawable ic_snapshot_ph
drawable join_checkbox_bg
drawable live_exit
drawable location_city_image
drawable main_solid_left_page_up_normal
drawable main_solid_left_page_up_press
drawable main_solid_right_page_up_normal
drawable main_solid_right_page_up_press
drawable mainpage_location_img
drawable map_location_normal
drawable map_location_press
drawable marker_blue
drawable not_join_checkbox_bg
drawable public_arrow_back_iv
drawable search_information_normal
drawable search_information_press
drawable tc_10
drawable tc_11
drawable tc_12
drawable tc_13
drawable tc_14
drawable tc_15
drawable tc_16
drawable tc_17
drawable tc_20
drawable tc_21
drawable tc_22
drawable tc_23
drawable tc_24
drawable tc_25
drawable tc_26
drawable tc_27
drawable tc_28
drawable tc_30
drawable tc_31
drawable tc_32
drawable tc_33
drawable tc_34
drawable tc_35
drawable tc_36
drawable tc_37
drawable tc_38
drawable tc_39
drawable tc_40
drawable tc_41
drawable tc_42
drawable tc_43
drawable tc_44
drawable tc_68
drawable tc_84
drawable tc_85
drawable video_loading_img
string app_name

View File

@@ -0,0 +1,17 @@
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.mogo.map.impl.custom"
4 android:versionCode="1"
5 android:versionName="1.2.1.9" >
6
7 <uses-sdk
8 android:minSdkVersion="19"
8-->/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/AndroidManifest.xml
9 android:targetSdkVersion="22" />
9-->/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/AndroidManifest.xml
10
11 <application>
11-->/Users/congtaowang/Public/AndroidStudioProjects/zhidao/yycp/MogoLauncher/libraries/map-custom/src/main/AndroidManifest.xml:4:5-6:19
12 </application>
13
14</manifest>

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Some files were not shown because too many files have changed in this diff Show More