├── .github └── workflows │ └── gradle.yml ├── MyWifiConnect.iml ├── README.md ├── WIFIAPComm.iml ├── WIFIAPCommNew.iml ├── WifiApCumm.iml ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── niqiu │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── niqiu │ │ │ ├── Adapter │ │ │ ├── MyConnAdapter.java │ │ │ ├── MyFriendsAdapter.java │ │ │ ├── MyTranWIFIAdapter.java │ │ │ └── MyTranWIFIUserAdapter.java │ │ │ ├── Broadcast │ │ │ ├── WifiConnectReceiver.java │ │ │ ├── WifiScanRsultReciver.java │ │ │ └── WifiStateReceiver.java │ │ │ ├── ChatActivity.java │ │ │ ├── ConnectActivity.java │ │ │ ├── ConnectWIFIActivity.java │ │ │ ├── MainActivity.java │ │ │ ├── MyApplication.java │ │ │ ├── TransferActivity.java │ │ │ ├── TransferMainActivity.java │ │ │ ├── WifiHotManager.java │ │ │ ├── contant │ │ │ └── Global.java │ │ │ ├── data │ │ │ ├── ChatMessage.java │ │ │ ├── TransmissionBean.java │ │ │ └── User.java │ │ │ ├── interfaces │ │ │ ├── ReceiveMsgListener.java │ │ │ └── TcpFileReceiveListener.java │ │ │ ├── lib │ │ │ ├── AppManager │ │ │ │ └── AppManager.java │ │ │ ├── SharePreference │ │ │ │ └── SharePreferenceSetting.java │ │ │ ├── contast │ │ │ │ └── ContastsData.java │ │ │ └── crash │ │ │ │ ├── CrashHandler.java │ │ │ │ ├── CrashInfo.java │ │ │ │ ├── DetailInfo.java │ │ │ │ └── DeviceInfo.java │ │ │ ├── net │ │ │ ├── ClientThread.java │ │ │ ├── ServerThread.java │ │ │ ├── SocketHelp.java │ │ │ ├── tcp │ │ │ │ ├── NetTCPThreadPoolExecutor.java │ │ │ │ ├── NetTcpFileReceiveThread.java │ │ │ │ └── NetTcpFileSendThread.java │ │ │ └── udp │ │ │ │ └── NetThreadHelper.java │ │ │ ├── util │ │ │ ├── IpMessageConst.java │ │ │ ├── IpMessageProtocol.java │ │ │ ├── UsedConst.java │ │ │ ├── WifiHotAdmin.java │ │ │ ├── WifiHotConfigAdmin.java │ │ │ └── WifiUtils.java │ │ │ └── wifiap │ │ │ ├── TimerCheck.java │ │ │ ├── WifiApConst.java │ │ │ └── WifiapBroadcast.java │ └── res │ │ ├── drawable │ │ ├── ic_connected.png │ │ ├── stat_sys_wifi_signal_0.png │ │ ├── stat_sys_wifi_signal_1.png │ │ ├── stat_sys_wifi_signal_2.png │ │ ├── stat_sys_wifi_signal_3.png │ │ └── stat_sys_wifi_signal_4.png │ │ ├── layout │ │ ├── activity_connect.xml │ │ ├── activity_connection.xml │ │ ├── activity_main.xml │ │ ├── activity_tran_test.xml │ │ ├── activity_wifi_tran_file.xml │ │ ├── activity_wifiscanlist.xml │ │ ├── dialog_layout_wifiaccount.xml │ │ ├── file_download_notification.xml │ │ ├── item_tran_wifi_file_list.xml │ │ ├── item_tran_wifi_list.xml │ │ └── item_wifi_list.xml │ │ ├── menu │ │ └── menu_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── niqiu │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── build.gradle ├── build │ ├── generated │ │ └── source │ │ │ ├── buildConfig │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── ru │ │ │ │ │ └── bartwell │ │ │ │ │ └── exfilepicker │ │ │ │ │ └── test │ │ │ │ │ └── BuildConfig.java │ │ │ └── debug │ │ │ │ └── ru │ │ │ │ └── bartwell │ │ │ │ └── exfilepicker │ │ │ │ └── BuildConfig.java │ │ │ └── r │ │ │ ├── androidTest │ │ │ └── debug │ │ │ │ └── ru │ │ │ │ └── bartwell │ │ │ │ └── exfilepicker │ │ │ │ ├── R.java │ │ │ │ └── test │ │ │ │ └── R.java │ │ │ └── debug │ │ │ └── ru │ │ │ └── bartwell │ │ │ └── exfilepicker │ │ │ └── R.java │ ├── intermediates │ │ ├── blame │ │ │ └── res │ │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ ├── multi │ │ │ │ │ ├── values-ar.json │ │ │ │ │ ├── values-de.json │ │ │ │ │ ├── values-es.json │ │ │ │ │ ├── values-et.json │ │ │ │ │ ├── values-hi.json │ │ │ │ │ ├── values-ja.json │ │ │ │ │ ├── values-lv.json │ │ │ │ │ ├── values-pt.json │ │ │ │ │ ├── values-ru.json │ │ │ │ │ ├── values-tr.json │ │ │ │ │ ├── values-uk.json │ │ │ │ │ ├── values-v11.json │ │ │ │ │ ├── values-v9.json │ │ │ │ │ ├── values-zh-rTW.json │ │ │ │ │ └── values.json │ │ │ │ │ └── single │ │ │ │ │ ├── drawable-hdpi-v4.json │ │ │ │ │ ├── drawable-mdpi-v4.json │ │ │ │ │ ├── drawable-xhdpi-v4.json │ │ │ │ │ ├── drawable-xxhdpi-v4.json │ │ │ │ │ ├── drawable.json │ │ │ │ │ └── layout.json │ │ │ │ └── debug │ │ │ │ ├── multi │ │ │ │ ├── values-ar.json │ │ │ │ ├── values-de.json │ │ │ │ ├── values-es.json │ │ │ │ ├── values-et.json │ │ │ │ ├── values-hi.json │ │ │ │ ├── values-ja.json │ │ │ │ ├── values-lv.json │ │ │ │ ├── values-pt.json │ │ │ │ ├── values-ru.json │ │ │ │ ├── values-tr.json │ │ │ │ ├── values-uk.json │ │ │ │ ├── values-v11.json │ │ │ │ ├── values-v9.json │ │ │ │ ├── values-zh-rTW.json │ │ │ │ └── values.json │ │ │ │ └── single │ │ │ │ ├── drawable-hdpi-v4.json │ │ │ │ ├── drawable-mdpi-v4.json │ │ │ │ ├── drawable-xhdpi-v4.json │ │ │ │ ├── drawable-xxhdpi-v4.json │ │ │ │ ├── drawable.json │ │ │ │ └── layout.json │ │ ├── bundles │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── R.txt │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ ├── efp__ic_file.png │ │ │ │ │ ├── efp__ic_folder.png │ │ │ │ │ ├── efp__ic_launcher.png │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_pressed_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_pressed_holo.png │ │ │ │ │ ├── efp_dark__ic_action_cancel.png │ │ │ │ │ ├── efp_dark__ic_action_deselect.png │ │ │ │ │ ├── efp_dark__ic_action_grid.png │ │ │ │ │ ├── efp_dark__ic_action_invert_selection.png │ │ │ │ │ ├── efp_dark__ic_action_list.png │ │ │ │ │ ├── efp_dark__ic_action_new_folder.png │ │ │ │ │ ├── efp_dark__ic_action_ok.png │ │ │ │ │ ├── efp_dark__ic_action_select_all.png │ │ │ │ │ ├── efp_dark__ic_action_sort.png │ │ │ │ │ ├── efp_dark__list_activated_holo.9.png │ │ │ │ │ ├── efp_dark__list_focused_holo.9.png │ │ │ │ │ ├── efp_dark__list_longpressed_holo.9.png │ │ │ │ │ ├── efp_dark__list_pressed_holo.9.png │ │ │ │ │ ├── efp_dark__list_selector_disabled_holo.9.png │ │ │ │ │ ├── efp_dark__text_select_handle_left.png │ │ │ │ │ ├── efp_dark__text_select_handle_middle.png │ │ │ │ │ ├── efp_dark__text_select_handle_right.png │ │ │ │ │ ├── efp_dark__textfield_activated_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_default_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_disabled_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_focused_holo.9.png │ │ │ │ │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_disabled_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_pressed_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_disabled_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_pressed_holo.png │ │ │ │ │ ├── efp_light__ic_action_cancel.png │ │ │ │ │ ├── efp_light__ic_action_deselect.png │ │ │ │ │ ├── efp_light__ic_action_grid.png │ │ │ │ │ ├── efp_light__ic_action_invert_selection.png │ │ │ │ │ ├── efp_light__ic_action_list.png │ │ │ │ │ ├── efp_light__ic_action_new_folder.png │ │ │ │ │ ├── efp_light__ic_action_ok.png │ │ │ │ │ ├── efp_light__ic_action_select_all.png │ │ │ │ │ ├── efp_light__ic_action_sort.png │ │ │ │ │ ├── efp_light__list_activated_holo.9.png │ │ │ │ │ ├── efp_light__list_focused_holo.9.png │ │ │ │ │ ├── efp_light__list_longpressed_holo.9.png │ │ │ │ │ ├── efp_light__list_pressed_holo.9.png │ │ │ │ │ ├── efp_light__list_selector_disabled_holo.9.png │ │ │ │ │ ├── efp_light__text_select_handle_left.png │ │ │ │ │ ├── efp_light__text_select_handle_middle.png │ │ │ │ │ ├── efp_light__text_select_handle_right.png │ │ │ │ │ ├── efp_light__textfield_activated_holo.9.png │ │ │ │ │ ├── efp_light__textfield_default_holo.9.png │ │ │ │ │ ├── efp_light__textfield_disabled_focused_holo.9.png │ │ │ │ │ ├── efp_light__textfield_disabled_holo.9.png │ │ │ │ │ └── efp_light__textfield_focused_holo.9.png │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ ├── efp__ic_file.png │ │ │ │ │ ├── efp__ic_folder.png │ │ │ │ │ ├── efp__ic_launcher.png │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_pressed_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_pressed_holo.png │ │ │ │ │ ├── efp_dark__ic_action_cancel.png │ │ │ │ │ ├── efp_dark__ic_action_deselect.png │ │ │ │ │ ├── efp_dark__ic_action_grid.png │ │ │ │ │ ├── efp_dark__ic_action_invert_selection.png │ │ │ │ │ ├── efp_dark__ic_action_list.png │ │ │ │ │ ├── efp_dark__ic_action_new_folder.png │ │ │ │ │ ├── efp_dark__ic_action_ok.png │ │ │ │ │ ├── efp_dark__ic_action_select_all.png │ │ │ │ │ ├── efp_dark__ic_action_sort.png │ │ │ │ │ ├── efp_dark__list_activated_holo.9.png │ │ │ │ │ ├── efp_dark__list_focused_holo.9.png │ │ │ │ │ ├── efp_dark__list_longpressed_holo.9.png │ │ │ │ │ ├── efp_dark__list_pressed_holo.9.png │ │ │ │ │ ├── efp_dark__list_selector_disabled_holo.9.png │ │ │ │ │ ├── efp_dark__text_select_handle_left.png │ │ │ │ │ ├── efp_dark__text_select_handle_middle.png │ │ │ │ │ ├── efp_dark__text_select_handle_right.png │ │ │ │ │ ├── efp_dark__textfield_activated_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_default_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_disabled_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_focused_holo.9.png │ │ │ │ │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_disabled_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_pressed_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_disabled_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_pressed_holo.png │ │ │ │ │ ├── efp_light__ic_action_cancel.png │ │ │ │ │ ├── efp_light__ic_action_deselect.png │ │ │ │ │ ├── efp_light__ic_action_grid.png │ │ │ │ │ ├── efp_light__ic_action_invert_selection.png │ │ │ │ │ ├── efp_light__ic_action_list.png │ │ │ │ │ ├── efp_light__ic_action_new_folder.png │ │ │ │ │ ├── efp_light__ic_action_ok.png │ │ │ │ │ ├── efp_light__ic_action_select_all.png │ │ │ │ │ ├── efp_light__ic_action_sort.png │ │ │ │ │ ├── efp_light__list_activated_holo.9.png │ │ │ │ │ ├── efp_light__list_focused_holo.9.png │ │ │ │ │ ├── efp_light__list_longpressed_holo.9.png │ │ │ │ │ ├── efp_light__list_pressed_holo.9.png │ │ │ │ │ ├── efp_light__list_selector_disabled_holo.9.png │ │ │ │ │ ├── efp_light__text_select_handle_left.png │ │ │ │ │ ├── efp_light__text_select_handle_middle.png │ │ │ │ │ ├── efp_light__text_select_handle_right.png │ │ │ │ │ ├── efp_light__textfield_activated_holo.9.png │ │ │ │ │ ├── efp_light__textfield_default_holo.9.png │ │ │ │ │ ├── efp_light__textfield_disabled_focused_holo.9.png │ │ │ │ │ ├── efp_light__textfield_disabled_holo.9.png │ │ │ │ │ └── efp_light__textfield_focused_holo.9.png │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ ├── efp__ic_file.png │ │ │ │ │ ├── efp__ic_folder.png │ │ │ │ │ ├── efp__ic_launcher.png │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_pressed_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_pressed_holo.png │ │ │ │ │ ├── efp_dark__ic_action_cancel.png │ │ │ │ │ ├── efp_dark__ic_action_deselect.png │ │ │ │ │ ├── efp_dark__ic_action_grid.png │ │ │ │ │ ├── efp_dark__ic_action_invert_selection.png │ │ │ │ │ ├── efp_dark__ic_action_list.png │ │ │ │ │ ├── efp_dark__ic_action_new_folder.png │ │ │ │ │ ├── efp_dark__ic_action_ok.png │ │ │ │ │ ├── efp_dark__ic_action_select_all.png │ │ │ │ │ ├── efp_dark__ic_action_sort.png │ │ │ │ │ ├── efp_dark__list_activated_holo.9.png │ │ │ │ │ ├── efp_dark__list_focused_holo.9.png │ │ │ │ │ ├── efp_dark__list_longpressed_holo.9.png │ │ │ │ │ ├── efp_dark__list_pressed_holo.9.png │ │ │ │ │ ├── efp_dark__list_selector_disabled_holo.9.png │ │ │ │ │ ├── efp_dark__text_select_handle_left.png │ │ │ │ │ ├── efp_dark__text_select_handle_middle.png │ │ │ │ │ ├── efp_dark__text_select_handle_right.png │ │ │ │ │ ├── efp_dark__textfield_activated_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_default_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_disabled_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_focused_holo.9.png │ │ │ │ │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_disabled_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_pressed_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_disabled_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_pressed_holo.png │ │ │ │ │ ├── efp_light__ic_action_cancel.png │ │ │ │ │ ├── efp_light__ic_action_deselect.png │ │ │ │ │ ├── efp_light__ic_action_grid.png │ │ │ │ │ ├── efp_light__ic_action_invert_selection.png │ │ │ │ │ ├── efp_light__ic_action_list.png │ │ │ │ │ ├── efp_light__ic_action_new_folder.png │ │ │ │ │ ├── efp_light__ic_action_ok.png │ │ │ │ │ ├── efp_light__ic_action_select_all.png │ │ │ │ │ ├── efp_light__ic_action_sort.png │ │ │ │ │ ├── efp_light__list_activated_holo.9.png │ │ │ │ │ ├── efp_light__list_focused_holo.9.png │ │ │ │ │ ├── efp_light__list_longpressed_holo.9.png │ │ │ │ │ ├── efp_light__list_pressed_holo.9.png │ │ │ │ │ ├── efp_light__list_selector_disabled_holo.9.png │ │ │ │ │ ├── efp_light__text_select_handle_left.png │ │ │ │ │ ├── efp_light__text_select_handle_middle.png │ │ │ │ │ ├── efp_light__text_select_handle_right.png │ │ │ │ │ ├── efp_light__textfield_activated_holo.9.png │ │ │ │ │ ├── efp_light__textfield_default_holo.9.png │ │ │ │ │ ├── efp_light__textfield_disabled_focused_holo.9.png │ │ │ │ │ ├── efp_light__textfield_disabled_holo.9.png │ │ │ │ │ └── efp_light__textfield_focused_holo.9.png │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ ├── efp__ic_file.png │ │ │ │ │ ├── efp__ic_folder.png │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_pressed_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_pressed_holo.png │ │ │ │ │ ├── efp_dark__ic_action_cancel.png │ │ │ │ │ ├── efp_dark__ic_action_deselect.png │ │ │ │ │ ├── efp_dark__ic_action_grid.png │ │ │ │ │ ├── efp_dark__ic_action_invert_selection.png │ │ │ │ │ ├── efp_dark__ic_action_list.png │ │ │ │ │ ├── efp_dark__ic_action_new_folder.png │ │ │ │ │ ├── efp_dark__ic_action_ok.png │ │ │ │ │ ├── efp_dark__ic_action_select_all.png │ │ │ │ │ ├── efp_dark__ic_action_sort.png │ │ │ │ │ ├── efp_dark__list_activated_holo.9.png │ │ │ │ │ ├── efp_dark__list_focused_holo.9.png │ │ │ │ │ ├── efp_dark__list_longpressed_holo.9.png │ │ │ │ │ ├── efp_dark__list_pressed_holo.9.png │ │ │ │ │ ├── efp_dark__list_selector_disabled_holo.9.png │ │ │ │ │ ├── efp_dark__text_select_handle_left.png │ │ │ │ │ ├── efp_dark__text_select_handle_middle.png │ │ │ │ │ ├── efp_dark__text_select_handle_right.png │ │ │ │ │ ├── efp_dark__textfield_activated_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_default_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_disabled_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_focused_holo.9.png │ │ │ │ │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_disabled_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_pressed_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_disabled_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_pressed_holo.png │ │ │ │ │ ├── efp_light__ic_action_cancel.png │ │ │ │ │ ├── efp_light__ic_action_deselect.png │ │ │ │ │ ├── efp_light__ic_action_grid.png │ │ │ │ │ ├── efp_light__ic_action_invert_selection.png │ │ │ │ │ ├── efp_light__ic_action_list.png │ │ │ │ │ ├── efp_light__ic_action_new_folder.png │ │ │ │ │ ├── efp_light__ic_action_ok.png │ │ │ │ │ ├── efp_light__ic_action_select_all.png │ │ │ │ │ ├── efp_light__ic_action_sort.png │ │ │ │ │ ├── efp_light__list_activated_holo.9.png │ │ │ │ │ ├── efp_light__list_focused_holo.9.png │ │ │ │ │ ├── efp_light__list_longpressed_holo.9.png │ │ │ │ │ ├── efp_light__list_pressed_holo.9.png │ │ │ │ │ ├── efp_light__list_selector_disabled_holo.9.png │ │ │ │ │ ├── efp_light__text_select_handle_left.png │ │ │ │ │ ├── efp_light__text_select_handle_middle.png │ │ │ │ │ ├── efp_light__text_select_handle_right.png │ │ │ │ │ ├── efp_light__textfield_activated_holo.9.png │ │ │ │ │ ├── efp_light__textfield_default_holo.9.png │ │ │ │ │ ├── efp_light__textfield_disabled_focused_holo.9.png │ │ │ │ │ ├── efp_light__textfield_disabled_holo.9.png │ │ │ │ │ └── efp_light__textfield_focused_holo.9.png │ │ │ │ │ ├── drawable │ │ │ │ │ ├── efp__header_buttons_selector.xml │ │ │ │ │ ├── efp_dark__activated_background_holo.xml │ │ │ │ │ ├── efp_dark__btn_check_holo.xml │ │ │ │ │ ├── efp_dark__edit_text_holo.xml │ │ │ │ │ ├── efp_dark__item_background_holo.xml │ │ │ │ │ ├── efp_dark__list_selector_background_transition_holo.xml │ │ │ │ │ ├── efp_dark__list_selector_holo.xml │ │ │ │ │ ├── efp_light__activated_background_holo.xml │ │ │ │ │ ├── efp_light__btn_check_holo.xml │ │ │ │ │ ├── efp_light__edit_text_holo.xml │ │ │ │ │ ├── efp_light__item_background_holo.xml │ │ │ │ │ ├── efp_light__list_selector_background_transition_holo.xml │ │ │ │ │ └── efp_light__list_selector_holo.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── efp__empty.xml │ │ │ │ │ ├── efp__grid_item.xml │ │ │ │ │ ├── efp__list_item.xml │ │ │ │ │ ├── efp__main_activity.xml │ │ │ │ │ └── efp__new_folder.xml │ │ │ │ │ ├── values-ar │ │ │ │ │ └── values-ar.xml │ │ │ │ │ ├── values-de │ │ │ │ │ └── values-de.xml │ │ │ │ │ ├── values-es │ │ │ │ │ └── values-es.xml │ │ │ │ │ ├── values-et │ │ │ │ │ └── values-et.xml │ │ │ │ │ ├── values-hi │ │ │ │ │ └── values-hi.xml │ │ │ │ │ ├── values-ja │ │ │ │ │ └── values-ja.xml │ │ │ │ │ ├── values-lv │ │ │ │ │ └── values-lv.xml │ │ │ │ │ ├── values-pt │ │ │ │ │ └── values-pt.xml │ │ │ │ │ ├── values-ru │ │ │ │ │ └── values-ru.xml │ │ │ │ │ ├── values-tr │ │ │ │ │ └── values-tr.xml │ │ │ │ │ ├── values-uk │ │ │ │ │ └── values-uk.xml │ │ │ │ │ ├── values-v11 │ │ │ │ │ └── values-v11.xml │ │ │ │ │ ├── values-v9 │ │ │ │ │ └── values-v9.xml │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ └── release │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ ├── efp__ic_file.png │ │ │ │ ├── efp__ic_folder.png │ │ │ │ ├── efp__ic_launcher.png │ │ │ │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ │ │ │ ├── efp_dark__btn_check_off_disabled_holo.png │ │ │ │ ├── efp_dark__btn_check_off_focused_holo.png │ │ │ │ ├── efp_dark__btn_check_off_holo.png │ │ │ │ ├── efp_dark__btn_check_off_pressed_holo.png │ │ │ │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ │ │ │ ├── efp_dark__btn_check_on_disabled_holo.png │ │ │ │ ├── efp_dark__btn_check_on_focused_holo.png │ │ │ │ ├── efp_dark__btn_check_on_holo.png │ │ │ │ ├── efp_dark__btn_check_on_pressed_holo.png │ │ │ │ ├── efp_dark__ic_action_cancel.png │ │ │ │ ├── efp_dark__ic_action_deselect.png │ │ │ │ ├── efp_dark__ic_action_grid.png │ │ │ │ ├── efp_dark__ic_action_invert_selection.png │ │ │ │ ├── efp_dark__ic_action_list.png │ │ │ │ ├── efp_dark__ic_action_new_folder.png │ │ │ │ ├── efp_dark__ic_action_ok.png │ │ │ │ ├── efp_dark__ic_action_select_all.png │ │ │ │ ├── efp_dark__ic_action_sort.png │ │ │ │ ├── efp_dark__list_activated_holo.9.png │ │ │ │ ├── efp_dark__list_focused_holo.9.png │ │ │ │ ├── efp_dark__list_longpressed_holo.9.png │ │ │ │ ├── efp_dark__list_pressed_holo.9.png │ │ │ │ ├── efp_dark__list_selector_disabled_holo.9.png │ │ │ │ ├── efp_dark__text_select_handle_left.png │ │ │ │ ├── efp_dark__text_select_handle_middle.png │ │ │ │ ├── efp_dark__text_select_handle_right.png │ │ │ │ ├── efp_dark__textfield_activated_holo.9.png │ │ │ │ ├── efp_dark__textfield_default_holo.9.png │ │ │ │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ │ │ │ ├── efp_dark__textfield_disabled_holo.9.png │ │ │ │ ├── efp_dark__textfield_focused_holo.9.png │ │ │ │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ │ │ │ ├── efp_light__btn_check_off_disabled_holo.png │ │ │ │ ├── efp_light__btn_check_off_focused_holo.png │ │ │ │ ├── efp_light__btn_check_off_holo.png │ │ │ │ ├── efp_light__btn_check_off_pressed_holo.png │ │ │ │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ │ │ │ ├── efp_light__btn_check_on_disabled_holo.png │ │ │ │ ├── efp_light__btn_check_on_focused_holo.png │ │ │ │ ├── efp_light__btn_check_on_holo.png │ │ │ │ ├── efp_light__btn_check_on_pressed_holo.png │ │ │ │ ├── efp_light__ic_action_cancel.png │ │ │ │ ├── efp_light__ic_action_deselect.png │ │ │ │ ├── efp_light__ic_action_grid.png │ │ │ │ ├── efp_light__ic_action_invert_selection.png │ │ │ │ ├── efp_light__ic_action_list.png │ │ │ │ ├── efp_light__ic_action_new_folder.png │ │ │ │ ├── efp_light__ic_action_ok.png │ │ │ │ ├── efp_light__ic_action_select_all.png │ │ │ │ ├── efp_light__ic_action_sort.png │ │ │ │ ├── efp_light__list_activated_holo.9.png │ │ │ │ ├── efp_light__list_focused_holo.9.png │ │ │ │ ├── efp_light__list_longpressed_holo.9.png │ │ │ │ ├── efp_light__list_pressed_holo.9.png │ │ │ │ ├── efp_light__list_selector_disabled_holo.9.png │ │ │ │ ├── efp_light__text_select_handle_left.png │ │ │ │ ├── efp_light__text_select_handle_middle.png │ │ │ │ ├── efp_light__text_select_handle_right.png │ │ │ │ ├── efp_light__textfield_activated_holo.9.png │ │ │ │ ├── efp_light__textfield_default_holo.9.png │ │ │ │ ├── efp_light__textfield_disabled_focused_holo.9.png │ │ │ │ ├── efp_light__textfield_disabled_holo.9.png │ │ │ │ └── efp_light__textfield_focused_holo.9.png │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ ├── efp__ic_file.png │ │ │ │ ├── efp__ic_folder.png │ │ │ │ ├── efp__ic_launcher.png │ │ │ │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ │ │ │ ├── efp_dark__btn_check_off_disabled_holo.png │ │ │ │ ├── efp_dark__btn_check_off_focused_holo.png │ │ │ │ ├── efp_dark__btn_check_off_holo.png │ │ │ │ ├── efp_dark__btn_check_off_pressed_holo.png │ │ │ │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ │ │ │ ├── efp_dark__btn_check_on_disabled_holo.png │ │ │ │ ├── efp_dark__btn_check_on_focused_holo.png │ │ │ │ ├── efp_dark__btn_check_on_holo.png │ │ │ │ ├── efp_dark__btn_check_on_pressed_holo.png │ │ │ │ ├── efp_dark__ic_action_cancel.png │ │ │ │ ├── efp_dark__ic_action_deselect.png │ │ │ │ ├── efp_dark__ic_action_grid.png │ │ │ │ ├── efp_dark__ic_action_invert_selection.png │ │ │ │ ├── efp_dark__ic_action_list.png │ │ │ │ ├── efp_dark__ic_action_new_folder.png │ │ │ │ ├── efp_dark__ic_action_ok.png │ │ │ │ ├── efp_dark__ic_action_select_all.png │ │ │ │ ├── efp_dark__ic_action_sort.png │ │ │ │ ├── efp_dark__list_activated_holo.9.png │ │ │ │ ├── efp_dark__list_focused_holo.9.png │ │ │ │ ├── efp_dark__list_longpressed_holo.9.png │ │ │ │ ├── efp_dark__list_pressed_holo.9.png │ │ │ │ ├── efp_dark__list_selector_disabled_holo.9.png │ │ │ │ ├── efp_dark__text_select_handle_left.png │ │ │ │ ├── efp_dark__text_select_handle_middle.png │ │ │ │ ├── efp_dark__text_select_handle_right.png │ │ │ │ ├── efp_dark__textfield_activated_holo.9.png │ │ │ │ ├── efp_dark__textfield_default_holo.9.png │ │ │ │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ │ │ │ ├── efp_dark__textfield_disabled_holo.9.png │ │ │ │ ├── efp_dark__textfield_focused_holo.9.png │ │ │ │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ │ │ │ ├── efp_light__btn_check_off_disabled_holo.png │ │ │ │ ├── efp_light__btn_check_off_focused_holo.png │ │ │ │ ├── efp_light__btn_check_off_holo.png │ │ │ │ ├── efp_light__btn_check_off_pressed_holo.png │ │ │ │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ │ │ │ ├── efp_light__btn_check_on_disabled_holo.png │ │ │ │ ├── efp_light__btn_check_on_focused_holo.png │ │ │ │ ├── efp_light__btn_check_on_holo.png │ │ │ │ ├── efp_light__btn_check_on_pressed_holo.png │ │ │ │ ├── efp_light__ic_action_cancel.png │ │ │ │ ├── efp_light__ic_action_deselect.png │ │ │ │ ├── efp_light__ic_action_grid.png │ │ │ │ ├── efp_light__ic_action_invert_selection.png │ │ │ │ ├── efp_light__ic_action_list.png │ │ │ │ ├── efp_light__ic_action_new_folder.png │ │ │ │ ├── efp_light__ic_action_ok.png │ │ │ │ ├── efp_light__ic_action_select_all.png │ │ │ │ ├── efp_light__ic_action_sort.png │ │ │ │ ├── efp_light__list_activated_holo.9.png │ │ │ │ ├── efp_light__list_focused_holo.9.png │ │ │ │ ├── efp_light__list_longpressed_holo.9.png │ │ │ │ ├── efp_light__list_pressed_holo.9.png │ │ │ │ ├── efp_light__list_selector_disabled_holo.9.png │ │ │ │ ├── efp_light__text_select_handle_left.png │ │ │ │ ├── efp_light__text_select_handle_middle.png │ │ │ │ ├── efp_light__text_select_handle_right.png │ │ │ │ ├── efp_light__textfield_activated_holo.9.png │ │ │ │ ├── efp_light__textfield_default_holo.9.png │ │ │ │ ├── efp_light__textfield_disabled_focused_holo.9.png │ │ │ │ ├── efp_light__textfield_disabled_holo.9.png │ │ │ │ └── efp_light__textfield_focused_holo.9.png │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ ├── efp__ic_file.png │ │ │ │ ├── efp__ic_folder.png │ │ │ │ ├── efp__ic_launcher.png │ │ │ │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ │ │ │ ├── efp_dark__btn_check_off_disabled_holo.png │ │ │ │ ├── efp_dark__btn_check_off_focused_holo.png │ │ │ │ ├── efp_dark__btn_check_off_holo.png │ │ │ │ ├── efp_dark__btn_check_off_pressed_holo.png │ │ │ │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ │ │ │ ├── efp_dark__btn_check_on_disabled_holo.png │ │ │ │ ├── efp_dark__btn_check_on_focused_holo.png │ │ │ │ ├── efp_dark__btn_check_on_holo.png │ │ │ │ ├── efp_dark__btn_check_on_pressed_holo.png │ │ │ │ ├── efp_dark__ic_action_cancel.png │ │ │ │ ├── efp_dark__ic_action_deselect.png │ │ │ │ ├── efp_dark__ic_action_grid.png │ │ │ │ ├── efp_dark__ic_action_invert_selection.png │ │ │ │ ├── efp_dark__ic_action_list.png │ │ │ │ ├── efp_dark__ic_action_new_folder.png │ │ │ │ ├── efp_dark__ic_action_ok.png │ │ │ │ ├── efp_dark__ic_action_select_all.png │ │ │ │ ├── efp_dark__ic_action_sort.png │ │ │ │ ├── efp_dark__list_activated_holo.9.png │ │ │ │ ├── efp_dark__list_focused_holo.9.png │ │ │ │ ├── efp_dark__list_longpressed_holo.9.png │ │ │ │ ├── efp_dark__list_pressed_holo.9.png │ │ │ │ ├── efp_dark__list_selector_disabled_holo.9.png │ │ │ │ ├── efp_dark__text_select_handle_left.png │ │ │ │ ├── efp_dark__text_select_handle_middle.png │ │ │ │ ├── efp_dark__text_select_handle_right.png │ │ │ │ ├── efp_dark__textfield_activated_holo.9.png │ │ │ │ ├── efp_dark__textfield_default_holo.9.png │ │ │ │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ │ │ │ ├── efp_dark__textfield_disabled_holo.9.png │ │ │ │ ├── efp_dark__textfield_focused_holo.9.png │ │ │ │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ │ │ │ ├── efp_light__btn_check_off_disabled_holo.png │ │ │ │ ├── efp_light__btn_check_off_focused_holo.png │ │ │ │ ├── efp_light__btn_check_off_holo.png │ │ │ │ ├── efp_light__btn_check_off_pressed_holo.png │ │ │ │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ │ │ │ ├── efp_light__btn_check_on_disabled_holo.png │ │ │ │ ├── efp_light__btn_check_on_focused_holo.png │ │ │ │ ├── efp_light__btn_check_on_holo.png │ │ │ │ ├── efp_light__btn_check_on_pressed_holo.png │ │ │ │ ├── efp_light__ic_action_cancel.png │ │ │ │ ├── efp_light__ic_action_deselect.png │ │ │ │ ├── efp_light__ic_action_grid.png │ │ │ │ ├── efp_light__ic_action_invert_selection.png │ │ │ │ ├── efp_light__ic_action_list.png │ │ │ │ ├── efp_light__ic_action_new_folder.png │ │ │ │ ├── efp_light__ic_action_ok.png │ │ │ │ ├── efp_light__ic_action_select_all.png │ │ │ │ ├── efp_light__ic_action_sort.png │ │ │ │ ├── efp_light__list_activated_holo.9.png │ │ │ │ ├── efp_light__list_focused_holo.9.png │ │ │ │ ├── efp_light__list_longpressed_holo.9.png │ │ │ │ ├── efp_light__list_pressed_holo.9.png │ │ │ │ ├── efp_light__list_selector_disabled_holo.9.png │ │ │ │ ├── efp_light__text_select_handle_left.png │ │ │ │ ├── efp_light__text_select_handle_middle.png │ │ │ │ ├── efp_light__text_select_handle_right.png │ │ │ │ ├── efp_light__textfield_activated_holo.9.png │ │ │ │ ├── efp_light__textfield_default_holo.9.png │ │ │ │ ├── efp_light__textfield_disabled_focused_holo.9.png │ │ │ │ ├── efp_light__textfield_disabled_holo.9.png │ │ │ │ └── efp_light__textfield_focused_holo.9.png │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ ├── efp__ic_file.png │ │ │ │ ├── efp__ic_folder.png │ │ │ │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ │ │ │ ├── efp_dark__btn_check_off_disabled_holo.png │ │ │ │ ├── efp_dark__btn_check_off_focused_holo.png │ │ │ │ ├── efp_dark__btn_check_off_holo.png │ │ │ │ ├── efp_dark__btn_check_off_pressed_holo.png │ │ │ │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ │ │ │ ├── efp_dark__btn_check_on_disabled_holo.png │ │ │ │ ├── efp_dark__btn_check_on_focused_holo.png │ │ │ │ ├── efp_dark__btn_check_on_holo.png │ │ │ │ ├── efp_dark__btn_check_on_pressed_holo.png │ │ │ │ ├── efp_dark__ic_action_cancel.png │ │ │ │ ├── efp_dark__ic_action_deselect.png │ │ │ │ ├── efp_dark__ic_action_grid.png │ │ │ │ ├── efp_dark__ic_action_invert_selection.png │ │ │ │ ├── efp_dark__ic_action_list.png │ │ │ │ ├── efp_dark__ic_action_new_folder.png │ │ │ │ ├── efp_dark__ic_action_ok.png │ │ │ │ ├── efp_dark__ic_action_select_all.png │ │ │ │ ├── efp_dark__ic_action_sort.png │ │ │ │ ├── efp_dark__list_activated_holo.9.png │ │ │ │ ├── efp_dark__list_focused_holo.9.png │ │ │ │ ├── efp_dark__list_longpressed_holo.9.png │ │ │ │ ├── efp_dark__list_pressed_holo.9.png │ │ │ │ ├── efp_dark__list_selector_disabled_holo.9.png │ │ │ │ ├── efp_dark__text_select_handle_left.png │ │ │ │ ├── efp_dark__text_select_handle_middle.png │ │ │ │ ├── efp_dark__text_select_handle_right.png │ │ │ │ ├── efp_dark__textfield_activated_holo.9.png │ │ │ │ ├── efp_dark__textfield_default_holo.9.png │ │ │ │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ │ │ │ ├── efp_dark__textfield_disabled_holo.9.png │ │ │ │ ├── efp_dark__textfield_focused_holo.9.png │ │ │ │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ │ │ │ ├── efp_light__btn_check_off_disabled_holo.png │ │ │ │ ├── efp_light__btn_check_off_focused_holo.png │ │ │ │ ├── efp_light__btn_check_off_holo.png │ │ │ │ ├── efp_light__btn_check_off_pressed_holo.png │ │ │ │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ │ │ │ ├── efp_light__btn_check_on_disabled_holo.png │ │ │ │ ├── efp_light__btn_check_on_focused_holo.png │ │ │ │ ├── efp_light__btn_check_on_holo.png │ │ │ │ ├── efp_light__btn_check_on_pressed_holo.png │ │ │ │ ├── efp_light__ic_action_cancel.png │ │ │ │ ├── efp_light__ic_action_deselect.png │ │ │ │ ├── efp_light__ic_action_grid.png │ │ │ │ ├── efp_light__ic_action_invert_selection.png │ │ │ │ ├── efp_light__ic_action_list.png │ │ │ │ ├── efp_light__ic_action_new_folder.png │ │ │ │ ├── efp_light__ic_action_ok.png │ │ │ │ ├── efp_light__ic_action_select_all.png │ │ │ │ ├── efp_light__ic_action_sort.png │ │ │ │ ├── efp_light__list_activated_holo.9.png │ │ │ │ ├── efp_light__list_focused_holo.9.png │ │ │ │ ├── efp_light__list_longpressed_holo.9.png │ │ │ │ ├── efp_light__list_pressed_holo.9.png │ │ │ │ ├── efp_light__list_selector_disabled_holo.9.png │ │ │ │ ├── efp_light__text_select_handle_left.png │ │ │ │ ├── efp_light__text_select_handle_middle.png │ │ │ │ ├── efp_light__text_select_handle_right.png │ │ │ │ ├── efp_light__textfield_activated_holo.9.png │ │ │ │ ├── efp_light__textfield_default_holo.9.png │ │ │ │ ├── efp_light__textfield_disabled_focused_holo.9.png │ │ │ │ ├── efp_light__textfield_disabled_holo.9.png │ │ │ │ └── efp_light__textfield_focused_holo.9.png │ │ │ │ ├── drawable │ │ │ │ ├── efp__header_buttons_selector.xml │ │ │ │ ├── efp_dark__activated_background_holo.xml │ │ │ │ ├── efp_dark__btn_check_holo.xml │ │ │ │ ├── efp_dark__edit_text_holo.xml │ │ │ │ ├── efp_dark__item_background_holo.xml │ │ │ │ ├── efp_dark__list_selector_background_transition_holo.xml │ │ │ │ ├── efp_dark__list_selector_holo.xml │ │ │ │ ├── efp_light__activated_background_holo.xml │ │ │ │ ├── efp_light__btn_check_holo.xml │ │ │ │ ├── efp_light__edit_text_holo.xml │ │ │ │ ├── efp_light__item_background_holo.xml │ │ │ │ ├── efp_light__list_selector_background_transition_holo.xml │ │ │ │ └── efp_light__list_selector_holo.xml │ │ │ │ ├── layout │ │ │ │ ├── efp__empty.xml │ │ │ │ ├── efp__grid_item.xml │ │ │ │ ├── efp__list_item.xml │ │ │ │ ├── efp__main_activity.xml │ │ │ │ └── efp__new_folder.xml │ │ │ │ ├── values-ar │ │ │ │ └── values-ar.xml │ │ │ │ ├── values-de │ │ │ │ └── values-de.xml │ │ │ │ ├── values-es │ │ │ │ └── values-es.xml │ │ │ │ ├── values-et │ │ │ │ └── values-et.xml │ │ │ │ ├── values-hi │ │ │ │ └── values-hi.xml │ │ │ │ ├── values-ja │ │ │ │ └── values-ja.xml │ │ │ │ ├── values-lv │ │ │ │ └── values-lv.xml │ │ │ │ ├── values-pt │ │ │ │ └── values-pt.xml │ │ │ │ ├── values-ru │ │ │ │ └── values-ru.xml │ │ │ │ ├── values-tr │ │ │ │ └── values-tr.xml │ │ │ │ ├── values-uk │ │ │ │ └── values-uk.xml │ │ │ │ ├── values-v11 │ │ │ │ └── values-v11.xml │ │ │ │ ├── values-v9 │ │ │ │ └── values-v9.xml │ │ │ │ ├── values-zh-rTW │ │ │ │ └── values-zh-rTW.xml │ │ │ │ └── values │ │ │ │ └── values.xml │ │ ├── exploded-aar │ │ │ └── com.android.support │ │ │ │ └── support-v4 │ │ │ │ └── 23.0.1 │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── aapt │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── aidl │ │ │ │ └── android │ │ │ │ │ └── support │ │ │ │ │ └── v4 │ │ │ │ │ └── media │ │ │ │ │ ├── MediaMetadataCompat.aidl │ │ │ │ │ ├── RatingCompat.aidl │ │ │ │ │ └── session │ │ │ │ │ ├── MediaSessionCompat.aidl │ │ │ │ │ ├── ParcelableVolumeInfo.aidl │ │ │ │ │ └── PlaybackStateCompat.aidl │ │ │ │ ├── annotations.zip │ │ │ │ └── jars │ │ │ │ ├── classes.jar │ │ │ │ └── libs │ │ │ │ └── internal_impl-23.0.1.jar │ │ ├── incremental │ │ │ ├── compileDebugAidl │ │ │ │ └── dependency.store │ │ │ ├── compileDebugAndroidTestAidl │ │ │ │ └── dependency.store │ │ │ ├── compileReleaseAidl │ │ │ │ └── dependency.store │ │ │ ├── mergeDebugAndroidTestResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ ├── values-et │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── values-v11.xml │ │ │ │ │ ├── values-v9 │ │ │ │ │ │ └── values-v9.xml │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugAssets │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ ├── values-et │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── values-v11.xml │ │ │ │ │ ├── values-v9 │ │ │ │ │ │ └── values-v9.xml │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ │ ├── mergeDebugShaders │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseAssets │ │ │ │ └── merger.xml │ │ │ ├── mergeReleaseShaders │ │ │ │ └── merger.xml │ │ │ ├── packageDebugResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ ├── values-et │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── values-v11.xml │ │ │ │ │ ├── values-v9 │ │ │ │ │ │ └── values-v9.xml │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ │ └── packageReleaseResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ ├── values-ar │ │ │ │ │ └── values-ar.xml │ │ │ │ ├── values-de │ │ │ │ │ └── values-de.xml │ │ │ │ ├── values-es │ │ │ │ │ └── values-es.xml │ │ │ │ ├── values-et │ │ │ │ │ └── values-et.xml │ │ │ │ ├── values-hi │ │ │ │ │ └── values-hi.xml │ │ │ │ ├── values-ja │ │ │ │ │ └── values-ja.xml │ │ │ │ ├── values-lv │ │ │ │ │ └── values-lv.xml │ │ │ │ ├── values-pt │ │ │ │ │ └── values-pt.xml │ │ │ │ ├── values-ru │ │ │ │ │ └── values-ru.xml │ │ │ │ ├── values-tr │ │ │ │ │ └── values-tr.xml │ │ │ │ ├── values-uk │ │ │ │ │ └── values-uk.xml │ │ │ │ ├── values-v11 │ │ │ │ │ └── values-v11.xml │ │ │ │ ├── values-v9 │ │ │ │ │ └── values-v9.xml │ │ │ │ ├── values-zh-rTW │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ ├── manifest │ │ │ └── androidTest │ │ │ │ └── debug │ │ │ │ └── AndroidManifest.xml │ │ ├── manifests │ │ │ └── aapt │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── release │ │ │ │ └── AndroidManifest.xml │ │ ├── res │ │ │ ├── merged │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ ├── efp__ic_file.png │ │ │ │ │ │ ├── efp__ic_folder.png │ │ │ │ │ │ ├── efp__ic_launcher.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_focused_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_pressed_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_focused_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_pressed_holo.png │ │ │ │ │ │ ├── efp_dark__ic_action_cancel.png │ │ │ │ │ │ ├── efp_dark__ic_action_deselect.png │ │ │ │ │ │ ├── efp_dark__ic_action_grid.png │ │ │ │ │ │ ├── efp_dark__ic_action_invert_selection.png │ │ │ │ │ │ ├── efp_dark__ic_action_list.png │ │ │ │ │ │ ├── efp_dark__ic_action_new_folder.png │ │ │ │ │ │ ├── efp_dark__ic_action_ok.png │ │ │ │ │ │ ├── efp_dark__ic_action_select_all.png │ │ │ │ │ │ ├── efp_dark__ic_action_sort.png │ │ │ │ │ │ ├── efp_dark__list_activated_holo.9.png │ │ │ │ │ │ ├── efp_dark__list_focused_holo.9.png │ │ │ │ │ │ ├── efp_dark__list_longpressed_holo.9.png │ │ │ │ │ │ ├── efp_dark__list_pressed_holo.9.png │ │ │ │ │ │ ├── efp_dark__list_selector_disabled_holo.9.png │ │ │ │ │ │ ├── efp_dark__text_select_handle_left.png │ │ │ │ │ │ ├── efp_dark__text_select_handle_middle.png │ │ │ │ │ │ ├── efp_dark__text_select_handle_right.png │ │ │ │ │ │ ├── efp_dark__textfield_activated_holo.9.png │ │ │ │ │ │ ├── efp_dark__textfield_default_holo.9.png │ │ │ │ │ │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ │ │ │ │ │ ├── efp_dark__textfield_disabled_holo.9.png │ │ │ │ │ │ ├── efp_dark__textfield_focused_holo.9.png │ │ │ │ │ │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_off_disabled_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_off_focused_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_off_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_off_pressed_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_disabled_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_focused_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_pressed_holo.png │ │ │ │ │ │ ├── efp_light__ic_action_cancel.png │ │ │ │ │ │ ├── efp_light__ic_action_deselect.png │ │ │ │ │ │ ├── efp_light__ic_action_grid.png │ │ │ │ │ │ ├── efp_light__ic_action_invert_selection.png │ │ │ │ │ │ ├── efp_light__ic_action_list.png │ │ │ │ │ │ ├── efp_light__ic_action_new_folder.png │ │ │ │ │ │ ├── efp_light__ic_action_ok.png │ │ │ │ │ │ ├── efp_light__ic_action_select_all.png │ │ │ │ │ │ ├── efp_light__ic_action_sort.png │ │ │ │ │ │ ├── efp_light__list_activated_holo.9.png │ │ │ │ │ │ ├── efp_light__list_focused_holo.9.png │ │ │ │ │ │ ├── efp_light__list_longpressed_holo.9.png │ │ │ │ │ │ ├── efp_light__list_pressed_holo.9.png │ │ │ │ │ │ ├── efp_light__list_selector_disabled_holo.9.png │ │ │ │ │ │ ├── efp_light__text_select_handle_left.png │ │ │ │ │ │ ├── efp_light__text_select_handle_middle.png │ │ │ │ │ │ ├── efp_light__text_select_handle_right.png │ │ │ │ │ │ ├── efp_light__textfield_activated_holo.9.png │ │ │ │ │ │ ├── efp_light__textfield_default_holo.9.png │ │ │ │ │ │ ├── efp_light__textfield_disabled_focused_holo.9.png │ │ │ │ │ │ ├── efp_light__textfield_disabled_holo.9.png │ │ │ │ │ │ └── efp_light__textfield_focused_holo.9.png │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ ├── efp__ic_file.png │ │ │ │ │ │ ├── efp__ic_folder.png │ │ │ │ │ │ ├── efp__ic_launcher.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_focused_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_pressed_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_focused_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_pressed_holo.png │ │ │ │ │ │ ├── efp_dark__ic_action_cancel.png │ │ │ │ │ │ ├── efp_dark__ic_action_deselect.png │ │ │ │ │ │ ├── efp_dark__ic_action_grid.png │ │ │ │ │ │ ├── efp_dark__ic_action_invert_selection.png │ │ │ │ │ │ ├── efp_dark__ic_action_list.png │ │ │ │ │ │ ├── efp_dark__ic_action_new_folder.png │ │ │ │ │ │ ├── efp_dark__ic_action_ok.png │ │ │ │ │ │ ├── efp_dark__ic_action_select_all.png │ │ │ │ │ │ ├── efp_dark__ic_action_sort.png │ │ │ │ │ │ ├── efp_dark__list_activated_holo.9.png │ │ │ │ │ │ ├── efp_dark__list_focused_holo.9.png │ │ │ │ │ │ ├── efp_dark__list_longpressed_holo.9.png │ │ │ │ │ │ ├── efp_dark__list_pressed_holo.9.png │ │ │ │ │ │ ├── efp_dark__list_selector_disabled_holo.9.png │ │ │ │ │ │ ├── efp_dark__text_select_handle_left.png │ │ │ │ │ │ ├── efp_dark__text_select_handle_middle.png │ │ │ │ │ │ ├── efp_dark__text_select_handle_right.png │ │ │ │ │ │ ├── efp_dark__textfield_activated_holo.9.png │ │ │ │ │ │ ├── efp_dark__textfield_default_holo.9.png │ │ │ │ │ │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ │ │ │ │ │ ├── efp_dark__textfield_disabled_holo.9.png │ │ │ │ │ │ ├── efp_dark__textfield_focused_holo.9.png │ │ │ │ │ │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_off_disabled_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_off_focused_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_off_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_off_pressed_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_disabled_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_focused_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_pressed_holo.png │ │ │ │ │ │ ├── efp_light__ic_action_cancel.png │ │ │ │ │ │ ├── efp_light__ic_action_deselect.png │ │ │ │ │ │ ├── efp_light__ic_action_grid.png │ │ │ │ │ │ ├── efp_light__ic_action_invert_selection.png │ │ │ │ │ │ ├── efp_light__ic_action_list.png │ │ │ │ │ │ ├── efp_light__ic_action_new_folder.png │ │ │ │ │ │ ├── efp_light__ic_action_ok.png │ │ │ │ │ │ ├── efp_light__ic_action_select_all.png │ │ │ │ │ │ ├── efp_light__ic_action_sort.png │ │ │ │ │ │ ├── efp_light__list_activated_holo.9.png │ │ │ │ │ │ ├── efp_light__list_focused_holo.9.png │ │ │ │ │ │ ├── efp_light__list_longpressed_holo.9.png │ │ │ │ │ │ ├── efp_light__list_pressed_holo.9.png │ │ │ │ │ │ ├── efp_light__list_selector_disabled_holo.9.png │ │ │ │ │ │ ├── efp_light__text_select_handle_left.png │ │ │ │ │ │ ├── efp_light__text_select_handle_middle.png │ │ │ │ │ │ ├── efp_light__text_select_handle_right.png │ │ │ │ │ │ ├── efp_light__textfield_activated_holo.9.png │ │ │ │ │ │ ├── efp_light__textfield_default_holo.9.png │ │ │ │ │ │ ├── efp_light__textfield_disabled_focused_holo.9.png │ │ │ │ │ │ ├── efp_light__textfield_disabled_holo.9.png │ │ │ │ │ │ └── efp_light__textfield_focused_holo.9.png │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ ├── efp__ic_file.png │ │ │ │ │ │ ├── efp__ic_folder.png │ │ │ │ │ │ ├── efp__ic_launcher.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_focused_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_pressed_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_focused_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_pressed_holo.png │ │ │ │ │ │ ├── efp_dark__ic_action_cancel.png │ │ │ │ │ │ ├── efp_dark__ic_action_deselect.png │ │ │ │ │ │ ├── efp_dark__ic_action_grid.png │ │ │ │ │ │ ├── efp_dark__ic_action_invert_selection.png │ │ │ │ │ │ ├── efp_dark__ic_action_list.png │ │ │ │ │ │ ├── efp_dark__ic_action_new_folder.png │ │ │ │ │ │ ├── efp_dark__ic_action_ok.png │ │ │ │ │ │ ├── efp_dark__ic_action_select_all.png │ │ │ │ │ │ ├── efp_dark__ic_action_sort.png │ │ │ │ │ │ ├── efp_dark__list_activated_holo.9.png │ │ │ │ │ │ ├── efp_dark__list_focused_holo.9.png │ │ │ │ │ │ ├── efp_dark__list_longpressed_holo.9.png │ │ │ │ │ │ ├── efp_dark__list_pressed_holo.9.png │ │ │ │ │ │ ├── efp_dark__list_selector_disabled_holo.9.png │ │ │ │ │ │ ├── efp_dark__text_select_handle_left.png │ │ │ │ │ │ ├── efp_dark__text_select_handle_middle.png │ │ │ │ │ │ ├── efp_dark__text_select_handle_right.png │ │ │ │ │ │ ├── efp_dark__textfield_activated_holo.9.png │ │ │ │ │ │ ├── efp_dark__textfield_default_holo.9.png │ │ │ │ │ │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ │ │ │ │ │ ├── efp_dark__textfield_disabled_holo.9.png │ │ │ │ │ │ ├── efp_dark__textfield_focused_holo.9.png │ │ │ │ │ │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_off_disabled_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_off_focused_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_off_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_off_pressed_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_disabled_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_focused_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_pressed_holo.png │ │ │ │ │ │ ├── efp_light__ic_action_cancel.png │ │ │ │ │ │ ├── efp_light__ic_action_deselect.png │ │ │ │ │ │ ├── efp_light__ic_action_grid.png │ │ │ │ │ │ ├── efp_light__ic_action_invert_selection.png │ │ │ │ │ │ ├── efp_light__ic_action_list.png │ │ │ │ │ │ ├── efp_light__ic_action_new_folder.png │ │ │ │ │ │ ├── efp_light__ic_action_ok.png │ │ │ │ │ │ ├── efp_light__ic_action_select_all.png │ │ │ │ │ │ ├── efp_light__ic_action_sort.png │ │ │ │ │ │ ├── efp_light__list_activated_holo.9.png │ │ │ │ │ │ ├── efp_light__list_focused_holo.9.png │ │ │ │ │ │ ├── efp_light__list_longpressed_holo.9.png │ │ │ │ │ │ ├── efp_light__list_pressed_holo.9.png │ │ │ │ │ │ ├── efp_light__list_selector_disabled_holo.9.png │ │ │ │ │ │ ├── efp_light__text_select_handle_left.png │ │ │ │ │ │ ├── efp_light__text_select_handle_middle.png │ │ │ │ │ │ ├── efp_light__text_select_handle_right.png │ │ │ │ │ │ ├── efp_light__textfield_activated_holo.9.png │ │ │ │ │ │ ├── efp_light__textfield_default_holo.9.png │ │ │ │ │ │ ├── efp_light__textfield_disabled_focused_holo.9.png │ │ │ │ │ │ ├── efp_light__textfield_disabled_holo.9.png │ │ │ │ │ │ └── efp_light__textfield_focused_holo.9.png │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── efp__ic_file.png │ │ │ │ │ │ ├── efp__ic_folder.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_focused_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_off_pressed_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_focused_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_holo.png │ │ │ │ │ │ ├── efp_dark__btn_check_on_pressed_holo.png │ │ │ │ │ │ ├── efp_dark__ic_action_cancel.png │ │ │ │ │ │ ├── efp_dark__ic_action_deselect.png │ │ │ │ │ │ ├── efp_dark__ic_action_grid.png │ │ │ │ │ │ ├── efp_dark__ic_action_invert_selection.png │ │ │ │ │ │ ├── efp_dark__ic_action_list.png │ │ │ │ │ │ ├── efp_dark__ic_action_new_folder.png │ │ │ │ │ │ ├── efp_dark__ic_action_ok.png │ │ │ │ │ │ ├── efp_dark__ic_action_select_all.png │ │ │ │ │ │ ├── efp_dark__ic_action_sort.png │ │ │ │ │ │ ├── efp_dark__list_activated_holo.9.png │ │ │ │ │ │ ├── efp_dark__list_focused_holo.9.png │ │ │ │ │ │ ├── efp_dark__list_longpressed_holo.9.png │ │ │ │ │ │ ├── efp_dark__list_pressed_holo.9.png │ │ │ │ │ │ ├── efp_dark__list_selector_disabled_holo.9.png │ │ │ │ │ │ ├── efp_dark__text_select_handle_left.png │ │ │ │ │ │ ├── efp_dark__text_select_handle_middle.png │ │ │ │ │ │ ├── efp_dark__text_select_handle_right.png │ │ │ │ │ │ ├── efp_dark__textfield_activated_holo.9.png │ │ │ │ │ │ ├── efp_dark__textfield_default_holo.9.png │ │ │ │ │ │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ │ │ │ │ │ ├── efp_dark__textfield_disabled_holo.9.png │ │ │ │ │ │ ├── efp_dark__textfield_focused_holo.9.png │ │ │ │ │ │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_off_disabled_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_off_focused_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_off_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_off_pressed_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_disabled_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_focused_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_holo.png │ │ │ │ │ │ ├── efp_light__btn_check_on_pressed_holo.png │ │ │ │ │ │ ├── efp_light__ic_action_cancel.png │ │ │ │ │ │ ├── efp_light__ic_action_deselect.png │ │ │ │ │ │ ├── efp_light__ic_action_grid.png │ │ │ │ │ │ ├── efp_light__ic_action_invert_selection.png │ │ │ │ │ │ ├── efp_light__ic_action_list.png │ │ │ │ │ │ ├── efp_light__ic_action_new_folder.png │ │ │ │ │ │ ├── efp_light__ic_action_ok.png │ │ │ │ │ │ ├── efp_light__ic_action_select_all.png │ │ │ │ │ │ ├── efp_light__ic_action_sort.png │ │ │ │ │ │ ├── efp_light__list_activated_holo.9.png │ │ │ │ │ │ ├── efp_light__list_focused_holo.9.png │ │ │ │ │ │ ├── efp_light__list_longpressed_holo.9.png │ │ │ │ │ │ ├── efp_light__list_pressed_holo.9.png │ │ │ │ │ │ ├── efp_light__list_selector_disabled_holo.9.png │ │ │ │ │ │ ├── efp_light__text_select_handle_left.png │ │ │ │ │ │ ├── efp_light__text_select_handle_middle.png │ │ │ │ │ │ ├── efp_light__text_select_handle_right.png │ │ │ │ │ │ ├── efp_light__textfield_activated_holo.9.png │ │ │ │ │ │ ├── efp_light__textfield_default_holo.9.png │ │ │ │ │ │ ├── efp_light__textfield_disabled_focused_holo.9.png │ │ │ │ │ │ ├── efp_light__textfield_disabled_holo.9.png │ │ │ │ │ │ └── efp_light__textfield_focused_holo.9.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── efp__header_buttons_selector.xml │ │ │ │ │ │ ├── efp_dark__activated_background_holo.xml │ │ │ │ │ │ ├── efp_dark__btn_check_holo.xml │ │ │ │ │ │ ├── efp_dark__edit_text_holo.xml │ │ │ │ │ │ ├── efp_dark__item_background_holo.xml │ │ │ │ │ │ ├── efp_dark__list_selector_background_transition_holo.xml │ │ │ │ │ │ ├── efp_dark__list_selector_holo.xml │ │ │ │ │ │ ├── efp_light__activated_background_holo.xml │ │ │ │ │ │ ├── efp_light__btn_check_holo.xml │ │ │ │ │ │ ├── efp_light__edit_text_holo.xml │ │ │ │ │ │ ├── efp_light__item_background_holo.xml │ │ │ │ │ │ ├── efp_light__list_selector_background_transition_holo.xml │ │ │ │ │ │ └── efp_light__list_selector_holo.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── efp__empty.xml │ │ │ │ │ │ ├── efp__grid_item.xml │ │ │ │ │ │ ├── efp__list_item.xml │ │ │ │ │ │ ├── efp__main_activity.xml │ │ │ │ │ │ └── efp__new_folder.xml │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ ├── values-et │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── values-v11.xml │ │ │ │ │ │ ├── values-v9 │ │ │ │ │ │ └── values-v9.xml │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── debug │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ ├── efp__ic_file.png │ │ │ │ │ ├── efp__ic_folder.png │ │ │ │ │ ├── efp__ic_launcher.png │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_pressed_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_pressed_holo.png │ │ │ │ │ ├── efp_dark__ic_action_cancel.png │ │ │ │ │ ├── efp_dark__ic_action_deselect.png │ │ │ │ │ ├── efp_dark__ic_action_grid.png │ │ │ │ │ ├── efp_dark__ic_action_invert_selection.png │ │ │ │ │ ├── efp_dark__ic_action_list.png │ │ │ │ │ ├── efp_dark__ic_action_new_folder.png │ │ │ │ │ ├── efp_dark__ic_action_ok.png │ │ │ │ │ ├── efp_dark__ic_action_select_all.png │ │ │ │ │ ├── efp_dark__ic_action_sort.png │ │ │ │ │ ├── efp_dark__list_activated_holo.9.png │ │ │ │ │ ├── efp_dark__list_focused_holo.9.png │ │ │ │ │ ├── efp_dark__list_longpressed_holo.9.png │ │ │ │ │ ├── efp_dark__list_pressed_holo.9.png │ │ │ │ │ ├── efp_dark__list_selector_disabled_holo.9.png │ │ │ │ │ ├── efp_dark__text_select_handle_left.png │ │ │ │ │ ├── efp_dark__text_select_handle_middle.png │ │ │ │ │ ├── efp_dark__text_select_handle_right.png │ │ │ │ │ ├── efp_dark__textfield_activated_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_default_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_disabled_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_focused_holo.9.png │ │ │ │ │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_disabled_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_pressed_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_disabled_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_pressed_holo.png │ │ │ │ │ ├── efp_light__ic_action_cancel.png │ │ │ │ │ ├── efp_light__ic_action_deselect.png │ │ │ │ │ ├── efp_light__ic_action_grid.png │ │ │ │ │ ├── efp_light__ic_action_invert_selection.png │ │ │ │ │ ├── efp_light__ic_action_list.png │ │ │ │ │ ├── efp_light__ic_action_new_folder.png │ │ │ │ │ ├── efp_light__ic_action_ok.png │ │ │ │ │ ├── efp_light__ic_action_select_all.png │ │ │ │ │ ├── efp_light__ic_action_sort.png │ │ │ │ │ ├── efp_light__list_activated_holo.9.png │ │ │ │ │ ├── efp_light__list_focused_holo.9.png │ │ │ │ │ ├── efp_light__list_longpressed_holo.9.png │ │ │ │ │ ├── efp_light__list_pressed_holo.9.png │ │ │ │ │ ├── efp_light__list_selector_disabled_holo.9.png │ │ │ │ │ ├── efp_light__text_select_handle_left.png │ │ │ │ │ ├── efp_light__text_select_handle_middle.png │ │ │ │ │ ├── efp_light__text_select_handle_right.png │ │ │ │ │ ├── efp_light__textfield_activated_holo.9.png │ │ │ │ │ ├── efp_light__textfield_default_holo.9.png │ │ │ │ │ ├── efp_light__textfield_disabled_focused_holo.9.png │ │ │ │ │ ├── efp_light__textfield_disabled_holo.9.png │ │ │ │ │ └── efp_light__textfield_focused_holo.9.png │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ ├── efp__ic_file.png │ │ │ │ │ ├── efp__ic_folder.png │ │ │ │ │ ├── efp__ic_launcher.png │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_pressed_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_pressed_holo.png │ │ │ │ │ ├── efp_dark__ic_action_cancel.png │ │ │ │ │ ├── efp_dark__ic_action_deselect.png │ │ │ │ │ ├── efp_dark__ic_action_grid.png │ │ │ │ │ ├── efp_dark__ic_action_invert_selection.png │ │ │ │ │ ├── efp_dark__ic_action_list.png │ │ │ │ │ ├── efp_dark__ic_action_new_folder.png │ │ │ │ │ ├── efp_dark__ic_action_ok.png │ │ │ │ │ ├── efp_dark__ic_action_select_all.png │ │ │ │ │ ├── efp_dark__ic_action_sort.png │ │ │ │ │ ├── efp_dark__list_activated_holo.9.png │ │ │ │ │ ├── efp_dark__list_focused_holo.9.png │ │ │ │ │ ├── efp_dark__list_longpressed_holo.9.png │ │ │ │ │ ├── efp_dark__list_pressed_holo.9.png │ │ │ │ │ ├── efp_dark__list_selector_disabled_holo.9.png │ │ │ │ │ ├── efp_dark__text_select_handle_left.png │ │ │ │ │ ├── efp_dark__text_select_handle_middle.png │ │ │ │ │ ├── efp_dark__text_select_handle_right.png │ │ │ │ │ ├── efp_dark__textfield_activated_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_default_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_disabled_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_focused_holo.9.png │ │ │ │ │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_disabled_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_pressed_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_disabled_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_pressed_holo.png │ │ │ │ │ ├── efp_light__ic_action_cancel.png │ │ │ │ │ ├── efp_light__ic_action_deselect.png │ │ │ │ │ ├── efp_light__ic_action_grid.png │ │ │ │ │ ├── efp_light__ic_action_invert_selection.png │ │ │ │ │ ├── efp_light__ic_action_list.png │ │ │ │ │ ├── efp_light__ic_action_new_folder.png │ │ │ │ │ ├── efp_light__ic_action_ok.png │ │ │ │ │ ├── efp_light__ic_action_select_all.png │ │ │ │ │ ├── efp_light__ic_action_sort.png │ │ │ │ │ ├── efp_light__list_activated_holo.9.png │ │ │ │ │ ├── efp_light__list_focused_holo.9.png │ │ │ │ │ ├── efp_light__list_longpressed_holo.9.png │ │ │ │ │ ├── efp_light__list_pressed_holo.9.png │ │ │ │ │ ├── efp_light__list_selector_disabled_holo.9.png │ │ │ │ │ ├── efp_light__text_select_handle_left.png │ │ │ │ │ ├── efp_light__text_select_handle_middle.png │ │ │ │ │ ├── efp_light__text_select_handle_right.png │ │ │ │ │ ├── efp_light__textfield_activated_holo.9.png │ │ │ │ │ ├── efp_light__textfield_default_holo.9.png │ │ │ │ │ ├── efp_light__textfield_disabled_focused_holo.9.png │ │ │ │ │ ├── efp_light__textfield_disabled_holo.9.png │ │ │ │ │ └── efp_light__textfield_focused_holo.9.png │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ ├── efp__ic_file.png │ │ │ │ │ ├── efp__ic_folder.png │ │ │ │ │ ├── efp__ic_launcher.png │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_pressed_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_pressed_holo.png │ │ │ │ │ ├── efp_dark__ic_action_cancel.png │ │ │ │ │ ├── efp_dark__ic_action_deselect.png │ │ │ │ │ ├── efp_dark__ic_action_grid.png │ │ │ │ │ ├── efp_dark__ic_action_invert_selection.png │ │ │ │ │ ├── efp_dark__ic_action_list.png │ │ │ │ │ ├── efp_dark__ic_action_new_folder.png │ │ │ │ │ ├── efp_dark__ic_action_ok.png │ │ │ │ │ ├── efp_dark__ic_action_select_all.png │ │ │ │ │ ├── efp_dark__ic_action_sort.png │ │ │ │ │ ├── efp_dark__list_activated_holo.9.png │ │ │ │ │ ├── efp_dark__list_focused_holo.9.png │ │ │ │ │ ├── efp_dark__list_longpressed_holo.9.png │ │ │ │ │ ├── efp_dark__list_pressed_holo.9.png │ │ │ │ │ ├── efp_dark__list_selector_disabled_holo.9.png │ │ │ │ │ ├── efp_dark__text_select_handle_left.png │ │ │ │ │ ├── efp_dark__text_select_handle_middle.png │ │ │ │ │ ├── efp_dark__text_select_handle_right.png │ │ │ │ │ ├── efp_dark__textfield_activated_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_default_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_disabled_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_focused_holo.9.png │ │ │ │ │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_disabled_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_pressed_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_disabled_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_pressed_holo.png │ │ │ │ │ ├── efp_light__ic_action_cancel.png │ │ │ │ │ ├── efp_light__ic_action_deselect.png │ │ │ │ │ ├── efp_light__ic_action_grid.png │ │ │ │ │ ├── efp_light__ic_action_invert_selection.png │ │ │ │ │ ├── efp_light__ic_action_list.png │ │ │ │ │ ├── efp_light__ic_action_new_folder.png │ │ │ │ │ ├── efp_light__ic_action_ok.png │ │ │ │ │ ├── efp_light__ic_action_select_all.png │ │ │ │ │ ├── efp_light__ic_action_sort.png │ │ │ │ │ ├── efp_light__list_activated_holo.9.png │ │ │ │ │ ├── efp_light__list_focused_holo.9.png │ │ │ │ │ ├── efp_light__list_longpressed_holo.9.png │ │ │ │ │ ├── efp_light__list_pressed_holo.9.png │ │ │ │ │ ├── efp_light__list_selector_disabled_holo.9.png │ │ │ │ │ ├── efp_light__text_select_handle_left.png │ │ │ │ │ ├── efp_light__text_select_handle_middle.png │ │ │ │ │ ├── efp_light__text_select_handle_right.png │ │ │ │ │ ├── efp_light__textfield_activated_holo.9.png │ │ │ │ │ ├── efp_light__textfield_default_holo.9.png │ │ │ │ │ ├── efp_light__textfield_disabled_focused_holo.9.png │ │ │ │ │ ├── efp_light__textfield_disabled_holo.9.png │ │ │ │ │ └── efp_light__textfield_focused_holo.9.png │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ ├── efp__ic_file.png │ │ │ │ │ ├── efp__ic_folder.png │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_disabled_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_holo.png │ │ │ │ │ ├── efp_dark__btn_check_off_pressed_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_disabled_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_focused_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_holo.png │ │ │ │ │ ├── efp_dark__btn_check_on_pressed_holo.png │ │ │ │ │ ├── efp_dark__ic_action_cancel.png │ │ │ │ │ ├── efp_dark__ic_action_deselect.png │ │ │ │ │ ├── efp_dark__ic_action_grid.png │ │ │ │ │ ├── efp_dark__ic_action_invert_selection.png │ │ │ │ │ ├── efp_dark__ic_action_list.png │ │ │ │ │ ├── efp_dark__ic_action_new_folder.png │ │ │ │ │ ├── efp_dark__ic_action_ok.png │ │ │ │ │ ├── efp_dark__ic_action_select_all.png │ │ │ │ │ ├── efp_dark__ic_action_sort.png │ │ │ │ │ ├── efp_dark__list_activated_holo.9.png │ │ │ │ │ ├── efp_dark__list_focused_holo.9.png │ │ │ │ │ ├── efp_dark__list_longpressed_holo.9.png │ │ │ │ │ ├── efp_dark__list_pressed_holo.9.png │ │ │ │ │ ├── efp_dark__list_selector_disabled_holo.9.png │ │ │ │ │ ├── efp_dark__text_select_handle_left.png │ │ │ │ │ ├── efp_dark__text_select_handle_middle.png │ │ │ │ │ ├── efp_dark__text_select_handle_right.png │ │ │ │ │ ├── efp_dark__textfield_activated_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_default_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_disabled_holo.9.png │ │ │ │ │ ├── efp_dark__textfield_focused_holo.9.png │ │ │ │ │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_disabled_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_holo.png │ │ │ │ │ ├── efp_light__btn_check_off_pressed_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_disabled_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_focused_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_holo.png │ │ │ │ │ ├── efp_light__btn_check_on_pressed_holo.png │ │ │ │ │ ├── efp_light__ic_action_cancel.png │ │ │ │ │ ├── efp_light__ic_action_deselect.png │ │ │ │ │ ├── efp_light__ic_action_grid.png │ │ │ │ │ ├── efp_light__ic_action_invert_selection.png │ │ │ │ │ ├── efp_light__ic_action_list.png │ │ │ │ │ ├── efp_light__ic_action_new_folder.png │ │ │ │ │ ├── efp_light__ic_action_ok.png │ │ │ │ │ ├── efp_light__ic_action_select_all.png │ │ │ │ │ ├── efp_light__ic_action_sort.png │ │ │ │ │ ├── efp_light__list_activated_holo.9.png │ │ │ │ │ ├── efp_light__list_focused_holo.9.png │ │ │ │ │ ├── efp_light__list_longpressed_holo.9.png │ │ │ │ │ ├── efp_light__list_pressed_holo.9.png │ │ │ │ │ ├── efp_light__list_selector_disabled_holo.9.png │ │ │ │ │ ├── efp_light__text_select_handle_left.png │ │ │ │ │ ├── efp_light__text_select_handle_middle.png │ │ │ │ │ ├── efp_light__text_select_handle_right.png │ │ │ │ │ ├── efp_light__textfield_activated_holo.9.png │ │ │ │ │ ├── efp_light__textfield_default_holo.9.png │ │ │ │ │ ├── efp_light__textfield_disabled_focused_holo.9.png │ │ │ │ │ ├── efp_light__textfield_disabled_holo.9.png │ │ │ │ │ └── efp_light__textfield_focused_holo.9.png │ │ │ │ │ ├── drawable │ │ │ │ │ ├── efp__header_buttons_selector.xml │ │ │ │ │ ├── efp_dark__activated_background_holo.xml │ │ │ │ │ ├── efp_dark__btn_check_holo.xml │ │ │ │ │ ├── efp_dark__edit_text_holo.xml │ │ │ │ │ ├── efp_dark__item_background_holo.xml │ │ │ │ │ ├── efp_dark__list_selector_background_transition_holo.xml │ │ │ │ │ ├── efp_dark__list_selector_holo.xml │ │ │ │ │ ├── efp_light__activated_background_holo.xml │ │ │ │ │ ├── efp_light__btn_check_holo.xml │ │ │ │ │ ├── efp_light__edit_text_holo.xml │ │ │ │ │ ├── efp_light__item_background_holo.xml │ │ │ │ │ ├── efp_light__list_selector_background_transition_holo.xml │ │ │ │ │ └── efp_light__list_selector_holo.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── efp__empty.xml │ │ │ │ │ ├── efp__grid_item.xml │ │ │ │ │ ├── efp__list_item.xml │ │ │ │ │ ├── efp__main_activity.xml │ │ │ │ │ └── efp__new_folder.xml │ │ │ │ │ ├── values-ar │ │ │ │ │ └── values-ar.xml │ │ │ │ │ ├── values-de │ │ │ │ │ └── values-de.xml │ │ │ │ │ ├── values-es │ │ │ │ │ └── values-es.xml │ │ │ │ │ ├── values-et │ │ │ │ │ └── values-et.xml │ │ │ │ │ ├── values-hi │ │ │ │ │ └── values-hi.xml │ │ │ │ │ ├── values-ja │ │ │ │ │ └── values-ja.xml │ │ │ │ │ ├── values-lv │ │ │ │ │ └── values-lv.xml │ │ │ │ │ ├── values-pt │ │ │ │ │ └── values-pt.xml │ │ │ │ │ ├── values-ru │ │ │ │ │ └── values-ru.xml │ │ │ │ │ ├── values-tr │ │ │ │ │ └── values-tr.xml │ │ │ │ │ ├── values-uk │ │ │ │ │ └── values-uk.xml │ │ │ │ │ ├── values-v11 │ │ │ │ │ └── values-v11.xml │ │ │ │ │ ├── values-v9 │ │ │ │ │ └── values-v9.xml │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ └── resources-debug-androidTest.ap_ │ │ └── symbols │ │ │ └── androidTest │ │ │ └── debug │ │ │ └── R.txt │ └── outputs │ │ └── aar │ │ ├── library-debug.aar │ │ └── library-release.aar ├── gradle.properties ├── library.iml ├── libs │ └── universal-image-loader-1.9.4.jar └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── ru │ │ └── bartwell │ │ └── exfilepicker │ │ ├── DisplayImageOption.java │ │ ├── ExFilePicker.java │ │ ├── ExFilePickerActivity.java │ │ └── ExFilePickerParcelObject.java │ └── res │ ├── drawable-hdpi │ ├── efp__ic_file.png │ ├── efp__ic_folder.png │ ├── efp__ic_launcher.png │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ ├── efp_dark__btn_check_off_disabled_holo.png │ ├── efp_dark__btn_check_off_focused_holo.png │ ├── efp_dark__btn_check_off_holo.png │ ├── efp_dark__btn_check_off_pressed_holo.png │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ ├── efp_dark__btn_check_on_disabled_holo.png │ ├── efp_dark__btn_check_on_focused_holo.png │ ├── efp_dark__btn_check_on_holo.png │ ├── efp_dark__btn_check_on_pressed_holo.png │ ├── efp_dark__ic_action_cancel.png │ ├── efp_dark__ic_action_deselect.png │ ├── efp_dark__ic_action_grid.png │ ├── efp_dark__ic_action_invert_selection.png │ ├── efp_dark__ic_action_list.png │ ├── efp_dark__ic_action_new_folder.png │ ├── efp_dark__ic_action_ok.png │ ├── efp_dark__ic_action_select_all.png │ ├── efp_dark__ic_action_sort.png │ ├── efp_dark__list_activated_holo.9.png │ ├── efp_dark__list_focused_holo.9.png │ ├── efp_dark__list_longpressed_holo.9.png │ ├── efp_dark__list_pressed_holo.9.png │ ├── efp_dark__list_selector_disabled_holo.9.png │ ├── efp_dark__text_select_handle_left.png │ ├── efp_dark__text_select_handle_middle.png │ ├── efp_dark__text_select_handle_right.png │ ├── efp_dark__textfield_activated_holo.9.png │ ├── efp_dark__textfield_default_holo.9.png │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ ├── efp_dark__textfield_disabled_holo.9.png │ ├── efp_dark__textfield_focused_holo.9.png │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ ├── efp_light__btn_check_off_disabled_holo.png │ ├── efp_light__btn_check_off_focused_holo.png │ ├── efp_light__btn_check_off_holo.png │ ├── efp_light__btn_check_off_pressed_holo.png │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ ├── efp_light__btn_check_on_disabled_holo.png │ ├── efp_light__btn_check_on_focused_holo.png │ ├── efp_light__btn_check_on_holo.png │ ├── efp_light__btn_check_on_pressed_holo.png │ ├── efp_light__ic_action_cancel.png │ ├── efp_light__ic_action_deselect.png │ ├── efp_light__ic_action_grid.png │ ├── efp_light__ic_action_invert_selection.png │ ├── efp_light__ic_action_list.png │ ├── efp_light__ic_action_new_folder.png │ ├── efp_light__ic_action_ok.png │ ├── efp_light__ic_action_select_all.png │ ├── efp_light__ic_action_sort.png │ ├── efp_light__list_activated_holo.9.png │ ├── efp_light__list_focused_holo.9.png │ ├── efp_light__list_longpressed_holo.9.png │ ├── efp_light__list_pressed_holo.9.png │ ├── efp_light__list_selector_disabled_holo.9.png │ ├── efp_light__text_select_handle_left.png │ ├── efp_light__text_select_handle_middle.png │ ├── efp_light__text_select_handle_right.png │ ├── efp_light__textfield_activated_holo.9.png │ ├── efp_light__textfield_default_holo.9.png │ ├── efp_light__textfield_disabled_focused_holo.9.png │ ├── efp_light__textfield_disabled_holo.9.png │ └── efp_light__textfield_focused_holo.9.png │ ├── drawable-mdpi │ ├── efp__ic_file.png │ ├── efp__ic_folder.png │ ├── efp__ic_launcher.png │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ ├── efp_dark__btn_check_off_disabled_holo.png │ ├── efp_dark__btn_check_off_focused_holo.png │ ├── efp_dark__btn_check_off_holo.png │ ├── efp_dark__btn_check_off_pressed_holo.png │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ ├── efp_dark__btn_check_on_disabled_holo.png │ ├── efp_dark__btn_check_on_focused_holo.png │ ├── efp_dark__btn_check_on_holo.png │ ├── efp_dark__btn_check_on_pressed_holo.png │ ├── efp_dark__ic_action_cancel.png │ ├── efp_dark__ic_action_deselect.png │ ├── efp_dark__ic_action_grid.png │ ├── efp_dark__ic_action_invert_selection.png │ ├── efp_dark__ic_action_list.png │ ├── efp_dark__ic_action_new_folder.png │ ├── efp_dark__ic_action_ok.png │ ├── efp_dark__ic_action_select_all.png │ ├── efp_dark__ic_action_sort.png │ ├── efp_dark__list_activated_holo.9.png │ ├── efp_dark__list_focused_holo.9.png │ ├── efp_dark__list_longpressed_holo.9.png │ ├── efp_dark__list_pressed_holo.9.png │ ├── efp_dark__list_selector_disabled_holo.9.png │ ├── efp_dark__text_select_handle_left.png │ ├── efp_dark__text_select_handle_middle.png │ ├── efp_dark__text_select_handle_right.png │ ├── efp_dark__textfield_activated_holo.9.png │ ├── efp_dark__textfield_default_holo.9.png │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ ├── efp_dark__textfield_disabled_holo.9.png │ ├── efp_dark__textfield_focused_holo.9.png │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ ├── efp_light__btn_check_off_disabled_holo.png │ ├── efp_light__btn_check_off_focused_holo.png │ ├── efp_light__btn_check_off_holo.png │ ├── efp_light__btn_check_off_pressed_holo.png │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ ├── efp_light__btn_check_on_disabled_holo.png │ ├── efp_light__btn_check_on_focused_holo.png │ ├── efp_light__btn_check_on_holo.png │ ├── efp_light__btn_check_on_pressed_holo.png │ ├── efp_light__ic_action_cancel.png │ ├── efp_light__ic_action_deselect.png │ ├── efp_light__ic_action_grid.png │ ├── efp_light__ic_action_invert_selection.png │ ├── efp_light__ic_action_list.png │ ├── efp_light__ic_action_new_folder.png │ ├── efp_light__ic_action_ok.png │ ├── efp_light__ic_action_select_all.png │ ├── efp_light__ic_action_sort.png │ ├── efp_light__list_activated_holo.9.png │ ├── efp_light__list_focused_holo.9.png │ ├── efp_light__list_longpressed_holo.9.png │ ├── efp_light__list_pressed_holo.9.png │ ├── efp_light__list_selector_disabled_holo.9.png │ ├── efp_light__text_select_handle_left.png │ ├── efp_light__text_select_handle_middle.png │ ├── efp_light__text_select_handle_right.png │ ├── efp_light__textfield_activated_holo.9.png │ ├── efp_light__textfield_default_holo.9.png │ ├── efp_light__textfield_disabled_focused_holo.9.png │ ├── efp_light__textfield_disabled_holo.9.png │ └── efp_light__textfield_focused_holo.9.png │ ├── drawable-xhdpi │ ├── efp__ic_file.png │ ├── efp__ic_folder.png │ ├── efp__ic_launcher.png │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ ├── efp_dark__btn_check_off_disabled_holo.png │ ├── efp_dark__btn_check_off_focused_holo.png │ ├── efp_dark__btn_check_off_holo.png │ ├── efp_dark__btn_check_off_pressed_holo.png │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ ├── efp_dark__btn_check_on_disabled_holo.png │ ├── efp_dark__btn_check_on_focused_holo.png │ ├── efp_dark__btn_check_on_holo.png │ ├── efp_dark__btn_check_on_pressed_holo.png │ ├── efp_dark__ic_action_cancel.png │ ├── efp_dark__ic_action_deselect.png │ ├── efp_dark__ic_action_grid.png │ ├── efp_dark__ic_action_invert_selection.png │ ├── efp_dark__ic_action_list.png │ ├── efp_dark__ic_action_new_folder.png │ ├── efp_dark__ic_action_ok.png │ ├── efp_dark__ic_action_select_all.png │ ├── efp_dark__ic_action_sort.png │ ├── efp_dark__list_activated_holo.9.png │ ├── efp_dark__list_focused_holo.9.png │ ├── efp_dark__list_longpressed_holo.9.png │ ├── efp_dark__list_pressed_holo.9.png │ ├── efp_dark__list_selector_disabled_holo.9.png │ ├── efp_dark__text_select_handle_left.png │ ├── efp_dark__text_select_handle_middle.png │ ├── efp_dark__text_select_handle_right.png │ ├── efp_dark__textfield_activated_holo.9.png │ ├── efp_dark__textfield_default_holo.9.png │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ ├── efp_dark__textfield_disabled_holo.9.png │ ├── efp_dark__textfield_focused_holo.9.png │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ ├── efp_light__btn_check_off_disabled_holo.png │ ├── efp_light__btn_check_off_focused_holo.png │ ├── efp_light__btn_check_off_holo.png │ ├── efp_light__btn_check_off_pressed_holo.png │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ ├── efp_light__btn_check_on_disabled_holo.png │ ├── efp_light__btn_check_on_focused_holo.png │ ├── efp_light__btn_check_on_holo.png │ ├── efp_light__btn_check_on_pressed_holo.png │ ├── efp_light__ic_action_cancel.png │ ├── efp_light__ic_action_deselect.png │ ├── efp_light__ic_action_grid.png │ ├── efp_light__ic_action_invert_selection.png │ ├── efp_light__ic_action_list.png │ ├── efp_light__ic_action_new_folder.png │ ├── efp_light__ic_action_ok.png │ ├── efp_light__ic_action_select_all.png │ ├── efp_light__ic_action_sort.png │ ├── efp_light__list_activated_holo.9.png │ ├── efp_light__list_focused_holo.9.png │ ├── efp_light__list_longpressed_holo.9.png │ ├── efp_light__list_pressed_holo.9.png │ ├── efp_light__list_selector_disabled_holo.9.png │ ├── efp_light__text_select_handle_left.png │ ├── efp_light__text_select_handle_middle.png │ ├── efp_light__text_select_handle_right.png │ ├── efp_light__textfield_activated_holo.9.png │ ├── efp_light__textfield_default_holo.9.png │ ├── efp_light__textfield_disabled_focused_holo.9.png │ ├── efp_light__textfield_disabled_holo.9.png │ └── efp_light__textfield_focused_holo.9.png │ ├── drawable-xxhdpi │ ├── efp__ic_file.png │ ├── efp__ic_folder.png │ ├── efp_dark__btn_check_off_disabled_focused_holo.png │ ├── efp_dark__btn_check_off_disabled_holo.png │ ├── efp_dark__btn_check_off_focused_holo.png │ ├── efp_dark__btn_check_off_holo.png │ ├── efp_dark__btn_check_off_pressed_holo.png │ ├── efp_dark__btn_check_on_disabled_focused_holo.png │ ├── efp_dark__btn_check_on_disabled_holo.png │ ├── efp_dark__btn_check_on_focused_holo.png │ ├── efp_dark__btn_check_on_holo.png │ ├── efp_dark__btn_check_on_pressed_holo.png │ ├── efp_dark__ic_action_cancel.png │ ├── efp_dark__ic_action_deselect.png │ ├── efp_dark__ic_action_grid.png │ ├── efp_dark__ic_action_invert_selection.png │ ├── efp_dark__ic_action_list.png │ ├── efp_dark__ic_action_new_folder.png │ ├── efp_dark__ic_action_ok.png │ ├── efp_dark__ic_action_select_all.png │ ├── efp_dark__ic_action_sort.png │ ├── efp_dark__list_activated_holo.9.png │ ├── efp_dark__list_focused_holo.9.png │ ├── efp_dark__list_longpressed_holo.9.png │ ├── efp_dark__list_pressed_holo.9.png │ ├── efp_dark__list_selector_disabled_holo.9.png │ ├── efp_dark__text_select_handle_left.png │ ├── efp_dark__text_select_handle_middle.png │ ├── efp_dark__text_select_handle_right.png │ ├── efp_dark__textfield_activated_holo.9.png │ ├── efp_dark__textfield_default_holo.9.png │ ├── efp_dark__textfield_disabled_focused_holo.9.png │ ├── efp_dark__textfield_disabled_holo.9.png │ ├── efp_dark__textfield_focused_holo.9.png │ ├── efp_light__btn_check_off_disabled_focused_holo.png │ ├── efp_light__btn_check_off_disabled_holo.png │ ├── efp_light__btn_check_off_focused_holo.png │ ├── efp_light__btn_check_off_holo.png │ ├── efp_light__btn_check_off_pressed_holo.png │ ├── efp_light__btn_check_on_disabled_focused_holo.png │ ├── efp_light__btn_check_on_disabled_holo.png │ ├── efp_light__btn_check_on_focused_holo.png │ ├── efp_light__btn_check_on_holo.png │ ├── efp_light__btn_check_on_pressed_holo.png │ ├── efp_light__ic_action_cancel.png │ ├── efp_light__ic_action_deselect.png │ ├── efp_light__ic_action_grid.png │ ├── efp_light__ic_action_invert_selection.png │ ├── efp_light__ic_action_list.png │ ├── efp_light__ic_action_new_folder.png │ ├── efp_light__ic_action_ok.png │ ├── efp_light__ic_action_select_all.png │ ├── efp_light__ic_action_sort.png │ ├── efp_light__list_activated_holo.9.png │ ├── efp_light__list_focused_holo.9.png │ ├── efp_light__list_longpressed_holo.9.png │ ├── efp_light__list_pressed_holo.9.png │ ├── efp_light__list_selector_disabled_holo.9.png │ ├── efp_light__text_select_handle_left.png │ ├── efp_light__text_select_handle_middle.png │ ├── efp_light__text_select_handle_right.png │ ├── efp_light__textfield_activated_holo.9.png │ ├── efp_light__textfield_default_holo.9.png │ ├── efp_light__textfield_disabled_focused_holo.9.png │ ├── efp_light__textfield_disabled_holo.9.png │ └── efp_light__textfield_focused_holo.9.png │ ├── drawable │ ├── efp__header_buttons_selector.xml │ ├── efp_dark__activated_background_holo.xml │ ├── efp_dark__btn_check_holo.xml │ ├── efp_dark__edit_text_holo.xml │ ├── efp_dark__item_background_holo.xml │ ├── efp_dark__list_selector_background_transition_holo.xml │ ├── efp_dark__list_selector_holo.xml │ ├── efp_light__activated_background_holo.xml │ ├── efp_light__btn_check_holo.xml │ ├── efp_light__edit_text_holo.xml │ ├── efp_light__item_background_holo.xml │ ├── efp_light__list_selector_background_transition_holo.xml │ └── efp_light__list_selector_holo.xml │ ├── layout │ ├── efp__empty.xml │ ├── efp__grid_item.xml │ ├── efp__list_item.xml │ ├── efp__main_activity.xml │ └── efp__new_folder.xml │ ├── values-ar │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-et │ └── strings.xml │ ├── values-hi │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-lv │ └── strings.xml │ ├── values-pt │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-tr │ └── strings.xml │ ├── values-uk │ └── strings.xml │ ├── values-v11 │ ├── efp_dark__themes.xml │ └── efp_light__themes.xml │ ├── values-v9 │ ├── efp_dark__themes.xml │ └── efp_light__themes.xml │ ├── values-zh-rTW │ └── strings.xml │ └── values │ ├── attrs.xml │ ├── colors.xml │ ├── efp_dark__styles.xml │ ├── efp_dark__themes.xml │ ├── efp_light__styles.xml │ ├── efp_light__themes.xml │ └── strings.xml ├── local.properties ├── settings.gradle └── stuff ├── WechatIMG1.png ├── WechatIMG2.png ├── WechatIMG3.png ├── WechatIMG4.png └── alipay_code.jpg /.github/workflows/gradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/.github/workflows/gradle.yml -------------------------------------------------------------------------------- /MyWifiConnect.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/MyWifiConnect.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/README.md -------------------------------------------------------------------------------- /WIFIAPComm.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/WIFIAPComm.iml -------------------------------------------------------------------------------- /WIFIAPCommNew.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/WIFIAPCommNew.iml -------------------------------------------------------------------------------- /WifiApCumm.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/WifiApCumm.iml -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/niqiu/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/androidTest/java/com/niqiu/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/Adapter/MyConnAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/Adapter/MyConnAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/Adapter/MyFriendsAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/Adapter/MyFriendsAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/Adapter/MyTranWIFIAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/Adapter/MyTranWIFIAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/Adapter/MyTranWIFIUserAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/Adapter/MyTranWIFIUserAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/Broadcast/WifiConnectReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/Broadcast/WifiConnectReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/Broadcast/WifiScanRsultReciver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/Broadcast/WifiScanRsultReciver.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/Broadcast/WifiStateReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/Broadcast/WifiStateReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/ChatActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/ChatActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/ConnectActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/ConnectActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/ConnectWIFIActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/ConnectWIFIActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/MyApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/MyApplication.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/TransferActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/TransferActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/TransferMainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/TransferMainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/WifiHotManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/WifiHotManager.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/contant/Global.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/contant/Global.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/data/ChatMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/data/ChatMessage.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/data/TransmissionBean.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/data/TransmissionBean.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/data/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/data/User.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/interfaces/ReceiveMsgListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/interfaces/ReceiveMsgListener.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/interfaces/TcpFileReceiveListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/interfaces/TcpFileReceiveListener.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/lib/AppManager/AppManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/lib/AppManager/AppManager.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/lib/SharePreference/SharePreferenceSetting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/lib/SharePreference/SharePreferenceSetting.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/lib/contast/ContastsData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/lib/contast/ContastsData.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/lib/crash/CrashHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/lib/crash/CrashHandler.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/lib/crash/CrashInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/lib/crash/CrashInfo.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/lib/crash/DetailInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/lib/crash/DetailInfo.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/lib/crash/DeviceInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/lib/crash/DeviceInfo.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/net/ClientThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/net/ClientThread.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/net/ServerThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/net/ServerThread.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/net/SocketHelp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/net/SocketHelp.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/net/tcp/NetTCPThreadPoolExecutor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/net/tcp/NetTCPThreadPoolExecutor.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/net/tcp/NetTcpFileReceiveThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/net/tcp/NetTcpFileReceiveThread.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/net/tcp/NetTcpFileSendThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/net/tcp/NetTcpFileSendThread.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/net/udp/NetThreadHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/net/udp/NetThreadHelper.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/util/IpMessageConst.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/util/IpMessageConst.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/util/IpMessageProtocol.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/util/IpMessageProtocol.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/util/UsedConst.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/util/UsedConst.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/util/WifiHotAdmin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/util/WifiHotAdmin.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/util/WifiHotConfigAdmin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/util/WifiHotConfigAdmin.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/util/WifiUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/util/WifiUtils.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/wifiap/TimerCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/wifiap/TimerCheck.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/wifiap/WifiApConst.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/wifiap/WifiApConst.java -------------------------------------------------------------------------------- /app/src/main/java/com/niqiu/wifiap/WifiapBroadcast.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/java/com/niqiu/wifiap/WifiapBroadcast.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/drawable/ic_connected.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/stat_sys_wifi_signal_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/drawable/stat_sys_wifi_signal_0.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/stat_sys_wifi_signal_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/drawable/stat_sys_wifi_signal_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/stat_sys_wifi_signal_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/drawable/stat_sys_wifi_signal_2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/stat_sys_wifi_signal_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/drawable/stat_sys_wifi_signal_3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/stat_sys_wifi_signal_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/drawable/stat_sys_wifi_signal_4.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_connect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/layout/activity_connect.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_connection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/layout/activity_connection.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_tran_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/layout/activity_tran_test.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_wifi_tran_file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/layout/activity_wifi_tran_file.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_wifiscanlist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/layout/activity_wifiscanlist.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_layout_wifiaccount.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/layout/dialog_layout_wifiaccount.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/file_download_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/layout/file_download_notification.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_tran_wifi_file_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/layout/item_tran_wifi_file_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_tran_wifi_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/layout/item_tran_wifi_list.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_wifi_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/layout/item_wifi_list.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/niqiu/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/app/src/test/java/com/niqiu/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/build/generated/source/buildConfig/debug/ru/bartwell/exfilepicker/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/generated/source/buildConfig/debug/ru/bartwell/exfilepicker/BuildConfig.java -------------------------------------------------------------------------------- /library/build/generated/source/r/androidTest/debug/ru/bartwell/exfilepicker/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/generated/source/r/androidTest/debug/ru/bartwell/exfilepicker/R.java -------------------------------------------------------------------------------- /library/build/generated/source/r/androidTest/debug/ru/bartwell/exfilepicker/test/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/generated/source/r/androidTest/debug/ru/bartwell/exfilepicker/test/R.java -------------------------------------------------------------------------------- /library/build/generated/source/r/debug/ru/bartwell/exfilepicker/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/generated/source/r/debug/ru/bartwell/exfilepicker/R.java -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/multi/values-ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/multi/values-ar.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/multi/values-de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/multi/values-de.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/multi/values-es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/multi/values-es.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/multi/values-et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/multi/values-et.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/multi/values-hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/multi/values-hi.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/multi/values-ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/multi/values-ja.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/multi/values-lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/multi/values-lv.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/multi/values-pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/multi/values-pt.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/multi/values-ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/multi/values-ru.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/multi/values-tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/multi/values-tr.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/multi/values-uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/multi/values-uk.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/multi/values-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/multi/values-v11.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/multi/values-v9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/multi/values-v9.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rTW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/multi/values-zh-rTW.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/multi/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/multi/values.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/single/drawable-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/single/drawable-hdpi-v4.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/single/drawable-mdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/single/drawable-mdpi-v4.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/single/drawable-xhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/single/drawable-xhdpi-v4.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/single/drawable-xxhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/single/drawable-xxhdpi-v4.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/single/drawable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/single/drawable.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/androidTest/debug/single/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/androidTest/debug/single/layout.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/multi/values-ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/multi/values-ar.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/multi/values-de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/multi/values-de.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/multi/values-es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/multi/values-es.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/multi/values-et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/multi/values-et.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/multi/values-hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/multi/values-hi.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/multi/values-ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/multi/values-ja.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/multi/values-lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/multi/values-lv.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/multi/values-pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/multi/values-pt.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/multi/values-ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/multi/values-ru.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/multi/values-tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/multi/values-tr.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/multi/values-uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/multi/values-uk.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/multi/values-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/multi/values-v11.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/multi/values-v9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/multi/values-v9.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/multi/values-zh-rTW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/multi/values-zh-rTW.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/multi/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/multi/values.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/single/drawable-hdpi-v4.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/single/drawable-mdpi-v4.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/single/drawable-xhdpi-v4.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/single/drawable-xxhdpi-v4.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/single/drawable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/single/drawable.json -------------------------------------------------------------------------------- /library/build/intermediates/blame/res/debug/single/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/blame/res/debug/single/layout.json -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/R.txt -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp__ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp__ic_file.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp__ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp__ic_folder.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp__ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp__ic_launcher.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp_dark__ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp_dark__ic_action_cancel.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp_dark__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp_dark__ic_action_grid.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp_dark__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp_dark__ic_action_list.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp_dark__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp_dark__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp_dark__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp_dark__ic_action_sort.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp_light__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp_light__ic_action_grid.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp_light__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp_light__ic_action_list.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp_light__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp_light__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp_light__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-hdpi-v4/efp_light__ic_action_sort.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp__ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp__ic_file.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp__ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp__ic_folder.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp__ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp__ic_launcher.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp_dark__ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp_dark__ic_action_cancel.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp_dark__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp_dark__ic_action_grid.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp_dark__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp_dark__ic_action_list.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp_dark__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp_dark__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp_dark__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp_dark__ic_action_sort.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp_light__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp_light__ic_action_grid.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp_light__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp_light__ic_action_list.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp_light__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp_light__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp_light__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-mdpi-v4/efp_light__ic_action_sort.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp__ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp__ic_file.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp__ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp__ic_folder.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp__ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp__ic_launcher.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp_dark__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp_dark__ic_action_grid.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp_dark__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp_dark__ic_action_list.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp_dark__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp_dark__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp_dark__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp_dark__ic_action_sort.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp_light__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp_light__ic_action_grid.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp_light__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp_light__ic_action_list.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp_light__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp_light__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp_light__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-xhdpi-v4/efp_light__ic_action_sort.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/efp__ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/efp__ic_file.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/efp__ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/efp__ic_folder.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/efp_dark__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/efp_dark__ic_action_grid.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/efp_dark__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/efp_dark__ic_action_list.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/efp_dark__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/efp_dark__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/efp_dark__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/efp_dark__ic_action_sort.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/efp_light__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable-xxhdpi-v4/efp_light__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable/efp__header_buttons_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable/efp__header_buttons_selector.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable/efp_dark__btn_check_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable/efp_dark__btn_check_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable/efp_dark__edit_text_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable/efp_dark__edit_text_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable/efp_dark__item_background_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable/efp_dark__item_background_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable/efp_dark__list_selector_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable/efp_dark__list_selector_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable/efp_light__btn_check_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable/efp_light__btn_check_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable/efp_light__edit_text_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable/efp_light__edit_text_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable/efp_light__item_background_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable/efp_light__item_background_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/drawable/efp_light__list_selector_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/drawable/efp_light__list_selector_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/layout/efp__empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/layout/efp__empty.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/layout/efp__grid_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/layout/efp__grid_item.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/layout/efp__list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/layout/efp__list_item.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/layout/efp__main_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/layout/efp__main_activity.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/layout/efp__new_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/layout/efp__new_folder.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-ar/values-ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/values-ar/values-ar.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-de/values-de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/values-de/values-de.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-es/values-es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/values-es/values-es.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-et/values-et.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/values-et/values-et.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-hi/values-hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/values-hi/values-hi.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-ja/values-ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/values-ja/values-ja.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-lv/values-lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/values-lv/values-lv.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-pt/values-pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/values-pt/values-pt.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-ru/values-ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/values-ru/values-ru.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-tr/values-tr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/values-tr/values-tr.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-uk/values-uk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/values-uk/values-uk.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-v11/values-v11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/values-v11/values-v11.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-v9/values-v9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/values-v9/values-v9.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/values-zh-rTW/values-zh-rTW.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/debug/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/debug/res/values/values.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/AndroidManifest.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-hdpi-v4/efp__ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-hdpi-v4/efp__ic_file.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-hdpi-v4/efp__ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-hdpi-v4/efp__ic_folder.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-hdpi-v4/efp__ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-hdpi-v4/efp__ic_launcher.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-hdpi-v4/efp_dark__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-hdpi-v4/efp_dark__ic_action_grid.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-hdpi-v4/efp_dark__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-hdpi-v4/efp_dark__ic_action_list.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-hdpi-v4/efp_dark__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-hdpi-v4/efp_dark__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-hdpi-v4/efp_dark__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-hdpi-v4/efp_dark__ic_action_sort.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-hdpi-v4/efp_light__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-hdpi-v4/efp_light__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-mdpi-v4/efp__ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-mdpi-v4/efp__ic_file.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-mdpi-v4/efp__ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-mdpi-v4/efp__ic_folder.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-mdpi-v4/efp__ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-mdpi-v4/efp__ic_launcher.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-mdpi-v4/efp_dark__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-mdpi-v4/efp_dark__ic_action_grid.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-mdpi-v4/efp_dark__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-mdpi-v4/efp_dark__ic_action_list.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-mdpi-v4/efp_dark__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-mdpi-v4/efp_dark__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-mdpi-v4/efp_dark__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-mdpi-v4/efp_dark__ic_action_sort.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-mdpi-v4/efp_light__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-mdpi-v4/efp_light__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-xhdpi-v4/efp__ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-xhdpi-v4/efp__ic_file.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-xhdpi-v4/efp__ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-xhdpi-v4/efp__ic_folder.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-xhdpi-v4/efp__ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-xhdpi-v4/efp__ic_launcher.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-xhdpi-v4/efp_dark__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-xhdpi-v4/efp_dark__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/efp__ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/efp__ic_file.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/efp__ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable-xxhdpi-v4/efp__ic_folder.png -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable/efp__header_buttons_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable/efp__header_buttons_selector.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable/efp_dark__btn_check_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable/efp_dark__btn_check_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable/efp_dark__edit_text_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable/efp_dark__edit_text_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable/efp_dark__list_selector_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable/efp_dark__list_selector_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable/efp_light__btn_check_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable/efp_light__btn_check_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable/efp_light__edit_text_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable/efp_light__edit_text_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/drawable/efp_light__list_selector_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/drawable/efp_light__list_selector_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/layout/efp__empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/layout/efp__empty.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/layout/efp__grid_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/layout/efp__grid_item.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/layout/efp__list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/layout/efp__list_item.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/layout/efp__main_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/layout/efp__main_activity.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/layout/efp__new_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/layout/efp__new_folder.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-ar/values-ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/values-ar/values-ar.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-de/values-de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/values-de/values-de.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-es/values-es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/values-es/values-es.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-et/values-et.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/values-et/values-et.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-hi/values-hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/values-hi/values-hi.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-ja/values-ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/values-ja/values-ja.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-lv/values-lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/values-lv/values-lv.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-pt/values-pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/values-pt/values-pt.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-ru/values-ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/values-ru/values-ru.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-tr/values-tr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/values-tr/values-tr.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-uk/values-uk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/values-uk/values-uk.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-v11/values-v11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/values-v11/values-v11.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-v9/values-v9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/values-v9/values-v9.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values-zh-rTW/values-zh-rTW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/values-zh-rTW/values-zh-rTW.xml -------------------------------------------------------------------------------- /library/build/intermediates/bundles/release/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/bundles/release/res/values/values.xml -------------------------------------------------------------------------------- /library/build/intermediates/incremental/compileDebugAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /library/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /library/build/intermediates/incremental/compileReleaseAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /library/build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml -------------------------------------------------------------------------------- /library/build/intermediates/incremental/mergeDebugAssets/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/incremental/mergeDebugAssets/merger.xml -------------------------------------------------------------------------------- /library/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties -------------------------------------------------------------------------------- /library/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml -------------------------------------------------------------------------------- /library/build/intermediates/incremental/mergeDebugResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/incremental/mergeDebugResources/merger.xml -------------------------------------------------------------------------------- /library/build/intermediates/incremental/mergeDebugShaders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/incremental/mergeDebugShaders/merger.xml -------------------------------------------------------------------------------- /library/build/intermediates/incremental/mergeReleaseAssets/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/incremental/mergeReleaseAssets/merger.xml -------------------------------------------------------------------------------- /library/build/intermediates/incremental/mergeReleaseShaders/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/incremental/mergeReleaseShaders/merger.xml -------------------------------------------------------------------------------- /library/build/intermediates/incremental/packageDebugResources/compile-file-map.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/incremental/packageDebugResources/compile-file-map.properties -------------------------------------------------------------------------------- /library/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml -------------------------------------------------------------------------------- /library/build/intermediates/incremental/packageDebugResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/incremental/packageDebugResources/merger.xml -------------------------------------------------------------------------------- /library/build/intermediates/incremental/packageReleaseResources/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/incremental/packageReleaseResources/merger.xml -------------------------------------------------------------------------------- /library/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/manifest/androidTest/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /library/build/intermediates/manifests/aapt/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/manifests/aapt/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /library/build/intermediates/manifests/aapt/release/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/manifests/aapt/release/AndroidManifest.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/efp__ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/drawable-hdpi-v4/efp__ic_file.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/efp__ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/drawable-mdpi-v4/efp__ic_file.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/layout/efp__empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/layout/efp__empty.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/layout/efp__grid_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/layout/efp__grid_item.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/layout/efp__list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/layout/efp__list_item.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/layout/efp__main_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/layout/efp__main_activity.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/layout/efp__new_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/layout/efp__new_folder.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-ar/values-ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/values-ar/values-ar.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-de/values-de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/values-de/values-de.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-es/values-es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/values-es/values-es.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-et/values-et.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/values-et/values-et.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-hi/values-hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/values-hi/values-hi.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-ja/values-ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/values-ja/values-ja.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-lv/values-lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/values-lv/values-lv.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-pt/values-pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/values-pt/values-pt.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-ru/values-ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/values-ru/values-ru.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-tr/values-tr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/values-tr/values-tr.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-uk/values-uk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/values-uk/values-uk.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-v11/values-v11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/values-v11/values-v11.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-v9/values-v9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/values-v9/values-v9.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values-zh-rTW/values-zh-rTW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/values-zh-rTW/values-zh-rTW.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/androidTest/debug/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/androidTest/debug/values/values.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-hdpi-v4/efp__ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-hdpi-v4/efp__ic_file.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-hdpi-v4/efp__ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-hdpi-v4/efp__ic_folder.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-hdpi-v4/efp__ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-hdpi-v4/efp__ic_launcher.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-hdpi-v4/efp_dark__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-hdpi-v4/efp_dark__ic_action_grid.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-hdpi-v4/efp_dark__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-hdpi-v4/efp_dark__ic_action_list.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-hdpi-v4/efp_dark__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-hdpi-v4/efp_dark__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-hdpi-v4/efp_dark__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-hdpi-v4/efp_dark__ic_action_sort.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-hdpi-v4/efp_light__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-hdpi-v4/efp_light__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-mdpi-v4/efp__ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-mdpi-v4/efp__ic_file.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-mdpi-v4/efp__ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-mdpi-v4/efp__ic_folder.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-mdpi-v4/efp__ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-mdpi-v4/efp__ic_launcher.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-mdpi-v4/efp_dark__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-mdpi-v4/efp_dark__ic_action_grid.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-mdpi-v4/efp_dark__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-mdpi-v4/efp_dark__ic_action_list.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-mdpi-v4/efp_dark__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-mdpi-v4/efp_dark__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-mdpi-v4/efp_dark__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-mdpi-v4/efp_dark__ic_action_sort.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-mdpi-v4/efp_light__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-mdpi-v4/efp_light__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-xhdpi-v4/efp__ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-xhdpi-v4/efp__ic_file.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-xhdpi-v4/efp__ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-xhdpi-v4/efp__ic_folder.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-xhdpi-v4/efp__ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-xhdpi-v4/efp__ic_launcher.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-xhdpi-v4/efp_dark__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-xhdpi-v4/efp_dark__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-xhdpi-v4/efp_light__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-xhdpi-v4/efp_light__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/efp__ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/efp__ic_file.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/efp__ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/efp__ic_folder.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/efp_dark__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable-xxhdpi-v4/efp_dark__ic_action_ok.png -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable/efp__header_buttons_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable/efp__header_buttons_selector.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable/efp_dark__btn_check_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable/efp_dark__btn_check_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable/efp_dark__edit_text_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable/efp_dark__edit_text_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable/efp_dark__item_background_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable/efp_dark__item_background_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable/efp_dark__list_selector_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable/efp_dark__list_selector_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable/efp_light__btn_check_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable/efp_light__btn_check_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable/efp_light__edit_text_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable/efp_light__edit_text_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable/efp_light__item_background_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable/efp_light__item_background_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/drawable/efp_light__list_selector_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/drawable/efp_light__list_selector_holo.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/layout/efp__empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/layout/efp__empty.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/layout/efp__grid_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/layout/efp__grid_item.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/layout/efp__list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/layout/efp__list_item.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/layout/efp__main_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/layout/efp__main_activity.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/layout/efp__new_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/layout/efp__new_folder.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/values-ar/values-ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/values-ar/values-ar.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/values-de/values-de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/values-de/values-de.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/values-es/values-es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/values-es/values-es.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/values-et/values-et.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/values-et/values-et.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/values-hi/values-hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/values-hi/values-hi.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/values-ja/values-ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/values-ja/values-ja.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/values-lv/values-lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/values-lv/values-lv.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/values-pt/values-pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/values-pt/values-pt.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/values-ru/values-ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/values-ru/values-ru.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/values-tr/values-tr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/values-tr/values-tr.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/values-uk/values-uk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/values-uk/values-uk.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/values-v11/values-v11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/values-v11/values-v11.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/values-v9/values-v9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/values-v9/values-v9.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/values-zh-rTW/values-zh-rTW.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/merged/debug/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/merged/debug/values/values.xml -------------------------------------------------------------------------------- /library/build/intermediates/res/resources-debug-androidTest.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/res/resources-debug-androidTest.ap_ -------------------------------------------------------------------------------- /library/build/intermediates/symbols/androidTest/debug/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/intermediates/symbols/androidTest/debug/R.txt -------------------------------------------------------------------------------- /library/build/outputs/aar/library-debug.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/outputs/aar/library-debug.aar -------------------------------------------------------------------------------- /library/build/outputs/aar/library-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/build/outputs/aar/library-release.aar -------------------------------------------------------------------------------- /library/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/gradle.properties -------------------------------------------------------------------------------- /library/library.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/library.iml -------------------------------------------------------------------------------- /library/libs/universal-image-loader-1.9.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/libs/universal-image-loader-1.9.4.jar -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/ru/bartwell/exfilepicker/DisplayImageOption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/java/ru/bartwell/exfilepicker/DisplayImageOption.java -------------------------------------------------------------------------------- /library/src/main/java/ru/bartwell/exfilepicker/ExFilePicker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/java/ru/bartwell/exfilepicker/ExFilePicker.java -------------------------------------------------------------------------------- /library/src/main/java/ru/bartwell/exfilepicker/ExFilePickerActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/java/ru/bartwell/exfilepicker/ExFilePickerActivity.java -------------------------------------------------------------------------------- /library/src/main/java/ru/bartwell/exfilepicker/ExFilePickerParcelObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/java/ru/bartwell/exfilepicker/ExFilePickerParcelObject.java -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp__ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp__ic_file.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp__ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp__ic_folder.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp__ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp__ic_launcher.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__btn_check_off_disabled_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__btn_check_off_disabled_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__btn_check_off_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__btn_check_off_disabled_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__btn_check_off_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__btn_check_off_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__btn_check_off_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__btn_check_off_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__btn_check_off_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__btn_check_off_pressed_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__btn_check_on_disabled_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__btn_check_on_disabled_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__btn_check_on_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__btn_check_on_disabled_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__btn_check_on_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__btn_check_on_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__btn_check_on_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__btn_check_on_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__btn_check_on_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__btn_check_on_pressed_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__ic_action_cancel.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__ic_action_deselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__ic_action_deselect.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__ic_action_grid.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__ic_action_invert_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__ic_action_invert_selection.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__ic_action_list.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__ic_action_new_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__ic_action_new_folder.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__ic_action_ok.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__ic_action_select_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__ic_action_select_all.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__ic_action_sort.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__list_activated_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__list_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__list_longpressed_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__list_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__list_pressed_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__list_selector_disabled_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__list_selector_disabled_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__text_select_handle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__text_select_handle_left.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__text_select_handle_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__text_select_handle_middle.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__text_select_handle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__text_select_handle_right.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__textfield_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__textfield_activated_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__textfield_default_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__textfield_default_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__textfield_disabled_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__textfield_disabled_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__textfield_disabled_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__textfield_disabled_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_dark__textfield_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_dark__textfield_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__btn_check_off_disabled_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__btn_check_off_disabled_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__btn_check_off_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__btn_check_off_disabled_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__btn_check_off_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__btn_check_off_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__btn_check_off_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__btn_check_off_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__btn_check_off_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__btn_check_off_pressed_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__btn_check_on_disabled_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__btn_check_on_disabled_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__btn_check_on_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__btn_check_on_disabled_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__btn_check_on_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__btn_check_on_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__btn_check_on_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__btn_check_on_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__btn_check_on_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__btn_check_on_pressed_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__ic_action_cancel.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__ic_action_deselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__ic_action_deselect.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__ic_action_grid.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__ic_action_invert_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__ic_action_invert_selection.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__ic_action_list.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__ic_action_new_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__ic_action_new_folder.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__ic_action_ok.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__ic_action_select_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__ic_action_select_all.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__ic_action_sort.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__list_activated_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__list_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__list_longpressed_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__list_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__list_pressed_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__list_selector_disabled_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__list_selector_disabled_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__text_select_handle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__text_select_handle_left.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__text_select_handle_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__text_select_handle_middle.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__text_select_handle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__text_select_handle_right.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__textfield_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__textfield_activated_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__textfield_default_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__textfield_default_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__textfield_disabled_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__textfield_disabled_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__textfield_disabled_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__textfield_disabled_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-hdpi/efp_light__textfield_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-hdpi/efp_light__textfield_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp__ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp__ic_file.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp__ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp__ic_folder.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp__ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp__ic_launcher.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__btn_check_off_disabled_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__btn_check_off_disabled_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__btn_check_off_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__btn_check_off_disabled_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__btn_check_off_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__btn_check_off_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__btn_check_off_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__btn_check_off_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__btn_check_off_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__btn_check_off_pressed_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__btn_check_on_disabled_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__btn_check_on_disabled_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__btn_check_on_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__btn_check_on_disabled_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__btn_check_on_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__btn_check_on_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__btn_check_on_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__btn_check_on_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__btn_check_on_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__btn_check_on_pressed_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__ic_action_cancel.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__ic_action_deselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__ic_action_deselect.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__ic_action_grid.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__ic_action_invert_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__ic_action_invert_selection.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__ic_action_list.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__ic_action_new_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__ic_action_new_folder.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__ic_action_ok.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__ic_action_select_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__ic_action_select_all.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__ic_action_sort.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__list_activated_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__list_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__list_longpressed_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__list_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__list_pressed_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__list_selector_disabled_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__list_selector_disabled_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__text_select_handle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__text_select_handle_left.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__text_select_handle_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__text_select_handle_middle.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__text_select_handle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__text_select_handle_right.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__textfield_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__textfield_activated_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__textfield_default_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__textfield_default_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__textfield_disabled_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__textfield_disabled_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__textfield_disabled_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__textfield_disabled_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_dark__textfield_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_dark__textfield_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__btn_check_off_disabled_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__btn_check_off_disabled_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__btn_check_off_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__btn_check_off_disabled_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__btn_check_off_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__btn_check_off_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__btn_check_off_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__btn_check_off_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__btn_check_off_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__btn_check_off_pressed_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__btn_check_on_disabled_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__btn_check_on_disabled_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__btn_check_on_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__btn_check_on_disabled_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__btn_check_on_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__btn_check_on_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__btn_check_on_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__btn_check_on_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__btn_check_on_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__btn_check_on_pressed_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__ic_action_cancel.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__ic_action_deselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__ic_action_deselect.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__ic_action_grid.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__ic_action_invert_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__ic_action_invert_selection.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__ic_action_list.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__ic_action_new_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__ic_action_new_folder.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__ic_action_ok.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__ic_action_select_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__ic_action_select_all.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__ic_action_sort.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__list_activated_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__list_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__list_longpressed_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__list_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__list_pressed_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__list_selector_disabled_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__list_selector_disabled_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__text_select_handle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__text_select_handle_left.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__text_select_handle_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__text_select_handle_middle.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__text_select_handle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__text_select_handle_right.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__textfield_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__textfield_activated_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__textfield_default_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__textfield_default_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__textfield_disabled_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__textfield_disabled_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__textfield_disabled_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__textfield_disabled_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-mdpi/efp_light__textfield_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-mdpi/efp_light__textfield_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp__ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp__ic_file.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp__ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp__ic_folder.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp__ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp__ic_launcher.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__btn_check_off_disabled_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__btn_check_off_disabled_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__btn_check_off_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__btn_check_off_disabled_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__btn_check_off_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__btn_check_off_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__btn_check_off_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__btn_check_off_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__btn_check_off_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__btn_check_off_pressed_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__btn_check_on_disabled_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__btn_check_on_disabled_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__btn_check_on_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__btn_check_on_disabled_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__btn_check_on_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__btn_check_on_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__btn_check_on_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__btn_check_on_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__btn_check_on_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__btn_check_on_pressed_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__ic_action_cancel.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__ic_action_deselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__ic_action_deselect.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__ic_action_grid.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__ic_action_invert_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__ic_action_invert_selection.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__ic_action_list.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__ic_action_new_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__ic_action_new_folder.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__ic_action_ok.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__ic_action_select_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__ic_action_select_all.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__ic_action_sort.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__list_activated_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__list_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__list_longpressed_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__list_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__list_pressed_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__list_selector_disabled_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__list_selector_disabled_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__text_select_handle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__text_select_handle_left.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__text_select_handle_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__text_select_handle_middle.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__text_select_handle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__text_select_handle_right.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__textfield_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__textfield_activated_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__textfield_default_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__textfield_default_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__textfield_disabled_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__textfield_disabled_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__textfield_disabled_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__textfield_disabled_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_dark__textfield_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_dark__textfield_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__btn_check_off_disabled_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__btn_check_off_disabled_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__btn_check_off_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__btn_check_off_disabled_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__btn_check_off_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__btn_check_off_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__btn_check_off_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__btn_check_off_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__btn_check_off_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__btn_check_off_pressed_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__btn_check_on_disabled_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__btn_check_on_disabled_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__btn_check_on_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__btn_check_on_disabled_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__btn_check_on_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__btn_check_on_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__btn_check_on_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__btn_check_on_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__btn_check_on_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__btn_check_on_pressed_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__ic_action_cancel.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__ic_action_deselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__ic_action_deselect.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__ic_action_grid.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__ic_action_invert_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__ic_action_invert_selection.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__ic_action_list.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__ic_action_new_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__ic_action_new_folder.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__ic_action_ok.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__ic_action_select_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__ic_action_select_all.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__ic_action_sort.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__list_activated_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__list_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__list_longpressed_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__list_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__list_pressed_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__list_selector_disabled_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__list_selector_disabled_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__text_select_handle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__text_select_handle_left.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__text_select_handle_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__text_select_handle_middle.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__text_select_handle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__text_select_handle_right.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__textfield_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__textfield_activated_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__textfield_default_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__textfield_default_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__textfield_disabled_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__textfield_disabled_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__textfield_disabled_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__textfield_disabled_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/efp_light__textfield_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xhdpi/efp_light__textfield_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp__ic_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp__ic_file.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp__ic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp__ic_folder.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_off_disabled_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_off_disabled_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_off_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_off_disabled_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_off_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_off_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_off_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_off_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_off_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_off_pressed_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_on_disabled_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_on_disabled_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_on_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_on_disabled_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_on_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_on_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_on_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_on_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_on_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__btn_check_on_pressed_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__ic_action_cancel.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__ic_action_deselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__ic_action_deselect.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__ic_action_grid.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__ic_action_invert_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__ic_action_invert_selection.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__ic_action_list.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__ic_action_new_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__ic_action_new_folder.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__ic_action_ok.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__ic_action_select_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__ic_action_select_all.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__ic_action_sort.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__list_activated_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__list_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__list_longpressed_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__list_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__list_pressed_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__list_selector_disabled_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__list_selector_disabled_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__text_select_handle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__text_select_handle_left.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__text_select_handle_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__text_select_handle_middle.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__text_select_handle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__text_select_handle_right.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__textfield_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__textfield_activated_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__textfield_default_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__textfield_default_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__textfield_disabled_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__textfield_disabled_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__textfield_disabled_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__textfield_disabled_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_dark__textfield_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_dark__textfield_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__btn_check_off_disabled_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__btn_check_off_disabled_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__btn_check_off_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__btn_check_off_disabled_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__btn_check_off_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__btn_check_off_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__btn_check_off_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__btn_check_off_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__btn_check_off_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__btn_check_off_pressed_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__btn_check_on_disabled_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__btn_check_on_disabled_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__btn_check_on_disabled_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__btn_check_on_disabled_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__btn_check_on_focused_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__btn_check_on_focused_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__btn_check_on_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__btn_check_on_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__btn_check_on_pressed_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__btn_check_on_pressed_holo.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__ic_action_cancel.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__ic_action_deselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__ic_action_deselect.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__ic_action_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__ic_action_grid.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__ic_action_invert_selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__ic_action_invert_selection.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__ic_action_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__ic_action_list.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__ic_action_new_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__ic_action_new_folder.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__ic_action_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__ic_action_ok.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__ic_action_select_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__ic_action_select_all.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__ic_action_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__ic_action_sort.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__list_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__list_activated_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__list_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__list_longpressed_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__list_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__list_pressed_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__list_selector_disabled_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__list_selector_disabled_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__text_select_handle_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__text_select_handle_left.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__text_select_handle_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__text_select_handle_middle.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__text_select_handle_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__text_select_handle_right.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__textfield_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__textfield_activated_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__textfield_default_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__textfield_default_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__textfield_disabled_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__textfield_disabled_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__textfield_disabled_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__textfield_disabled_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable-xxhdpi/efp_light__textfield_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable-xxhdpi/efp_light__textfield_focused_holo.9.png -------------------------------------------------------------------------------- /library/src/main/res/drawable/efp__header_buttons_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable/efp__header_buttons_selector.xml -------------------------------------------------------------------------------- /library/src/main/res/drawable/efp_dark__activated_background_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable/efp_dark__activated_background_holo.xml -------------------------------------------------------------------------------- /library/src/main/res/drawable/efp_dark__btn_check_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable/efp_dark__btn_check_holo.xml -------------------------------------------------------------------------------- /library/src/main/res/drawable/efp_dark__edit_text_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable/efp_dark__edit_text_holo.xml -------------------------------------------------------------------------------- /library/src/main/res/drawable/efp_dark__item_background_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable/efp_dark__item_background_holo.xml -------------------------------------------------------------------------------- /library/src/main/res/drawable/efp_dark__list_selector_background_transition_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable/efp_dark__list_selector_background_transition_holo.xml -------------------------------------------------------------------------------- /library/src/main/res/drawable/efp_dark__list_selector_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable/efp_dark__list_selector_holo.xml -------------------------------------------------------------------------------- /library/src/main/res/drawable/efp_light__activated_background_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable/efp_light__activated_background_holo.xml -------------------------------------------------------------------------------- /library/src/main/res/drawable/efp_light__btn_check_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable/efp_light__btn_check_holo.xml -------------------------------------------------------------------------------- /library/src/main/res/drawable/efp_light__edit_text_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable/efp_light__edit_text_holo.xml -------------------------------------------------------------------------------- /library/src/main/res/drawable/efp_light__item_background_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable/efp_light__item_background_holo.xml -------------------------------------------------------------------------------- /library/src/main/res/drawable/efp_light__list_selector_background_transition_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable/efp_light__list_selector_background_transition_holo.xml -------------------------------------------------------------------------------- /library/src/main/res/drawable/efp_light__list_selector_holo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/drawable/efp_light__list_selector_holo.xml -------------------------------------------------------------------------------- /library/src/main/res/layout/efp__empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/layout/efp__empty.xml -------------------------------------------------------------------------------- /library/src/main/res/layout/efp__grid_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/layout/efp__grid_item.xml -------------------------------------------------------------------------------- /library/src/main/res/layout/efp__list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/layout/efp__list_item.xml -------------------------------------------------------------------------------- /library/src/main/res/layout/efp__main_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/layout/efp__main_activity.xml -------------------------------------------------------------------------------- /library/src/main/res/layout/efp__new_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/layout/efp__new_folder.xml -------------------------------------------------------------------------------- /library/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /library/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /library/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /library/src/main/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values-et/strings.xml -------------------------------------------------------------------------------- /library/src/main/res/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values-hi/strings.xml -------------------------------------------------------------------------------- /library/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /library/src/main/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values-lv/strings.xml -------------------------------------------------------------------------------- /library/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /library/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /library/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /library/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /library/src/main/res/values-v11/efp_dark__themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values-v11/efp_dark__themes.xml -------------------------------------------------------------------------------- /library/src/main/res/values-v11/efp_light__themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values-v11/efp_light__themes.xml -------------------------------------------------------------------------------- /library/src/main/res/values-v9/efp_dark__themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values-v9/efp_dark__themes.xml -------------------------------------------------------------------------------- /library/src/main/res/values-v9/efp_light__themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values-v9/efp_light__themes.xml -------------------------------------------------------------------------------- /library/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /library/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /library/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /library/src/main/res/values/efp_dark__styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values/efp_dark__styles.xml -------------------------------------------------------------------------------- /library/src/main/res/values/efp_dark__themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values/efp_dark__themes.xml -------------------------------------------------------------------------------- /library/src/main/res/values/efp_light__styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values/efp_light__styles.xml -------------------------------------------------------------------------------- /library/src/main/res/values/efp_light__themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values/efp_light__themes.xml -------------------------------------------------------------------------------- /library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/local.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':library', ':app' 2 | -------------------------------------------------------------------------------- /stuff/WechatIMG1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/stuff/WechatIMG1.png -------------------------------------------------------------------------------- /stuff/WechatIMG2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/stuff/WechatIMG2.png -------------------------------------------------------------------------------- /stuff/WechatIMG3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/stuff/WechatIMG3.png -------------------------------------------------------------------------------- /stuff/WechatIMG4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/stuff/WechatIMG4.png -------------------------------------------------------------------------------- /stuff/alipay_code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AriesJiang/WIFIAPComm/HEAD/stuff/alipay_code.jpg --------------------------------------------------------------------------------