diff --git "a/2\350\247\243\345\206\263\351\224\231\350\257\257.png" "b/2\350\247\243\345\206\263\351\224\231\350\257\257.png" new file mode 100644 index 0000000..c09fde2 Binary files /dev/null and "b/2\350\247\243\345\206\263\351\224\231\350\257\257.png" differ diff --git "a/QQ\346\210\252\345\233\27620171014100633.png" "b/QQ\346\210\252\345\233\27620171014100633.png" new file mode 100644 index 0000000..541f648 Binary files /dev/null and "b/QQ\346\210\252\345\233\27620171014100633.png" differ diff --git a/README.md b/README.md index 5ee65c9..400f4f6 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,6 @@ -## 说明 +## 交流群 540686217 + +## 说明 > * 基于腾讯浏览服务,支持多种文件格式,例如doc、excel、ppt、excel、pdf等格式; > * 支持展示网络文件 @@ -11,3 +13,80 @@ ## 效果图 ![这里写图片描述](https://github.com/ZhongXiaoHong/superFileView/blob/master/record.gif?raw=true) + +## 常见问题 +- no suport by + +出现这个错误提示的原因,首先可能是手机上没有Tbs内核,如果有tbs内核,则可能是内核正在初始化安装,还处于冷启动阶段,这个时候内核还不能使用,打开文件会出现这个错误,可以使用可以按如下方式确定内核是否成功加载并且可用: +方法1: +``` + QbSdk.initX5Environment(this, new QbSdk.PreInitCallback() { + @Override + public void onCoreInitFinished() { + + } + + @Override + public void onViewInitFinished(boolean b) { +              //这里被回调,并且b=true说明内核初始化并可以使用 +              //如果b=false,内核会尝试安装,你可以通过下面监听接口获知 +            } + }); + + QbSdk.setTbsListener(new TbsListener() { + @Override + public void onDownloadFinish(int i) { +              //tbs内核下载完成回调 +          } + + @Override + public void onInstallFinish(int i) { +              //内核安装完成回调, +          } + + @Override + public void onDownloadProgress(int i) { +                //下载进度监听 +           } + }); +``` +方法2: +``` +QbSdk.preInit(this, new QbSdk.PreInitCallback() { + @Override + public void onCoreInitFinished() { + + } + + @Override + public void onViewInitFinished(boolean b) { + + } + }); + //tbs内核下载跟踪 + QbSdk.setTbsListener(this.tbsListener); + //判断是否要自行下载内核 + boolean needDownload = TbsDownloader.needDownload(this, TbsDownloader.DOWNLOAD_OVERSEA_TBS); +        if (needDownload && isNetworkWifi(this)) { + //isNetworkWifi(this)是我 +        //自己写的一个方法,这里我也希望wifi下再下载 + TbsDownloader.startDownload(this); + } +``` +方法1、方法2 主要的区别在于方法1更加“自动”,内部会自动判断需不需要下载内核,因此在使用方法1来初始化的话,需要注意一下,此时tbs内核在非Wifi状态下是默认不会下载的,你可以通过以下方法来改变这个设置: + QbSdk.setDownloadWithoutWifi(true); +   + + +- 插件加载失败 + +首次打开相关文件的时候需要下载相关文件的插件,因此需要保持网络可用状态,否则下载插件失败会出现这个错误。 + +- NoSuchMethodException: onCallBackAction + +这个错误我也是懵逼,不管成功打开与否,都会有这玩意,所以暂时先忽略。 + + + +## 博客 +http://www.jianshu.com/p/3f57d640b24d diff --git a/app/app.iml b/app/app.iml index 19dbd15..aae56f3 100644 --- a/app/app.iml +++ b/app/app.iml @@ -1,6 +1,145 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json b/app/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json index 7a50263..bbb2e88 100644 --- a/app/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json +++ b/app/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json @@ -59,14 +59,14 @@ "merged": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_text_select_handle_left_mtrl_dark.png", "source": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_text_select_handle_left_mtrl_dark.png" }, - { - "merged": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_star_half_black_48dp.png", - "source": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_ic_star_half_black_48dp.png" - }, { "merged": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_popup_background_mtrl_mult.9.png", "source": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_popup_background_mtrl_mult.9.png" }, + { + "merged": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_star_half_black_48dp.png", + "source": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_ic_star_half_black_48dp.png" + }, { "merged": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_list_divider_mtrl_alpha.9.png", "source": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_list_divider_mtrl_alpha.9.png" diff --git a/app/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json b/app/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json index b240a52..3dc537a 100644 --- a/app/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json +++ b/app/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json @@ -79,14 +79,14 @@ "merged": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_015.png", "source": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_015.png" }, - { - "merged": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png", - "source": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png" - }, { "merged": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png", "source": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png" }, + { + "merged": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png", + "source": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png" + }, { "merged": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_spinner_mtrl_am_alpha.9.png", "source": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_spinner_mtrl_am_alpha.9.png" diff --git a/app/build/intermediates/blame/res/debug/single/layout.json b/app/build/intermediates/blame/res/debug/single/layout.json index b61c970..e9d0955 100644 --- a/app/build/intermediates/blame/res/debug/single/layout.json +++ b/app/build/intermediates/blame/res/debug/single/layout.json @@ -19,14 +19,14 @@ "merged": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_list_menu_item_icon.xml", "source": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_list_menu_item_icon.xml" }, - { - "merged": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\notification_action_tombstone.xml", - "source": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\notification_action_tombstone.xml" - }, { "merged": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_list_menu_item_checkbox.xml", "source": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_list_menu_item_checkbox.xml" }, + { + "merged": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\notification_action_tombstone.xml", + "source": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\notification_action_tombstone.xml" + }, { "merged": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_screen_toolbar.xml", "source": "E:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_screen_toolbar.xml" diff --git a/app/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties b/app/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties index 927c551..2aa1146 100644 --- a/app/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties +++ b/app/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties @@ -1 +1 @@ -#Wed Sep 20 16:05:45 CST 2017 +#Fri Oct 13 18:22:18 CST 2017 diff --git a/app/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties b/app/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties index 935a915..34c5b05 100644 --- a/app/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties +++ b/app/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties @@ -1,8 +1,8 @@ -#Wed Sep 20 16:05:42 CST 2017 +#Fri Oct 13 18:22:15 CST 2017 E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\notification_icon_background.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\notification_icon_background.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_search_view.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_search_view.xml -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_ic_star_black_16dp.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_star_black_16dp.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_ic_star_black_16dp.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_star_black_16dp.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\abc_btn_check_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_btn_check_material.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\color\\abc_tint_default.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\color\\abc_tint_default.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\color-v23\\abc_btn_colored_borderless_text_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\color-v23\\abc_btn_colored_borderless_text_material.xml @@ -35,8 +35,8 @@ E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-a E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\notification_bg_low.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\notification_bg_low.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\color-v23\\abc_tint_spinner.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\color-v23\\abc_tint_spinner.xml -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl_light.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl_light.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\support_simple_spinner_dropdown_item.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\support_simple_spinner_dropdown_item.xml +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl_light.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl_light.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\abc_btn_borderless_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_btn_borderless_material.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\abc_btn_default_mtrl_shape.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_btn_default_mtrl_shape.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\anim\\abc_popup_enter.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\anim\\abc_popup_enter.xml @@ -52,8 +52,8 @@ E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-a E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-v23\\abc_control_background_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v23\\abc_control_background_material.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\notification_bg_normal_pressed.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\notification_bg_normal_pressed.9.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl_light.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl_light.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_switch_track_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_switch_track_mtrl_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout-v21\\notification_action_tombstone.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21\\notification_action_tombstone.xml @@ -62,8 +62,8 @@ E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-a E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxxhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxxhdpi-v4\\abc_ic_star_half_black_48dp.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_ic_star_half_black_48dp.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_ic_star_black_36dp.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_ic_star_black_36dp.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_000.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_000.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_ic_star_black_36dp.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_ic_star_black_36dp.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\abc_ic_ab_back_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_ic_ab_back_material.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\color\\abc_tint_switch_track.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\color\\abc_tint_switch_track.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png @@ -87,8 +87,8 @@ E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-a E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_list_focused_holo.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_list_focused_holo.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout-v11\\notification_media_cancel_action.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout-v11\\notification_media_cancel_action.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_ic_star_black_36dp.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_star_black_36dp.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl_dark.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl_dark.png E\:\\AndroidStudioProjects\\superFileView\\app\\src\\main\\res\\mipmap-xhdpi\\ic_launcher.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xhdpi\\ic_launcher.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl_dark.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl_dark.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\color\\abc_hint_foreground_material_light.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\color\\abc_hint_foreground_material_light.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_alert_dialog_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_alert_dialog_material.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png @@ -134,12 +134,12 @@ E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-a E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\notification_bg_normal.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\notification_bg_normal.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\abc_edit_text_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_edit_text_material.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_list_menu_item_checkbox.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_list_menu_item_checkbox.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_list_menu_item_checkbox.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_list_menu_item_checkbox.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_light.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_light.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_left_mtrl_light.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_text_select_handle_left_mtrl_light.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_list_menu_item_layout.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_list_menu_item_layout.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\abc_item_background_holo_light.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_item_background_holo_light.xml @@ -161,8 +161,8 @@ E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-a E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\notification_template_media_custom.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\notification_template_media_custom.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_select_dialog_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_select_dialog_material.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\abc_seekbar_track_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_seekbar_track_material.xml +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-ldrtl-xhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\color\\abc_btn_colored_text_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\color\\abc_btn_colored_text_material.xml @@ -229,8 +229,8 @@ E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-a E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout-v21\\notification_action.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21\\notification_action.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\color\\switch_thumb_material_dark.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\color\\switch_thumb_material_dark.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_015.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_015.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_popup_menu_item_layout.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_popup_menu_item_layout.xml +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_015.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_015.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout-v16\\notification_template_custom_big.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout-v16\\notification_template_custom_big.xml @@ -287,23 +287,23 @@ E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-a E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_text_select_handle_left_mtrl_dark.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_text_select_handle_left_mtrl_dark.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\notification_action.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\notification_action.xml -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_list_divider_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_list_divider_mtrl_alpha.9.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_list_menu_item_radio.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_list_menu_item_radio.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_alert_dialog_button_bar_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_alert_dialog_button_bar_material.xml +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_list_menu_item_radio.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_list_menu_item_radio.xml +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_list_divider_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_list_divider_mtrl_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_list_pressed_holo_dark.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_list_pressed_holo_dark.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_000.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_000.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_000.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_000.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_screen_simple_overlay_action_mode.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_screen_simple_overlay_action_mode.xml +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_000.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_000.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_screen_simple_overlay_action_mode.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_screen_simple_overlay_action_mode.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout-v11\\notification_template_big_media_narrow.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout-v11\\notification_template_big_media_narrow.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_ic_star_half_black_48dp.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_ic_star_half_black_48dp.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_popup_menu_header_item_layout.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_popup_menu_header_item_layout.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\abc_cab_background_top_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_cab_background_top_material.xml +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_popup_menu_header_item_layout.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_popup_menu_header_item_layout.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\abc_dialog_material_background.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_dialog_material_background.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\color\\abc_hint_foreground_material_dark.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\color\\abc_hint_foreground_material_dark.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png @@ -311,47 +311,47 @@ E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-a E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\notification_bg_low_pressed.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\notification_bg_low_pressed.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_ic_star_half_black_16dp.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_star_half_black_16dp.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\color-v23\\abc_tint_btn_checkable.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\color-v23\\abc_tint_btn_checkable.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_ic_star_black_48dp.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_star_black_48dp.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\color-v23\\abc_tint_btn_checkable.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\color-v23\\abc_tint_btn_checkable.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxxhdpi-v4\\abc_ic_star_black_16dp.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_ic_star_black_16dp.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_screen_content_include.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_screen_content_include.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout-v11\\notification_template_big_media.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout-v11\\notification_template_big_media.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\color-v11\\abc_background_cache_hint_selector_material_light.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\color-v11\\abc_background_cache_hint_selector_material_light.xml +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_list_divider_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_list_divider_mtrl_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_ic_star_black_16dp.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_star_black_16dp.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_list_longpressed_holo.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_list_longpressed_holo.9.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\abc_tab_indicator_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_tab_indicator_material.xml +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\abc_ratingbar_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_ratingbar_material.xml +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\abc_tab_indicator_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_tab_indicator_material.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-ldrtl-mdpi-v17\\abc_spinner_mtrl_am_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-mdpi-v17\\abc_spinner_mtrl_am_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout-v21\\notification_template_icon_group.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21\\notification_template_icon_group.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\abc_ic_go_search_api_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_ic_go_search_api_material.xml +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout-v21\\notification_template_icon_group.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21\\notification_template_icon_group.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\abc_btn_radio_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_btn_radio_material.xml +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\abc_ic_go_search_api_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_ic_go_search_api_material.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-v21\\notification_action_background.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21\\notification_action_background.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\color-v23\\abc_tint_switch_thumb.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\color-v23\\abc_tint_switch_thumb.xml -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_spinner_mtrl_am_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_spinner_mtrl_am_alpha.9.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\select_dialog_singlechoice_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\select_dialog_singlechoice_material.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\color-v23\\abc_btn_colored_text_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\color-v23\\abc_btn_colored_text_material.xml +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\select_dialog_singlechoice_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\select_dialog_singlechoice_material.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\color-v23\\abc_btn_colored_text_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\color-v23\\abc_btn_colored_text_material.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\notification_bg_normal_pressed.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\notification_bg_normal_pressed.9.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\anim\\abc_slide_in_bottom.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\anim\\abc_slide_in_bottom.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\notification_bg_normal.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\notification_bg_normal.9.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_ic_menu_share_mtrl_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_menu_share_mtrl_alpha.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\anim\\abc_slide_in_bottom.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\anim\\abc_slide_in_bottom.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_ic_menu_share_mtrl_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_menu_share_mtrl_alpha.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_000.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_000.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_textfield_default_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_textfield_default_mtrl_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png @@ -359,10 +359,10 @@ E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-a E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-ldrtl-hdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-hdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_screen_toolbar.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_screen_toolbar.xml -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_switch_track_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_switch_track_mtrl_alpha.9.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_switch_track_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_switch_track_mtrl_alpha.9.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\abc_screen_toolbar.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\abc_screen_toolbar.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\anim\\abc_fade_in.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\anim\\abc_fade_in.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png @@ -371,18 +371,18 @@ E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-a E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_ic_star_half_black_16dp.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_ic_star_half_black_16dp.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-mdpi-v4\\abc_list_longpressed_holo.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4\\abc_list_longpressed_holo.9.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_switch_track_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_switch_track_mtrl_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_switch_track_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_switch_track_mtrl_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_ic_star_half_black_48dp.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_star_half_black_48dp.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\abc_seekbar_thumb_material.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_seekbar_thumb_material.xml +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxhdpi-v4\\abc_ic_star_half_black_48dp.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4\\abc_ic_star_half_black_48dp.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_list_focused_holo.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_list_focused_holo.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xhdpi-v4\\abc_text_select_handle_middle_mtrl_light.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4\\abc_text_select_handle_middle_mtrl_light.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\notification_template_lines_media.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\notification_template_lines_media.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\layout\\notification_template_lines_media.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\layout\\notification_template_lines_media.xml E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\anim\\abc_popup_exit.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\anim\\abc_popup_exit.xml +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-xxxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable\\abc_list_selector_background_transition_holo_light.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable\\abc_list_selector_background_transition_holo_light.xml -E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_popup_background_mtrl_mult.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_popup_background_mtrl_mult.9.png E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\color\\abc_tint_switch_thumb.xml=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\color\\abc_tint_switch_thumb.xml +E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\25.3.1\\res\\drawable-hdpi-v4\\abc_popup_background_mtrl_mult.9.png=E\:\\AndroidStudioProjects\\superFileView\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4\\abc_popup_background_mtrl_mult.9.png diff --git a/app/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png b/app/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png index 63d0e5d..1cf9ff6 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png and b/app/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_menu_selectall_mtrl_alpha.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_48dp.png b/app/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_48dp.png index 54d3065..0cc7bd4 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_48dp.png and b/app/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_ic_star_black_48dp.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png b/app/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png index f6aba5f..d8d6d7f 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png and b/app/build/intermediates/res/merged/debug/drawable-hdpi-v4/abc_scrubber_control_off_mtrl_alpha.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png b/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png index a262b0c..0c93137 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png and b/app/build/intermediates/res/merged/debug/drawable-ldrtl-hdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png index 87bf8d3..87d5ee5 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and b/app/build/intermediates/res/merged/debug/drawable-ldrtl-xhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png b/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png index 3cdb6cf..56a1367 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png and b/app/build/intermediates/res/merged/debug/drawable-ldrtl-xxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png b/app/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png index 6e18d40..8c3b83b 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png and b/app/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_btn_radio_to_on_mtrl_015.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_48dp.png b/app/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_48dp.png index c636ce8..e84e39d 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_48dp.png and b/app/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_black_48dp.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png b/app/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png index ac6ad11..308b799 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png and b/app/build/intermediates/res/merged/debug/drawable-mdpi-v4/abc_ic_star_half_black_36dp.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_48dp.png b/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_48dp.png index 7be2280..16d1dc0 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_48dp.png and b/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_black_48dp.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png b/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png index 2456a74..36536a5 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png and b/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_ic_star_half_black_48dp.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png b/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png index 3dcebcf..4fd15e5 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png and b/app/build/intermediates/res/merged/debug/drawable-xhdpi-v4/abc_text_select_handle_middle_mtrl_dark.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png b/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png index f71485c..676f526 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png and b/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_menu_paste_mtrl_am_alpha.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png b/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png index 918a395..5141095 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png and b/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_black_48dp.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png b/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png index 19bbc12..4312dc5 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png and b/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_ic_star_half_black_36dp.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png b/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png index d6a8790..5bcb7d8 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png and b/app/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/abc_text_select_handle_left_mtrl_light.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png b/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png index 6c8377c..4e18de2 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png and b/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_check_to_on_mtrl_015.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png b/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png index 5fa3266..4017d6f 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png and b/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_btn_radio_to_on_mtrl_000.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png b/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png index 397fd91..035127a 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png and b/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_cut_mtrl_alpha.png differ diff --git a/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png b/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png index ba16aac..213f509 100644 Binary files a/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png and b/app/build/intermediates/res/merged/debug/drawable-xxxhdpi-v4/abc_ic_menu_share_mtrl_alpha.png differ diff --git a/app/build/intermediates/res/resources-debug.ap_ b/app/build/intermediates/res/resources-debug.ap_ index d21295e..03d5f9f 100644 Binary files a/app/build/intermediates/res/resources-debug.ap_ and b/app/build/intermediates/res/resources-debug.ap_ differ diff --git a/app/src/main/java/com/silang/superfileview/App.java b/app/src/main/java/com/silang/superfileview/App.java index 4e3e3e2..8ea102a 100644 --- a/app/src/main/java/com/silang/superfileview/App.java +++ b/app/src/main/java/com/silang/superfileview/App.java @@ -6,6 +6,7 @@ import android.app.Application; import android.os.Build; +import com.tencent.smtt.sdk.QbSdk; /** * Created by ljh @@ -17,7 +18,8 @@ public class App extends Application { @Override public void onCreate() { super.onCreate(); - + //增加这句话 + QbSdk.initX5Environment(this,null); ExceptionHandler.getInstance().initConfig(this); } diff --git a/app/src/main/java/com/silang/superfileview/FileDisplayActivity.java b/app/src/main/java/com/silang/superfileview/FileDisplayActivity.java index d25c926..66a9792 100644 --- a/app/src/main/java/com/silang/superfileview/FileDisplayActivity.java +++ b/app/src/main/java/com/silang/superfileview/FileDisplayActivity.java @@ -2,9 +2,11 @@ import android.content.Context; import android.content.Intent; +import android.os.Binder; import android.os.Bundle; import android.os.Environment; import android.support.annotation.Nullable; +import android.support.v7.app.AlertDialog; import android.support.v7.app.AppCompatActivity; import android.text.TextUtils; @@ -28,6 +30,8 @@ public class FileDisplayActivity extends AppCompatActivity { String filePath; + + @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); @@ -47,16 +51,21 @@ public void onGetFilePath(SuperFileView2 mSuperFileView2) { Intent intent = this.getIntent(); String path = (String) intent.getSerializableExtra("path"); + if (!TextUtils.isEmpty(path)) { TLog.d(TAG, "文件path:" + path); setFilePath(path); } mSuperFileView.show(); + } private void getFilePathAndShowFile(SuperFileView2 mSuperFileView2) { + + if (getFilePath().contains("http")) {//网络地址要先下载 + downLoadFromNet(getFilePath(),mSuperFileView2); } else { @@ -104,6 +113,8 @@ private void downLoadFromNet(final String url,final SuperFileView2 mSuperFileVie } } + + LoadFileModel.loadPdfFile(url, new Callback() { @Override public void onResponse(Call call, Response response) { @@ -123,6 +134,8 @@ public void onResponse(Call call, Response response) file1.mkdirs(); TLog.d(TAG, "创建缓存目录: " + file1.toString()); } + + //fileN : /storage/emulated/0/pdf/kauibao20170821040512.pdf File fileN = getCacheFile(url);//new File(getCacheDir(url), getFileName(url)) @@ -190,7 +203,7 @@ private File getCacheDir(String url) { * @return */ private File getCacheFile(String url) { - File cacheFile = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/10086/" + File cacheFile = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/007/" + getFileName(url)); TLog.d(TAG, "缓存文件 = " + cacheFile.toString()); return cacheFile; diff --git a/app/src/main/java/com/silang/superfileview/SuperFileView2.java b/app/src/main/java/com/silang/superfileview/SuperFileView2.java index 5ad42be..36331b1 100644 --- a/app/src/main/java/com/silang/superfileview/SuperFileView2.java +++ b/app/src/main/java/com/silang/superfileview/SuperFileView2.java @@ -54,10 +54,25 @@ private TbsReaderView getTbsReaderView(Context context) { public void displayFile(File mFile) { if (mFile != null && !TextUtils.isEmpty(mFile.toString())) { + //增加下面一句解决没有TbsReaderTemp文件夹存在导致加载文件失败 + String bsReaderTemp = "/storage/emulated/0/TbsReaderTemp"; + File bsReaderTempFile =new File(bsReaderTemp); + + if (!bsReaderTempFile.exists()) { + TLog.d("准备创建/storage/emulated/0/TbsReaderTemp!!"); + boolean mkdir = bsReaderTempFile.mkdir(); + if(!mkdir){ + TLog.e("创建/storage/emulated/0/TbsReaderTemp失败!!!!!"); + } + } + //加载文件 Bundle localBundle = new Bundle(); + TLog.d(mFile.toString()); localBundle.putString("filePath", mFile.toString()); + localBundle.putString("tempPath", Environment.getExternalStorageDirectory() + "/" + "TbsReaderTemp"); + if (this.mTbsReaderView == null) this.mTbsReaderView = getTbsReaderView(context); boolean bool = this.mTbsReaderView.preOpen(getFileType(mFile.toString()), false); diff --git a/superFileView.iml b/superFileView.iml index 19801e2..71c6027 100644 --- a/superFileView.iml +++ b/superFileView.iml @@ -13,7 +13,7 @@ - + \ No newline at end of file diff --git "a/\346\226\207\344\273\266\351\242\204\350\247\210\345\244\261\350\264\245.png" "b/\346\226\207\344\273\266\351\242\204\350\247\210\345\244\261\350\264\245.png" new file mode 100644 index 0000000..5fced33 Binary files /dev/null and "b/\346\226\207\344\273\266\351\242\204\350\247\210\345\244\261\350\264\245.png" differ diff --git "a/\346\262\241\346\234\211Temp\346\226\207\344\273\266\345\244\271.png" "b/\346\262\241\346\234\211Temp\346\226\207\344\273\266\345\244\271.png" new file mode 100644 index 0000000..a881741 Binary files /dev/null and "b/\346\262\241\346\234\211Temp\346\226\207\344\273\266\345\244\271.png" differ diff --git "a/\351\224\231\350\257\257\345\216\237\345\233\240.png" "b/\351\224\231\350\257\257\345\216\237\345\233\240.png" new file mode 100644 index 0000000..7b17ec5 Binary files /dev/null and "b/\351\224\231\350\257\257\345\216\237\345\233\240.png" differ