├── README.md ├── fBReader ├── libs │ ├── pdfparse.jar │ ├── httpmime-4.2.5.jar │ ├── nanohttpd-2.0.5.jar │ ├── json-simple-1.1.1.jar │ ├── LingvoIntegration_2.5.2.12.jar │ └── open-dictionary-api-1.2.1.jar └── src │ └── main │ ├── jni │ ├── LineBreak │ │ └── liblinebreak-2.0 │ │ │ ├── LineBreak1.sed │ │ │ ├── linebreakdata1.tmpl │ │ │ ├── linebreakdata3.tmpl │ │ │ ├── LineBreak2.sed │ │ │ ├── doc │ │ │ └── html │ │ │ │ ├── doxygen.png │ │ │ │ ├── tab_b.gif │ │ │ │ ├── tab_l.gif │ │ │ │ └── tab_r.gif │ │ │ ├── linebreakdata2.tmpl │ │ │ ├── AUTHORS │ │ │ └── configure.ac │ ├── Application.mk │ └── expat-2.0.1 │ │ ├── doc │ │ ├── expat.png │ │ └── valid-xhtml10.png │ │ ├── win32 │ │ └── expat.iss │ │ ├── lib │ │ └── Makefile.MPW │ │ ├── bcb5 │ │ ├── elements.bpf │ │ ├── outline.bpf │ │ ├── expat_static.bpf │ │ ├── expatw_static.bpf │ │ ├── expat.bpf │ │ ├── expatw.bpf │ │ ├── xmlwf.bpf │ │ ├── setup.bat │ │ └── makefile.mak │ │ ├── tests │ │ ├── runtestspp.cpp │ │ ├── benchmark │ │ │ └── README.txt │ │ └── README.txt │ │ ├── xmlwf │ │ ├── codepage.h │ │ ├── xmlurl.h │ │ ├── filemap.h │ │ ├── xmlmime.h │ │ └── xmlfile.h │ │ └── vms │ │ └── README.vms │ ├── assets │ ├── wallpapers │ │ ├── sand.jpg │ │ ├── wood.jpg │ │ ├── sepia.jpg │ │ ├── hardpaper.jpg │ │ └── leather.jpg │ ├── formats │ │ └── fb2 │ │ │ └── fb2genres.xml │ ├── hyphenationPatterns │ │ ├── ka.pattern │ │ ├── LICENSES │ │ └── CHANGES │ ├── default │ │ ├── styles.xml │ │ ├── keymap-nook.xml │ │ ├── tapzones │ │ │ ├── down.xml │ │ │ ├── up.xml │ │ │ ├── left_to_right.xml │ │ │ └── right_to_left.xml │ │ ├── keymap.xml │ │ └── plugins.xml │ └── resources │ │ └── application │ │ └── neutral.xml │ ├── res │ ├── drawable │ │ ├── drag_icon.png │ │ ├── ic_list_buy.png │ │ ├── plugin_cbr.png │ │ ├── plugin_djvu.png │ │ ├── plugin_pdf.png │ │ ├── ic_list_flag.png │ │ ├── ic_list_plus.png │ │ ├── link_default.9.png │ │ ├── link_pressed.9.png │ │ ├── plugin_litres.png │ │ ├── dropdown_normal.png │ │ ├── dropdown_pressed.png │ │ ├── ic_list_download.png │ │ ├── link_selected.9.png │ │ ├── plugin_bookshelf.png │ │ ├── plugin_tts_plus.png │ │ ├── dropdown_selected.png │ │ ├── ic_list_downloading.png │ │ ├── ic_list_group_empty.png │ │ ├── ic_list_group_open.png │ │ ├── ic_list_library_tag.png │ │ ├── ic_list_library_zip.png │ │ ├── ic_list_group_closed.png │ │ ├── ic_list_library_book.png │ │ ├── ic_list_library_books.png │ │ ├── ic_list_library_tags.png │ │ ├── ic_list_library_author.png │ │ ├── ic_list_library_authors.png │ │ ├── ic_list_library_basket.png │ │ ├── ic_list_library_folder.png │ │ ├── ic_list_library_recent.png │ │ ├── ic_list_library_search.png │ │ ├── ic_list_library_favorites.png │ │ ├── ic_list_library_permission_denied.png │ │ ├── plugin_calibre_server_integration.png │ │ ├── panel.xml │ │ ├── popup_close.xml │ │ ├── popup_share.xml │ │ ├── popup_copy.xml │ │ ├── popup_translate.xml │ │ ├── popup_close_large.xml │ │ ├── popup_bookmark.xml │ │ ├── link.xml │ │ ├── popup_back.xml │ │ ├── popup_forward.xml │ │ └── dropdown.xml │ ├── drawable-hdpi │ │ ├── fbreader.png │ │ ├── fbreader_bw.png │ │ ├── ic_menu_add.png │ │ ├── ic_menu_day.png │ │ ├── ic_menu_toc.png │ │ ├── ic_close_white.png │ │ ├── ic_menu_filter.png │ │ ├── ic_menu_night.png │ │ ├── ic_menu_none.png │ │ ├── ic_menu_search.png │ │ ├── ic_share_white.png │ │ ├── ic_close_pressed.png │ │ ├── ic_menu_library.png │ │ ├── ic_menu_refresh.png │ │ ├── ic_share_pressed.png │ │ ├── ic_arrow_back_white.png │ │ ├── ic_menu_bookmarks.png │ │ ├── ic_translate_white.png │ │ ├── ic_arrow_back_grey600.png │ │ ├── ic_arrow_back_pressed.png │ │ ├── ic_close_large_white.png │ │ ├── ic_content_copy_white.png │ │ ├── ic_translate_pressed.png │ │ ├── ic_arrow_forward_grey600.png │ │ ├── ic_arrow_forward_pressed.png │ │ ├── ic_arrow_forward_white.png │ │ ├── ic_close_large_pressed.png │ │ ├── ic_content_copy_pressed.png │ │ ├── ic_menu_networklibrary.png │ │ ├── ic_bookmark_outline_white.png │ │ └── ic_bookmark_outline_pressed.png │ ├── drawable-ldpi │ │ ├── fbreader.png │ │ └── fbreader_bw.png │ ├── drawable-mdpi │ │ ├── fbreader.png │ │ ├── fbreader_bw.png │ │ ├── ic_close_white.png │ │ ├── ic_share_white.png │ │ ├── ic_close_pressed.png │ │ ├── ic_share_pressed.png │ │ ├── ic_arrow_back_white.png │ │ ├── ic_translate_white.png │ │ ├── ic_arrow_back_grey600.png │ │ ├── ic_arrow_back_pressed.png │ │ ├── ic_close_large_white.png │ │ ├── ic_content_copy_white.png │ │ ├── ic_translate_pressed.png │ │ ├── ic_arrow_forward_grey600.png │ │ ├── ic_arrow_forward_pressed.png │ │ ├── ic_arrow_forward_white.png │ │ ├── ic_close_large_pressed.png │ │ ├── ic_content_copy_pressed.png │ │ ├── ic_bookmark_outline_white.png │ │ └── ic_bookmark_outline_pressed.png │ ├── drawable-xhdpi │ │ ├── fbreader.png │ │ ├── fbreader_bw.png │ │ ├── ic_menu_add.png │ │ ├── ic_menu_day.png │ │ ├── ic_menu_night.png │ │ ├── ic_menu_none.png │ │ ├── ic_menu_toc.png │ │ ├── ic_close_white.png │ │ ├── ic_menu_filter.png │ │ ├── ic_menu_library.png │ │ ├── ic_menu_refresh.png │ │ ├── ic_menu_search.png │ │ ├── ic_share_white.png │ │ ├── ic_close_pressed.png │ │ ├── ic_menu_bookmarks.png │ │ ├── ic_share_pressed.png │ │ ├── ic_translate_white.png │ │ ├── ic_arrow_back_white.png │ │ ├── ic_close_large_white.png │ │ ├── ic_translate_pressed.png │ │ ├── ic_arrow_back_grey600.png │ │ ├── ic_arrow_back_pressed.png │ │ ├── ic_arrow_forward_white.png │ │ ├── ic_close_large_pressed.png │ │ ├── ic_content_copy_pressed.png │ │ ├── ic_content_copy_white.png │ │ ├── ic_menu_networklibrary.png │ │ ├── ic_arrow_forward_grey600.png │ │ ├── ic_arrow_forward_pressed.png │ │ ├── ic_bookmark_outline_white.png │ │ └── ic_bookmark_outline_pressed.png │ ├── drawable-xxhdpi │ │ ├── fbreader.png │ │ ├── fbreader_bw.png │ │ ├── ic_close_white.png │ │ ├── ic_share_white.png │ │ ├── ic_close_pressed.png │ │ ├── ic_share_pressed.png │ │ ├── ic_arrow_back_white.png │ │ ├── ic_translate_white.png │ │ ├── ic_arrow_back_grey600.png │ │ ├── ic_arrow_back_pressed.png │ │ ├── ic_arrow_forward_white.png │ │ ├── ic_close_large_pressed.png │ │ ├── ic_close_large_white.png │ │ ├── ic_content_copy_white.png │ │ ├── ic_translate_pressed.png │ │ ├── ic_arrow_forward_grey600.png │ │ ├── ic_arrow_forward_pressed.png │ │ ├── ic_content_copy_pressed.png │ │ ├── ic_bookmark_outline_pressed.png │ │ └── ic_bookmark_outline_white.png │ ├── drawable-xxxhdpi │ │ ├── ic_close_pressed.png │ │ ├── ic_close_white.png │ │ ├── ic_share_pressed.png │ │ ├── ic_share_white.png │ │ ├── ic_translate_white.png │ │ ├── ic_arrow_back_grey600.png │ │ ├── ic_arrow_back_pressed.png │ │ ├── ic_arrow_back_white.png │ │ ├── ic_close_large_white.png │ │ ├── ic_content_copy_white.png │ │ ├── ic_translate_pressed.png │ │ ├── ic_arrow_forward_white.png │ │ ├── ic_close_large_pressed.png │ │ ├── ic_content_copy_pressed.png │ │ ├── ic_arrow_forward_grey600.png │ │ ├── ic_arrow_forward_pressed.png │ │ ├── ic_bookmark_outline_white.png │ │ └── ic_bookmark_outline_pressed.png │ ├── values │ │ ├── strings.xml │ │ ├── colors.xml │ │ └── styles.xml │ ├── xml │ │ └── searchable.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── layout │ │ ├── animation_speed_dialog.xml │ │ ├── lr_action_item.xml │ │ ├── main.xml │ │ ├── catalog_manager_section_head.xml │ │ └── catalog_manager_view.xml │ ├── libs │ ├── mips │ │ ├── libLineBreak-v2.so │ │ ├── libNativeFormats-v4.so │ │ └── libDeflatingDecompressor-v3.so │ ├── x86 │ │ ├── libLineBreak-v2.so │ │ ├── libNativeFormats-v4.so │ │ └── libDeflatingDecompressor-v3.so │ ├── armeabi │ │ ├── libLineBreak-v2.so │ │ ├── libNativeFormats-v4.so │ │ └── libDeflatingDecompressor-v3.so │ ├── mips64 │ │ ├── libLineBreak-v2.so │ │ ├── libNativeFormats-v4.so │ │ └── libDeflatingDecompressor-v3.so │ ├── x86_64 │ │ ├── libLineBreak-v2.so │ │ ├── libNativeFormats-v4.so │ │ └── libDeflatingDecompressor-v3.so │ ├── arm64-v8a │ │ ├── libLineBreak-v2.so │ │ ├── libNativeFormats-v4.so │ │ └── libDeflatingDecompressor-v3.so │ └── armeabi-v7a │ │ ├── libLineBreak-v2.so │ │ ├── libNativeFormats-v4.so │ │ └── libDeflatingDecompressor-v3.so │ ├── jniLibs │ ├── mips │ │ ├── libLineBreak-v2.so │ │ ├── libNativeFormats-v4.so │ │ └── libDeflatingDecompressor-v3.so │ ├── x86 │ │ ├── libLineBreak-v2.so │ │ ├── libNativeFormats-v4.so │ │ └── libDeflatingDecompressor-v3.so │ ├── mips64 │ │ ├── libLineBreak-v2.so │ │ ├── libNativeFormats-v4.so │ │ └── libDeflatingDecompressor-v3.so │ ├── x86_64 │ │ ├── libLineBreak-v2.so │ │ ├── libNativeFormats-v4.so │ │ └── libDeflatingDecompressor-v3.so │ ├── arm64-v8a │ │ ├── libLineBreak-v2.so │ │ ├── libNativeFormats-v4.so │ │ └── libDeflatingDecompressor-v3.so │ ├── armeabi │ │ ├── libLineBreak-v2.so │ │ ├── libNativeFormats-v4.so │ │ └── libDeflatingDecompressor-v3.so │ └── armeabi-v7a │ │ ├── libLineBreak-v2.so │ │ ├── libNativeFormats-v4.so │ │ └── libDeflatingDecompressor-v3.so │ ├── aidl │ └── org │ │ └── geometerplus │ │ └── android │ │ └── fbreader │ │ ├── api │ │ ├── ApiObject.aidl │ │ ├── TextPosition.aidl │ │ └── ApiInterface.aidl │ │ └── libraryService │ │ └── PositionWithTimestamp.aidl │ └── java │ └── org │ ├── amse │ └── ys │ │ └── zip │ │ └── ZipException.java │ └── geometerplus │ ├── android │ └── fbreader │ │ └── api │ │ ├── ApiListener.java │ │ └── ApiException.java │ └── zlibrary │ └── core │ └── util │ └── BitmapUtil.java ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── settings.gradle ├── code ├── src │ └── main │ │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── afc_file.png │ │ │ ├── afc_folder.png │ │ │ ├── afc_file_audio.png │ │ │ ├── afc_file_image.png │ │ │ ├── afc_file_video.png │ │ │ ├── afc_button_sort_as.png │ │ │ ├── afc_button_sort_de.png │ │ │ ├── afc_file_disabled.png │ │ │ ├── afc_folder_locked.png │ │ │ ├── afc_ic_menu_home.png │ │ │ ├── afc_ic_menu_reload.png │ │ │ ├── afc_button_navi_left.png │ │ │ ├── afc_button_ok_saveas.png │ │ │ ├── afc_file_compressed.png │ │ │ ├── afc_file_plain_text.png │ │ │ ├── afc_folder_disabled.png │ │ │ ├── afc_ic_menu_gridview.png │ │ │ ├── afc_ic_menu_listview.png │ │ │ ├── afc_button_navi_right.png │ │ │ ├── afc_button_create_folder.png │ │ │ ├── afc_button_folders_view_grid.png │ │ │ ├── afc_button_folders_view_list.png │ │ │ ├── afc_button_navi_left_pressed.png │ │ │ ├── afc_button_ok_saveas_pressed.png │ │ │ ├── afc_button_sort_as_disabled.png │ │ │ ├── afc_button_sort_as_pressed.png │ │ │ ├── afc_button_sort_de_disabled.png │ │ │ ├── afc_button_sort_de_pressed.png │ │ │ ├── afc_ic_menu_sort_by_date_asc.png │ │ │ ├── afc_ic_menu_sort_by_name_asc.png │ │ │ ├── afc_ic_menu_sort_by_size_asc.png │ │ │ ├── afc_button_navi_left_disabled.png │ │ │ ├── afc_button_navi_right_disabled.png │ │ │ ├── afc_button_navi_right_pressed.png │ │ │ ├── afc_context_menu_item_divider.png │ │ │ ├── afc_ic_menu_sort_by_date_desc.png │ │ │ ├── afc_ic_menu_sort_by_name_desc.png │ │ │ ├── afc_ic_menu_sort_by_size_desc.png │ │ │ ├── afc_button_create_folder_disabled.png │ │ │ ├── afc_button_create_folder_pressed.png │ │ │ ├── afc_button_folders_view_grid_disabled.png │ │ │ ├── afc_button_folders_view_grid_pressed.png │ │ │ ├── afc_button_folders_view_list_disabled.png │ │ │ └── afc_button_folders_view_list_pressed.png │ │ ├── drawable-ldpi │ │ │ ├── afc_file.png │ │ │ ├── afc_folder.png │ │ │ ├── afc_file_audio.png │ │ │ ├── afc_file_image.png │ │ │ ├── afc_file_video.png │ │ │ ├── afc_file_disabled.png │ │ │ ├── afc_folder_locked.png │ │ │ ├── afc_ic_menu_home.png │ │ │ ├── afc_ic_menu_reload.png │ │ │ ├── afc_button_navi_left.png │ │ │ ├── afc_button_ok_saveas.png │ │ │ ├── afc_file_compressed.png │ │ │ ├── afc_file_plain_text.png │ │ │ ├── afc_folder_disabled.png │ │ │ ├── afc_ic_menu_gridview.png │ │ │ ├── afc_ic_menu_listview.png │ │ │ ├── afc_button_navi_right.png │ │ │ ├── afc_button_create_folder.png │ │ │ ├── afc_button_folders_view_grid.png │ │ │ ├── afc_button_folders_view_list.png │ │ │ ├── afc_button_navi_left_pressed.png │ │ │ ├── afc_button_ok_saveas_pressed.png │ │ │ ├── afc_ic_menu_sort_by_date_asc.png │ │ │ ├── afc_ic_menu_sort_by_name_asc.png │ │ │ ├── afc_ic_menu_sort_by_size_asc.png │ │ │ ├── afc_button_navi_left_disabled.png │ │ │ ├── afc_button_navi_right_disabled.png │ │ │ ├── afc_button_navi_right_pressed.png │ │ │ ├── afc_context_menu_item_divider.png │ │ │ ├── afc_ic_menu_sort_by_date_desc.png │ │ │ ├── afc_ic_menu_sort_by_name_desc.png │ │ │ ├── afc_ic_menu_sort_by_size_desc.png │ │ │ ├── afc_button_create_folder_disabled.png │ │ │ ├── afc_button_create_folder_pressed.png │ │ │ ├── afc_button_folders_view_grid_disabled.png │ │ │ ├── afc_button_folders_view_grid_pressed.png │ │ │ ├── afc_button_folders_view_list_disabled.png │ │ │ └── afc_button_folders_view_list_pressed.png │ │ ├── drawable-mdpi │ │ │ ├── afc_file.png │ │ │ ├── afc_folder.png │ │ │ ├── afc_file_audio.png │ │ │ ├── afc_file_image.png │ │ │ ├── afc_file_video.png │ │ │ ├── afc_file_disabled.png │ │ │ ├── afc_folder_locked.png │ │ │ ├── afc_ic_menu_home.png │ │ │ ├── afc_ic_menu_reload.png │ │ │ ├── afc_button_navi_left.png │ │ │ ├── afc_button_ok_saveas.png │ │ │ ├── afc_file_compressed.png │ │ │ ├── afc_file_plain_text.png │ │ │ ├── afc_folder_disabled.png │ │ │ ├── afc_ic_menu_gridview.png │ │ │ ├── afc_ic_menu_listview.png │ │ │ ├── afc_button_navi_right.png │ │ │ ├── afc_button_create_folder.png │ │ │ ├── afc_button_folders_view_grid.png │ │ │ ├── afc_button_folders_view_list.png │ │ │ ├── afc_button_navi_left_pressed.png │ │ │ ├── afc_button_ok_saveas_pressed.png │ │ │ ├── afc_ic_menu_sort_by_date_asc.png │ │ │ ├── afc_ic_menu_sort_by_name_asc.png │ │ │ ├── afc_ic_menu_sort_by_size_asc.png │ │ │ ├── afc_button_navi_left_disabled.png │ │ │ ├── afc_button_navi_right_disabled.png │ │ │ ├── afc_button_navi_right_pressed.png │ │ │ ├── afc_context_menu_item_divider.png │ │ │ ├── afc_ic_menu_sort_by_date_desc.png │ │ │ ├── afc_ic_menu_sort_by_name_desc.png │ │ │ ├── afc_ic_menu_sort_by_size_desc.png │ │ │ ├── afc_button_create_folder_disabled.png │ │ │ ├── afc_button_create_folder_pressed.png │ │ │ ├── afc_button_folders_view_grid_disabled.png │ │ │ ├── afc_button_folders_view_grid_pressed.png │ │ │ ├── afc_button_folders_view_list_disabled.png │ │ │ └── afc_button_folders_view_list_pressed.png │ │ ├── drawable-xhdpi │ │ │ ├── afc_file.png │ │ │ ├── afc_folder.png │ │ │ ├── afc_file_audio.png │ │ │ ├── afc_file_image.png │ │ │ ├── afc_file_video.png │ │ │ ├── afc_file_disabled.png │ │ │ ├── afc_folder_locked.png │ │ │ ├── afc_ic_menu_home.png │ │ │ ├── afc_file_compressed.png │ │ │ ├── afc_file_plain_text.png │ │ │ ├── afc_folder_disabled.png │ │ │ ├── afc_ic_menu_reload.png │ │ │ ├── afc_button_navi_left.png │ │ │ ├── afc_button_navi_right.png │ │ │ ├── afc_button_ok_saveas.png │ │ │ ├── afc_ic_menu_gridview.png │ │ │ ├── afc_ic_menu_listview.png │ │ │ ├── afc_button_create_folder.png │ │ │ ├── afc_button_folders_view_grid.png │ │ │ ├── afc_button_folders_view_list.png │ │ │ ├── afc_button_navi_left_disabled.png │ │ │ ├── afc_button_navi_left_pressed.png │ │ │ ├── afc_button_navi_right_pressed.png │ │ │ ├── afc_button_ok_saveas_pressed.png │ │ │ ├── afc_context_menu_item_divider.png │ │ │ ├── afc_ic_menu_sort_by_date_asc.png │ │ │ ├── afc_ic_menu_sort_by_date_desc.png │ │ │ ├── afc_ic_menu_sort_by_name_asc.png │ │ │ ├── afc_ic_menu_sort_by_name_desc.png │ │ │ ├── afc_ic_menu_sort_by_size_asc.png │ │ │ ├── afc_ic_menu_sort_by_size_desc.png │ │ │ ├── afc_button_create_folder_pressed.png │ │ │ ├── afc_button_navi_right_disabled.png │ │ │ ├── afc_button_create_folder_disabled.png │ │ │ ├── afc_button_folders_view_grid_disabled.png │ │ │ ├── afc_button_folders_view_grid_pressed.png │ │ │ ├── afc_button_folders_view_list_disabled.png │ │ │ └── afc_button_folders_view_list_pressed.png │ │ ├── drawable-hdpi-v11 │ │ │ ├── afc_ic_menu_home.png │ │ │ ├── afc_ic_menu_reload.png │ │ │ ├── afc_ic_menu_gridview.png │ │ │ ├── afc_ic_menu_listview.png │ │ │ ├── afc_ic_menu_sort_by_date_asc.png │ │ │ ├── afc_ic_menu_sort_by_date_desc.png │ │ │ ├── afc_ic_menu_sort_by_name_asc.png │ │ │ ├── afc_ic_menu_sort_by_name_desc.png │ │ │ ├── afc_ic_menu_sort_by_size_asc.png │ │ │ └── afc_ic_menu_sort_by_size_desc.png │ │ ├── drawable-ldpi-v11 │ │ │ ├── afc_ic_menu_home.png │ │ │ ├── afc_ic_menu_reload.png │ │ │ ├── afc_ic_menu_gridview.png │ │ │ ├── afc_ic_menu_listview.png │ │ │ ├── afc_ic_menu_sort_by_date_asc.png │ │ │ ├── afc_ic_menu_sort_by_date_desc.png │ │ │ ├── afc_ic_menu_sort_by_name_asc.png │ │ │ ├── afc_ic_menu_sort_by_name_desc.png │ │ │ ├── afc_ic_menu_sort_by_size_asc.png │ │ │ └── afc_ic_menu_sort_by_size_desc.png │ │ ├── drawable-mdpi-v11 │ │ │ ├── afc_ic_menu_home.png │ │ │ ├── afc_ic_menu_reload.png │ │ │ ├── afc_ic_menu_gridview.png │ │ │ ├── afc_ic_menu_listview.png │ │ │ ├── afc_ic_menu_sort_by_date_asc.png │ │ │ ├── afc_ic_menu_sort_by_date_desc.png │ │ │ ├── afc_ic_menu_sort_by_name_asc.png │ │ │ ├── afc_ic_menu_sort_by_name_desc.png │ │ │ ├── afc_ic_menu_sort_by_size_asc.png │ │ │ └── afc_ic_menu_sort_by_size_desc.png │ │ ├── drawable-xhdpi-v11 │ │ │ ├── afc_ic_menu_home.png │ │ │ ├── afc_ic_menu_reload.png │ │ │ ├── afc_ic_menu_gridview.png │ │ │ ├── afc_ic_menu_listview.png │ │ │ ├── afc_ic_menu_sort_by_date_asc.png │ │ │ ├── afc_ic_menu_sort_by_name_asc.png │ │ │ ├── afc_ic_menu_sort_by_size_asc.png │ │ │ ├── afc_ic_menu_sort_by_date_desc.png │ │ │ ├── afc_ic_menu_sort_by_name_desc.png │ │ │ └── afc_ic_menu_sort_by_size_desc.png │ │ ├── values │ │ │ └── colors.xml │ │ ├── layout │ │ │ ├── afc_button_location.xml │ │ │ ├── afc_listview_files.xml │ │ │ ├── afc_gridview_files.xml │ │ │ ├── afc_context_menu_tiem.xml │ │ │ └── afc_context_menu_view.xml │ │ ├── values-hdpi │ │ │ └── dimens.xml │ │ ├── values-mdpi │ │ │ └── dimens.xml │ │ ├── values-xhdpi │ │ │ └── dimens.xml │ │ ├── values-ldpi │ │ │ └── dimens.xml │ │ └── drawable │ │ │ ├── afc_item_file.xml │ │ │ ├── afc_item_folder.xml │ │ │ ├── afc_selector_button_ok_saveas.xml │ │ │ ├── afc_selector_button_navi_left.xml │ │ │ ├── afc_selector_button_sort_as.xml │ │ │ ├── afc_selector_button_sort_de.xml │ │ │ ├── afc_selector_button_location_dark.xml │ │ │ ├── afc_selector_button_navi_right.xml │ │ │ ├── afc_selector_button_create_folder.xml │ │ │ ├── afc_selector_button_folders_view_grid.xml │ │ │ └── afc_selector_button_folders_view_list.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── group │ │ └── pals │ │ └── android │ │ └── lib │ │ └── ui │ │ └── filechooser │ │ └── utils │ │ └── history │ │ ├── HistoryListener.java │ │ └── HistoryFilter.java └── build.gradle ├── ambilWarna ├── src │ └── main │ │ ├── res │ │ ├── drawable │ │ │ ├── ambilwarna_hue.png │ │ │ ├── ambilwarna_cursor.png │ │ │ ├── ambilwarna_target.png │ │ │ ├── ambilwarna_arrow_down.png │ │ │ └── ambilwarna_arrow_right.png │ │ ├── drawable-hdpi │ │ │ ├── ambilwarna_cursor.png │ │ │ ├── ambilwarna_target.png │ │ │ ├── ambilwarna_arrow_down.png │ │ │ └── ambilwarna_arrow_right.png │ │ ├── drawable-ldpi │ │ │ ├── ambilwarna_cursor.png │ │ │ ├── ambilwarna_target.png │ │ │ ├── ambilwarna_arrow_down.png │ │ │ └── ambilwarna_arrow_right.png │ │ ├── drawable-xhdpi │ │ │ ├── ambilwarna_cursor.png │ │ │ ├── ambilwarna_target.png │ │ │ ├── ambilwarna_arrow_down.png │ │ │ └── ambilwarna_arrow_right.png │ │ ├── values-land │ │ │ └── dimen.xml │ │ ├── values-xlarge-land │ │ │ └── dimen.xml │ │ ├── values │ │ │ └── dimen.xml │ │ └── layout │ │ │ └── ambilwarna_pref_widget.xml │ │ └── AndroidManifest.xml └── build.gradle ├── superToasts ├── src │ └── main │ │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── icon_dark_edit.png │ │ │ ├── icon_dark_exit.png │ │ │ ├── icon_dark_info.png │ │ │ ├── icon_dark_redo.png │ │ │ ├── icon_dark_save.png │ │ │ ├── icon_dark_share.png │ │ │ ├── icon_dark_undo.png │ │ │ ├── icon_light_edit.png │ │ │ ├── icon_light_exit.png │ │ │ ├── icon_light_info.png │ │ │ ├── icon_light_redo.png │ │ │ ├── icon_light_save.png │ │ │ ├── icon_light_share.png │ │ │ ├── icon_light_undo.png │ │ │ ├── icon_dark_refresh.png │ │ │ └── icon_light_refresh.png │ │ ├── drawable-mdpi │ │ │ ├── icon_dark_edit.png │ │ │ ├── icon_dark_exit.png │ │ │ ├── icon_dark_info.png │ │ │ ├── icon_dark_redo.png │ │ │ ├── icon_dark_save.png │ │ │ ├── icon_dark_share.png │ │ │ ├── icon_dark_undo.png │ │ │ ├── icon_light_edit.png │ │ │ ├── icon_light_exit.png │ │ │ ├── icon_light_info.png │ │ │ ├── icon_light_redo.png │ │ │ ├── icon_light_save.png │ │ │ ├── icon_light_share.png │ │ │ ├── icon_light_undo.png │ │ │ ├── icon_dark_refresh.png │ │ │ └── icon_light_refresh.png │ │ ├── drawable-xhdpi │ │ │ ├── icon_dark_edit.png │ │ │ ├── icon_dark_exit.png │ │ │ ├── icon_dark_info.png │ │ │ ├── icon_dark_redo.png │ │ │ ├── icon_dark_save.png │ │ │ ├── icon_dark_share.png │ │ │ ├── icon_dark_undo.png │ │ │ ├── icon_light_edit.png │ │ │ ├── icon_light_exit.png │ │ │ ├── icon_light_info.png │ │ │ ├── icon_light_redo.png │ │ │ ├── icon_light_save.png │ │ │ ├── icon_light_undo.png │ │ │ ├── icon_dark_refresh.png │ │ │ ├── icon_light_share.png │ │ │ └── icon_light_refresh.png │ │ ├── values-v19 │ │ │ └── dimen.xml │ │ ├── drawable │ │ │ ├── shape_undobarselected.xml │ │ │ ├── shape_kitkat_square_undobarselected.xml │ │ │ ├── background_kitkat_blue.xml │ │ │ ├── background_kitkat_gray.xml │ │ │ ├── background_kitkat_red.xml │ │ │ ├── background_kitkat_black.xml │ │ │ ├── background_kitkat_green.xml │ │ │ ├── background_kitkat_orange.xml │ │ │ ├── background_kitkat_purple.xml │ │ │ ├── background_kitkat_white.xml │ │ │ ├── shape_undobarfocused.xml │ │ │ ├── shape_kitkat_undobarselected.xml │ │ │ ├── shape_kitkat_square_undobarfocused.xml │ │ │ ├── shape_kitkat_undobarfocused.xml │ │ │ ├── selector_kitkat_undobutton.xml │ │ │ ├── selector_undobutton.xml │ │ │ ├── selector_kitkat_square_undobutton.xml │ │ │ ├── background_standard_blue.xml │ │ │ ├── background_standard_gray.xml │ │ │ └── background_standard_red.xml │ │ ├── values │ │ │ ├── colors.xml │ │ │ └── dimen.xml │ │ └── layout │ │ │ ├── dummy_layout.xml │ │ │ └── supertoast.xml │ │ └── AndroidManifest.xml └── build.gradle ├── library ├── src │ └── main │ │ └── AndroidManifest.xml └── build.gradle └── .gitignore /README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fBReader/libs/pdfparse.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/libs/pdfparse.jar -------------------------------------------------------------------------------- /fBReader/src/main/jni/LineBreak/liblinebreak-2.0/LineBreak1.sed: -------------------------------------------------------------------------------- 1 | s/\(^[0-9A-F.]\{1,\};[A-Z][A-Z0-9]\) #.*/\1/p 2 | -------------------------------------------------------------------------------- /fBReader/libs/httpmime-4.2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/libs/httpmime-4.2.5.jar -------------------------------------------------------------------------------- /fBReader/libs/nanohttpd-2.0.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/libs/nanohttpd-2.0.5.jar -------------------------------------------------------------------------------- /fBReader/src/main/jni/LineBreak/liblinebreak-2.0/linebreakdata1.tmpl: -------------------------------------------------------------------------------- 1 | /* The content of this file is generated from: 2 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/LineBreak/liblinebreak-2.0/linebreakdata3.tmpl: -------------------------------------------------------------------------------- 1 | { 0xFFFFFFFF, 0xFFFFFFFF, LBP_Undefined } 2 | }; 3 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /fBReader/libs/json-simple-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/libs/json-simple-1.1.1.jar -------------------------------------------------------------------------------- /fBReader/src/main/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := armeabi armeabi-v7a x86 mips arm64-v8a mips64 x86_64 2 | APP_STL := stlport_static 3 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':ambilWarna' 2 | include ':superToasts' 3 | include ':code' 4 | include ':library' 5 | include ':fBReader' 6 | -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_file.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_file.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_file.png -------------------------------------------------------------------------------- /fBReader/libs/LingvoIntegration_2.5.2.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/libs/LingvoIntegration_2.5.2.12.jar -------------------------------------------------------------------------------- /fBReader/libs/open-dictionary-api-1.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/libs/open-dictionary-api-1.2.1.jar -------------------------------------------------------------------------------- /fBReader/src/main/assets/wallpapers/sand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/assets/wallpapers/sand.jpg -------------------------------------------------------------------------------- /fBReader/src/main/assets/wallpapers/wood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/assets/wallpapers/wood.jpg -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/drag_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/drag_icon.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_folder.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_folder.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_folder.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_file.png -------------------------------------------------------------------------------- /fBReader/src/main/assets/wallpapers/sepia.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/assets/wallpapers/sepia.jpg -------------------------------------------------------------------------------- /fBReader/src/main/libs/mips/libLineBreak-v2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/mips/libLineBreak-v2.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/x86/libLineBreak-v2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/x86/libLineBreak-v2.so -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_buy.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/plugin_cbr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/plugin_cbr.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/plugin_djvu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/plugin_djvu.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/plugin_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/plugin_pdf.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_folder.png -------------------------------------------------------------------------------- /fBReader/src/main/assets/wallpapers/hardpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/assets/wallpapers/hardpaper.jpg -------------------------------------------------------------------------------- /fBReader/src/main/assets/wallpapers/leather.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/assets/wallpapers/leather.jpg -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/doc/expat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jni/expat-2.0.1/doc/expat.png -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/win32/expat.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jni/expat-2.0.1/win32/expat.iss -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/mips/libLineBreak-v2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/mips/libLineBreak-v2.so -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/x86/libLineBreak-v2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/x86/libLineBreak-v2.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/armeabi/libLineBreak-v2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/armeabi/libLineBreak-v2.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/mips64/libLineBreak-v2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/mips64/libLineBreak-v2.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/x86/libNativeFormats-v4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/x86/libNativeFormats-v4.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/x86_64/libLineBreak-v2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/x86_64/libLineBreak-v2.so -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/fbreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/fbreader.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-ldpi/fbreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-ldpi/fbreader.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/fbreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/fbreader.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/fbreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/fbreader.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_flag.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_plus.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/link_default.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/link_default.9.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/link_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/link_pressed.9.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/plugin_litres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/plugin_litres.png -------------------------------------------------------------------------------- /ambilWarna/src/main/res/drawable/ambilwarna_hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/ambilWarna/src/main/res/drawable/ambilwarna_hue.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_file_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_file_audio.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_file_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_file_image.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_file_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_file_video.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_file_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_file_audio.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_file_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_file_image.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_file_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_file_video.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_file_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_file_audio.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_file_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_file_image.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_file_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_file_video.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_file_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_file_audio.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_file_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_file_image.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_file_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_file_video.png -------------------------------------------------------------------------------- /fBReader/src/main/assets/formats/fb2/fb2genres.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/assets/formats/fb2/fb2genres.xml -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/lib/Makefile.MPW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jni/expat-2.0.1/lib/Makefile.MPW -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/mips64/libLineBreak-v2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/mips64/libLineBreak-v2.so -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/x86_64/libLineBreak-v2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/x86_64/libLineBreak-v2.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/arm64-v8a/libLineBreak-v2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/arm64-v8a/libLineBreak-v2.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/mips/libNativeFormats-v4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/mips/libNativeFormats-v4.so -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/fbreader_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/fbreader_bw.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_menu_add.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_menu_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_menu_day.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_menu_toc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_menu_toc.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-ldpi/fbreader_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-ldpi/fbreader_bw.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/fbreader_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/fbreader_bw.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/fbreader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/fbreader.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/dropdown_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/dropdown_normal.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/dropdown_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/dropdown_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_download.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/link_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/link_selected.9.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/plugin_bookshelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/plugin_bookshelf.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/plugin_tts_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/plugin_tts_plus.png -------------------------------------------------------------------------------- /ambilWarna/src/main/res/drawable/ambilwarna_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/ambilWarna/src/main/res/drawable/ambilwarna_cursor.png -------------------------------------------------------------------------------- /ambilWarna/src/main/res/drawable/ambilwarna_target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/ambilWarna/src/main/res/drawable/ambilwarna_target.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_sort_as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_sort_as.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_sort_de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_sort_de.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_file_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_file_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_folder_locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_folder_locked.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_ic_menu_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_ic_menu_home.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_ic_menu_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_ic_menu_reload.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_file_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_file_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_folder_locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_folder_locked.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_ic_menu_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_ic_menu_home.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_ic_menu_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_ic_menu_reload.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_file_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_file_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_folder_locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_folder_locked.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_ic_menu_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_ic_menu_home.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_ic_menu_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_ic_menu_reload.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_file_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_file_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_folder_locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_folder_locked.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_ic_menu_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_ic_menu_home.png -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/arm64-v8a/libLineBreak-v2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/arm64-v8a/libLineBreak-v2.so -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/armeabi/libLineBreak-v2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/armeabi/libLineBreak-v2.so -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/mips/libNativeFormats-v4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/mips/libNativeFormats-v4.so -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/x86/libNativeFormats-v4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/x86/libNativeFormats-v4.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/armeabi-v7a/libLineBreak-v2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/armeabi-v7a/libLineBreak-v2.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/armeabi/libNativeFormats-v4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/armeabi/libNativeFormats-v4.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/mips64/libNativeFormats-v4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/mips64/libNativeFormats-v4.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/x86_64/libNativeFormats-v4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/x86_64/libNativeFormats-v4.so -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_close_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_close_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_menu_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_menu_filter.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_menu_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_menu_night.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_menu_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_menu_none.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_menu_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_menu_search.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_share_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_share_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/ic_close_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/ic_close_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/ic_share_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/ic_share_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/fbreader_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/fbreader_bw.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_menu_add.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_menu_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_menu_day.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_menu_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_menu_night.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_menu_none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_menu_none.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_menu_toc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_menu_toc.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/fbreader_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/fbreader_bw.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/dropdown_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/dropdown_selected.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_downloading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_downloading.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_group_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_group_empty.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_group_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_group_open.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_library_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_library_tag.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_library_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_library_zip.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi-v11/afc_ic_menu_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi-v11/afc_ic_menu_home.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_navi_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_navi_left.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_ok_saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_ok_saveas.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_file_compressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_file_compressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_file_plain_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_file_plain_text.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_folder_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_folder_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_ic_menu_gridview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_ic_menu_gridview.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_ic_menu_listview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_ic_menu_listview.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi-v11/afc_ic_menu_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi-v11/afc_ic_menu_home.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_button_navi_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_button_navi_left.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_button_ok_saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_button_ok_saveas.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_file_compressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_file_compressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_file_plain_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_file_plain_text.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_folder_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_folder_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_ic_menu_gridview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_ic_menu_gridview.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_ic_menu_listview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_ic_menu_listview.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi-v11/afc_ic_menu_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi-v11/afc_ic_menu_home.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_button_navi_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_button_navi_left.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_button_ok_saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_button_ok_saveas.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_file_compressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_file_compressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_file_plain_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_file_plain_text.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_folder_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_folder_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_ic_menu_gridview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_ic_menu_gridview.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_ic_menu_listview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_ic_menu_listview.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_file_compressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_file_compressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_file_plain_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_file_plain_text.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_folder_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_folder_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_ic_menu_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_ic_menu_reload.png -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/doc/valid-xhtml10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jni/expat-2.0.1/doc/valid-xhtml10.png -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/armeabi-v7a/libLineBreak-v2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/armeabi-v7a/libLineBreak-v2.so -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/armeabi/libNativeFormats-v4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/armeabi/libNativeFormats-v4.so -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/mips64/libNativeFormats-v4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/mips64/libNativeFormats-v4.so -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/x86_64/libNativeFormats-v4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/x86_64/libNativeFormats-v4.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/arm64-v8a/libNativeFormats-v4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/arm64-v8a/libNativeFormats-v4.so -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_close_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_close_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_menu_library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_menu_library.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_menu_refresh.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_share_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_share_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/ic_close_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/ic_close_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/ic_share_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/ic_share_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_close_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_close_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_menu_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_menu_filter.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_menu_library.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_menu_library.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_menu_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_menu_refresh.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_menu_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_menu_search.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_share_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_share_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/ic_close_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/ic_close_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/ic_share_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/ic_share_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_group_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_group_closed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_library_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_library_book.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_library_books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_library_books.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_library_tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_library_tags.png -------------------------------------------------------------------------------- /ambilWarna/src/main/res/drawable-hdpi/ambilwarna_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/ambilWarna/src/main/res/drawable-hdpi/ambilwarna_cursor.png -------------------------------------------------------------------------------- /ambilWarna/src/main/res/drawable-hdpi/ambilwarna_target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/ambilWarna/src/main/res/drawable-hdpi/ambilwarna_target.png -------------------------------------------------------------------------------- /ambilWarna/src/main/res/drawable-ldpi/ambilwarna_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/ambilWarna/src/main/res/drawable-ldpi/ambilwarna_cursor.png -------------------------------------------------------------------------------- /ambilWarna/src/main/res/drawable-ldpi/ambilwarna_target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/ambilWarna/src/main/res/drawable-ldpi/ambilwarna_target.png -------------------------------------------------------------------------------- /ambilWarna/src/main/res/drawable/ambilwarna_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/ambilWarna/src/main/res/drawable/ambilwarna_arrow_down.png -------------------------------------------------------------------------------- /ambilWarna/src/main/res/drawable/ambilwarna_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/ambilWarna/src/main/res/drawable/ambilwarna_arrow_right.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi-v11/afc_ic_menu_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi-v11/afc_ic_menu_reload.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_navi_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_navi_right.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi-v11/afc_ic_menu_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi-v11/afc_ic_menu_reload.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_button_navi_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_button_navi_right.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi-v11/afc_ic_menu_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi-v11/afc_ic_menu_reload.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_button_navi_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_button_navi_right.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_home.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_reload.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_button_navi_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_button_navi_left.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_button_navi_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_button_navi_right.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_button_ok_saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_button_ok_saveas.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_ic_menu_gridview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_ic_menu_gridview.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_ic_menu_listview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_ic_menu_listview.png -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/arm64-v8a/libNativeFormats-v4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/arm64-v8a/libNativeFormats-v4.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/armeabi-v7a/libNativeFormats-v4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/armeabi-v7a/libNativeFormats-v4.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/mips/libDeflatingDecompressor-v3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/mips/libDeflatingDecompressor-v3.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/x86/libDeflatingDecompressor-v3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/x86/libDeflatingDecompressor-v3.so -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_arrow_back_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_arrow_back_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_menu_bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_menu_bookmarks.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_translate_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_translate_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/ic_arrow_back_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/ic_arrow_back_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/ic_translate_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/ic_translate_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_close_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_close_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_menu_bookmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_menu_bookmarks.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_share_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_share_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_translate_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_translate_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/ic_close_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/ic_close_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/ic_share_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/ic_share_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxxhdpi/ic_close_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxxhdpi/ic_close_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxxhdpi/ic_close_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxxhdpi/ic_close_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxxhdpi/ic_share_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxxhdpi/ic_share_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxxhdpi/ic_share_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxxhdpi/ic_share_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_library_author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_library_author.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_library_authors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_library_authors.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_library_basket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_library_basket.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_library_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_library_folder.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_library_recent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_library_recent.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_library_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_library_search.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-hdpi/icon_dark_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-hdpi/icon_dark_edit.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-hdpi/icon_dark_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-hdpi/icon_dark_exit.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-hdpi/icon_dark_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-hdpi/icon_dark_info.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-hdpi/icon_dark_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-hdpi/icon_dark_redo.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-hdpi/icon_dark_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-hdpi/icon_dark_save.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-hdpi/icon_dark_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-hdpi/icon_dark_share.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-hdpi/icon_dark_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-hdpi/icon_dark_undo.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-hdpi/icon_light_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-hdpi/icon_light_edit.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-hdpi/icon_light_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-hdpi/icon_light_exit.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-hdpi/icon_light_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-hdpi/icon_light_info.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-hdpi/icon_light_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-hdpi/icon_light_redo.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-hdpi/icon_light_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-hdpi/icon_light_save.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-hdpi/icon_light_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-hdpi/icon_light_share.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-hdpi/icon_light_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-hdpi/icon_light_undo.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-mdpi/icon_dark_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-mdpi/icon_dark_edit.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-mdpi/icon_dark_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-mdpi/icon_dark_exit.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-mdpi/icon_dark_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-mdpi/icon_dark_info.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-mdpi/icon_dark_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-mdpi/icon_dark_redo.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-mdpi/icon_dark_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-mdpi/icon_dark_save.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-mdpi/icon_dark_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-mdpi/icon_dark_share.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-mdpi/icon_dark_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-mdpi/icon_dark_undo.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-mdpi/icon_light_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-mdpi/icon_light_edit.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-mdpi/icon_light_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-mdpi/icon_light_exit.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-mdpi/icon_light_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-mdpi/icon_light_info.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-mdpi/icon_light_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-mdpi/icon_light_redo.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-mdpi/icon_light_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-mdpi/icon_light_save.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-mdpi/icon_light_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-mdpi/icon_light_share.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-mdpi/icon_light_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-mdpi/icon_light_undo.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-xhdpi/icon_dark_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-xhdpi/icon_dark_edit.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-xhdpi/icon_dark_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-xhdpi/icon_dark_exit.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-xhdpi/icon_dark_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-xhdpi/icon_dark_info.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-xhdpi/icon_dark_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-xhdpi/icon_dark_redo.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-xhdpi/icon_dark_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-xhdpi/icon_dark_save.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-xhdpi/icon_dark_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-xhdpi/icon_dark_share.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-xhdpi/icon_dark_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-xhdpi/icon_dark_undo.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-xhdpi/icon_light_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-xhdpi/icon_light_edit.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-xhdpi/icon_light_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-xhdpi/icon_light_exit.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-xhdpi/icon_light_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-xhdpi/icon_light_info.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-xhdpi/icon_light_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-xhdpi/icon_light_redo.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-xhdpi/icon_light_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-xhdpi/icon_light_save.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-xhdpi/icon_light_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-xhdpi/icon_light_undo.png -------------------------------------------------------------------------------- /ambilWarna/src/main/res/drawable-xhdpi/ambilwarna_cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/ambilWarna/src/main/res/drawable-xhdpi/ambilwarna_cursor.png -------------------------------------------------------------------------------- /ambilWarna/src/main/res/drawable-xhdpi/ambilwarna_target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/ambilWarna/src/main/res/drawable-xhdpi/ambilwarna_target.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi-v11/afc_ic_menu_gridview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi-v11/afc_ic_menu_gridview.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi-v11/afc_ic_menu_listview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi-v11/afc_ic_menu_listview.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_create_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_create_folder.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi-v11/afc_ic_menu_gridview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi-v11/afc_ic_menu_gridview.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi-v11/afc_ic_menu_listview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi-v11/afc_ic_menu_listview.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_button_create_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_button_create_folder.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi-v11/afc_ic_menu_gridview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi-v11/afc_ic_menu_gridview.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi-v11/afc_ic_menu_listview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi-v11/afc_ic_menu_listview.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_button_create_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_button_create_folder.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_gridview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_gridview.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_listview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_listview.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_button_create_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_button_create_folder.png -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/armeabi-v7a/libNativeFormats-v4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/armeabi-v7a/libNativeFormats-v4.so -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/mips/libDeflatingDecompressor-v3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/mips/libDeflatingDecompressor-v3.so -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/x86/libDeflatingDecompressor-v3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/x86/libDeflatingDecompressor-v3.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/armeabi/libDeflatingDecompressor-v3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/armeabi/libDeflatingDecompressor-v3.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/mips64/libDeflatingDecompressor-v3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/mips64/libDeflatingDecompressor-v3.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/x86_64/libDeflatingDecompressor-v3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/x86_64/libDeflatingDecompressor-v3.so -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_arrow_back_grey600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_arrow_back_grey600.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_arrow_back_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_arrow_back_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_close_large_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_close_large_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_content_copy_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_content_copy_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_translate_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_translate_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/ic_arrow_back_grey600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/ic_arrow_back_grey600.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/ic_arrow_back_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/ic_arrow_back_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/ic_close_large_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/ic_close_large_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/ic_content_copy_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/ic_content_copy_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/ic_translate_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/ic_translate_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_arrow_back_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_arrow_back_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_close_large_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_close_large_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_translate_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_translate_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/ic_arrow_back_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/ic_arrow_back_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/ic_translate_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/ic_translate_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxxhdpi/ic_translate_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxxhdpi/ic_translate_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_library_favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_library_favorites.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-hdpi/icon_dark_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-hdpi/icon_dark_refresh.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-hdpi/icon_light_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-hdpi/icon_light_refresh.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-mdpi/icon_dark_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-mdpi/icon_dark_refresh.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-mdpi/icon_light_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-mdpi/icon_light_refresh.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-xhdpi/icon_dark_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-xhdpi/icon_dark_refresh.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-xhdpi/icon_light_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-xhdpi/icon_light_share.png -------------------------------------------------------------------------------- /ambilWarna/src/main/res/drawable-hdpi/ambilwarna_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/ambilWarna/src/main/res/drawable-hdpi/ambilwarna_arrow_down.png -------------------------------------------------------------------------------- /ambilWarna/src/main/res/drawable-hdpi/ambilwarna_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/ambilWarna/src/main/res/drawable-hdpi/ambilwarna_arrow_right.png -------------------------------------------------------------------------------- /ambilWarna/src/main/res/drawable-ldpi/ambilwarna_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/ambilWarna/src/main/res/drawable-ldpi/ambilwarna_arrow_down.png -------------------------------------------------------------------------------- /ambilWarna/src/main/res/drawable-ldpi/ambilwarna_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/ambilWarna/src/main/res/drawable-ldpi/ambilwarna_arrow_right.png -------------------------------------------------------------------------------- /ambilWarna/src/main/res/drawable-xhdpi/ambilwarna_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/ambilWarna/src/main/res/drawable-xhdpi/ambilwarna_arrow_down.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_folders_view_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_folders_view_grid.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_folders_view_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_folders_view_list.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_navi_left_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_navi_left_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_ok_saveas_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_ok_saveas_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_sort_as_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_sort_as_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_sort_as_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_sort_as_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_sort_de_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_sort_de_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_sort_de_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_sort_de_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_ic_menu_sort_by_date_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_ic_menu_sort_by_date_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_ic_menu_sort_by_name_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_ic_menu_sort_by_name_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_ic_menu_sort_by_size_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_ic_menu_sort_by_size_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_button_folders_view_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_button_folders_view_grid.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_button_folders_view_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_button_folders_view_list.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_button_navi_left_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_button_navi_left_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_button_ok_saveas_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_button_ok_saveas_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_ic_menu_sort_by_date_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_ic_menu_sort_by_date_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_ic_menu_sort_by_name_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_ic_menu_sort_by_name_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_ic_menu_sort_by_size_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_ic_menu_sort_by_size_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_button_folders_view_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_button_folders_view_grid.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_button_folders_view_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_button_folders_view_list.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_button_navi_left_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_button_navi_left_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_button_ok_saveas_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_button_ok_saveas_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_ic_menu_sort_by_date_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_ic_menu_sort_by_date_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_ic_menu_sort_by_name_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_ic_menu_sort_by_name_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_ic_menu_sort_by_size_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_ic_menu_sort_by_size_asc.png -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/armeabi/libDeflatingDecompressor-v3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/armeabi/libDeflatingDecompressor-v3.so -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/mips64/libDeflatingDecompressor-v3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/mips64/libDeflatingDecompressor-v3.so -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/x86_64/libDeflatingDecompressor-v3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/x86_64/libDeflatingDecompressor-v3.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/arm64-v8a/libDeflatingDecompressor-v3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/arm64-v8a/libDeflatingDecompressor-v3.so -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_arrow_forward_grey600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_arrow_forward_grey600.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_arrow_forward_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_arrow_forward_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_arrow_forward_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_arrow_forward_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_close_large_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_close_large_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_content_copy_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_content_copy_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_menu_networklibrary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_menu_networklibrary.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/ic_arrow_forward_grey600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/ic_arrow_forward_grey600.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/ic_arrow_forward_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/ic_arrow_forward_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/ic_arrow_forward_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/ic_arrow_forward_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/ic_close_large_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/ic_close_large_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/ic_content_copy_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/ic_content_copy_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_arrow_back_grey600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_arrow_back_grey600.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_arrow_back_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_arrow_back_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_arrow_forward_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_arrow_forward_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_close_large_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_close_large_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_content_copy_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_content_copy_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_content_copy_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_content_copy_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_menu_networklibrary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_menu_networklibrary.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/ic_arrow_back_grey600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/ic_arrow_back_grey600.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/ic_arrow_back_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/ic_arrow_back_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/ic_arrow_forward_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/ic_arrow_forward_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/ic_close_large_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/ic_close_large_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/ic_close_large_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/ic_close_large_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/ic_content_copy_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/ic_content_copy_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/ic_translate_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/ic_translate_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxxhdpi/ic_arrow_back_grey600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxxhdpi/ic_arrow_back_grey600.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxxhdpi/ic_arrow_back_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxxhdpi/ic_arrow_back_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxxhdpi/ic_arrow_back_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxxhdpi/ic_arrow_back_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxxhdpi/ic_close_large_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxxhdpi/ic_close_large_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxxhdpi/ic_content_copy_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxxhdpi/ic_content_copy_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxxhdpi/ic_translate_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxxhdpi/ic_translate_pressed.png -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable-xhdpi/icon_light_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/superToasts/src/main/res/drawable-xhdpi/icon_light_refresh.png -------------------------------------------------------------------------------- /ambilWarna/src/main/res/drawable-xhdpi/ambilwarna_arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/ambilWarna/src/main/res/drawable-xhdpi/ambilwarna_arrow_right.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_navi_left_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_navi_left_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_navi_right_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_navi_right_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_navi_right_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_navi_right_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_context_menu_item_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_context_menu_item_divider.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_ic_menu_sort_by_date_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_ic_menu_sort_by_date_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_ic_menu_sort_by_name_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_ic_menu_sort_by_name_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_ic_menu_sort_by_size_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_ic_menu_sort_by_size_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_button_navi_left_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_button_navi_left_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_button_navi_right_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_button_navi_right_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_button_navi_right_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_button_navi_right_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_context_menu_item_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_context_menu_item_divider.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_ic_menu_sort_by_date_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_ic_menu_sort_by_date_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_ic_menu_sort_by_name_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_ic_menu_sort_by_name_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_ic_menu_sort_by_size_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_ic_menu_sort_by_size_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_button_navi_left_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_button_navi_left_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_button_navi_right_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_button_navi_right_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_button_navi_right_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_button_navi_right_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_context_menu_item_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_context_menu_item_divider.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_ic_menu_sort_by_date_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_ic_menu_sort_by_date_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_ic_menu_sort_by_name_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_ic_menu_sort_by_name_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_ic_menu_sort_by_size_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_ic_menu_sort_by_size_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_button_folders_view_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_button_folders_view_grid.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_button_folders_view_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_button_folders_view_list.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_button_navi_left_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_button_navi_left_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_button_navi_left_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_button_navi_left_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_button_navi_right_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_button_navi_right_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_button_ok_saveas_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_button_ok_saveas_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_context_menu_item_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_context_menu_item_divider.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_ic_menu_sort_by_date_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_ic_menu_sort_by_date_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_ic_menu_sort_by_date_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_ic_menu_sort_by_date_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_ic_menu_sort_by_name_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_ic_menu_sort_by_name_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_ic_menu_sort_by_name_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_ic_menu_sort_by_name_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_ic_menu_sort_by_size_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_ic_menu_sort_by_size_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_ic_menu_sort_by_size_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_ic_menu_sort_by_size_desc.png -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/arm64-v8a/libDeflatingDecompressor-v3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/arm64-v8a/libDeflatingDecompressor-v3.so -------------------------------------------------------------------------------- /fBReader/src/main/libs/armeabi-v7a/libDeflatingDecompressor-v3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/libs/armeabi-v7a/libDeflatingDecompressor-v3.so -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_bookmark_outline_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_bookmark_outline_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/ic_bookmark_outline_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/ic_bookmark_outline_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_arrow_forward_grey600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_arrow_forward_grey600.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_arrow_forward_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_arrow_forward_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_bookmark_outline_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_bookmark_outline_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/ic_arrow_forward_grey600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/ic_arrow_forward_grey600.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/ic_arrow_forward_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/ic_arrow_forward_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/ic_content_copy_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/ic_content_copy_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxxhdpi/ic_arrow_forward_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxxhdpi/ic_arrow_forward_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxxhdpi/ic_close_large_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxxhdpi/ic_close_large_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxxhdpi/ic_content_copy_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxxhdpi/ic_content_copy_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi-v11/afc_ic_menu_sort_by_date_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi-v11/afc_ic_menu_sort_by_date_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi-v11/afc_ic_menu_sort_by_date_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi-v11/afc_ic_menu_sort_by_date_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi-v11/afc_ic_menu_sort_by_name_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi-v11/afc_ic_menu_sort_by_name_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi-v11/afc_ic_menu_sort_by_name_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi-v11/afc_ic_menu_sort_by_name_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi-v11/afc_ic_menu_sort_by_size_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi-v11/afc_ic_menu_sort_by_size_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi-v11/afc_ic_menu_sort_by_size_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi-v11/afc_ic_menu_sort_by_size_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_create_folder_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_create_folder_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_create_folder_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_create_folder_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi-v11/afc_ic_menu_sort_by_date_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi-v11/afc_ic_menu_sort_by_date_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi-v11/afc_ic_menu_sort_by_date_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi-v11/afc_ic_menu_sort_by_date_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi-v11/afc_ic_menu_sort_by_name_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi-v11/afc_ic_menu_sort_by_name_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi-v11/afc_ic_menu_sort_by_name_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi-v11/afc_ic_menu_sort_by_name_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi-v11/afc_ic_menu_sort_by_size_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi-v11/afc_ic_menu_sort_by_size_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi-v11/afc_ic_menu_sort_by_size_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi-v11/afc_ic_menu_sort_by_size_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_button_create_folder_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_button_create_folder_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_button_create_folder_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_button_create_folder_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi-v11/afc_ic_menu_sort_by_date_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi-v11/afc_ic_menu_sort_by_date_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi-v11/afc_ic_menu_sort_by_date_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi-v11/afc_ic_menu_sort_by_date_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi-v11/afc_ic_menu_sort_by_name_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi-v11/afc_ic_menu_sort_by_name_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi-v11/afc_ic_menu_sort_by_name_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi-v11/afc_ic_menu_sort_by_name_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi-v11/afc_ic_menu_sort_by_size_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi-v11/afc_ic_menu_sort_by_size_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi-v11/afc_ic_menu_sort_by_size_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi-v11/afc_ic_menu_sort_by_size_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_button_create_folder_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_button_create_folder_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_button_create_folder_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_button_create_folder_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_sort_by_date_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_sort_by_date_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_sort_by_name_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_sort_by_name_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_sort_by_size_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_sort_by_size_asc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_button_create_folder_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_button_create_folder_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_button_navi_right_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_button_navi_right_disabled.png -------------------------------------------------------------------------------- /fBReader/src/main/assets/hyphenationPatterns/ka.pattern: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/LineBreak/liblinebreak-2.0/LineBreak2.sed: -------------------------------------------------------------------------------- 1 | s/^\([0-9A-F]\{1,\}\);/\1..\1;/ 2 | s/^\([0-9A-F]\{1,\}\)\.\.\([0-9A-F]\{1,\}\);\([A-Z][A-Z0-9]\)/ { 0x\1, 0x\2, LBP_\3 },/ 3 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/LineBreak/liblinebreak-2.0/doc/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jni/LineBreak/liblinebreak-2.0/doc/html/doxygen.png -------------------------------------------------------------------------------- /fBReader/src/main/jni/LineBreak/liblinebreak-2.0/doc/html/tab_b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jni/LineBreak/liblinebreak-2.0/doc/html/tab_b.gif -------------------------------------------------------------------------------- /fBReader/src/main/jni/LineBreak/liblinebreak-2.0/doc/html/tab_l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jni/LineBreak/liblinebreak-2.0/doc/html/tab_l.gif -------------------------------------------------------------------------------- /fBReader/src/main/jni/LineBreak/liblinebreak-2.0/doc/html/tab_r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jni/LineBreak/liblinebreak-2.0/doc/html/tab_r.gif -------------------------------------------------------------------------------- /fBReader/src/main/jniLibs/armeabi-v7a/libDeflatingDecompressor-v3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/jniLibs/armeabi-v7a/libDeflatingDecompressor-v3.so -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-hdpi/ic_bookmark_outline_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-hdpi/ic_bookmark_outline_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-mdpi/ic_bookmark_outline_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-mdpi/ic_bookmark_outline_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xhdpi/ic_bookmark_outline_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xhdpi/ic_bookmark_outline_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/ic_bookmark_outline_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/ic_bookmark_outline_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxhdpi/ic_bookmark_outline_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxhdpi/ic_bookmark_outline_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxxhdpi/ic_arrow_forward_grey600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxxhdpi/ic_arrow_forward_grey600.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxxhdpi/ic_arrow_forward_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxxhdpi/ic_arrow_forward_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxxhdpi/ic_bookmark_outline_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxxhdpi/ic_bookmark_outline_white.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/ic_list_library_permission_denied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/ic_list_library_permission_denied.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/plugin_calibre_server_integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable/plugin_calibre_server_integration.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_sort_by_date_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_sort_by_date_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_sort_by_name_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_sort_by_name_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_sort_by_size_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi-v11/afc_ic_menu_sort_by_size_desc.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_button_create_folder_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_button_create_folder_disabled.png -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable-xxxhdpi/ic_bookmark_outline_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/fBReader/src/main/res/drawable-xxxhdpi/ic_bookmark_outline_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_folders_view_grid_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_folders_view_grid_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_folders_view_grid_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_folders_view_grid_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_folders_view_list_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_folders_view_list_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-hdpi/afc_button_folders_view_list_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-hdpi/afc_button_folders_view_list_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_button_folders_view_grid_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_button_folders_view_grid_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_button_folders_view_grid_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_button_folders_view_grid_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_button_folders_view_list_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_button_folders_view_list_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-ldpi/afc_button_folders_view_list_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-ldpi/afc_button_folders_view_list_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_button_folders_view_grid_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_button_folders_view_grid_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_button_folders_view_grid_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_button_folders_view_grid_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_button_folders_view_list_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_button_folders_view_list_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-mdpi/afc_button_folders_view_list_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-mdpi/afc_button_folders_view_list_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_button_folders_view_grid_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_button_folders_view_grid_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_button_folders_view_grid_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_button_folders_view_grid_pressed.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_button_folders_view_list_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_button_folders_view_list_disabled.png -------------------------------------------------------------------------------- /code/src/main/res/drawable-xhdpi/afc_button_folders_view_list_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adolfAn/FBReader_AS/HEAD/code/src/main/res/drawable-xhdpi/afc_button_folders_view_list_pressed.png -------------------------------------------------------------------------------- /fBReader/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | FBReader 4 | 5 | 6 | -------------------------------------------------------------------------------- /fBReader/src/main/res/xml/searchable.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /ambilWarna/src/main/res/values-land/dimen.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 240dp 4 | 120dp 5 | -------------------------------------------------------------------------------- /fBReader/src/main/aidl/org/geometerplus/android/fbreader/api/ApiObject.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * This code is in the public domain. 3 | */ 4 | 5 | package org.geometerplus.android.fbreader.api; 6 | 7 | parcelable ApiObject; 8 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/bcb5/elements.bpf: -------------------------------------------------------------------------------- 1 | USEUNIT("..\examples\elements.c"); 2 | USELIB("Release\libexpats_mtd.lib"); 3 | //--------------------------------------------------------------------------- 4 | main 5 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/bcb5/outline.bpf: -------------------------------------------------------------------------------- 1 | USEUNIT("..\examples\outline.c"); 2 | USELIB("Release\libexpat_mtd.lib"); 3 | //--------------------------------------------------------------------------- 4 | main 5 | -------------------------------------------------------------------------------- /superToasts/src/main/res/values-v19/dimen.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 24dp 6 | 7 | -------------------------------------------------------------------------------- /fBReader/src/main/aidl/org/geometerplus/android/fbreader/api/TextPosition.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * This code is in the public domain. 3 | */ 4 | 5 | package org.geometerplus.android.fbreader.api; 6 | 7 | parcelable TextPosition; 8 | -------------------------------------------------------------------------------- /ambilWarna/src/main/res/values-xlarge-land/dimen.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 240dp 4 | 240dp 5 | -------------------------------------------------------------------------------- /fBReader/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #444444 4 | #222222 5 | 6 | -------------------------------------------------------------------------------- /fBReader/src/main/assets/default/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/panel.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/bcb5/expat_static.bpf: -------------------------------------------------------------------------------- 1 | USEUNIT("..\lib\xmlparse.c"); 2 | USEUNIT("..\lib\xmlrole.c"); 3 | USEUNIT("..\lib\xmltok.c"); 4 | //--------------------------------------------------------------------------- 5 | #define Library 6 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/bcb5/expatw_static.bpf: -------------------------------------------------------------------------------- 1 | USEUNIT("..\lib\xmlparse.c"); 2 | USEUNIT("..\lib\xmlrole.c"); 3 | USEUNIT("..\lib\xmltok.c"); 4 | //--------------------------------------------------------------------------- 5 | #define Library 6 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/shape_undobarselected.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/tests/runtestspp.cpp: -------------------------------------------------------------------------------- 1 | // C++ compilation harness for the test suite. 2 | // 3 | // This is used to ensure the Expat headers can be included from C++ 4 | // and have everything work as expected. 5 | // 6 | #include "runtests.c" 7 | -------------------------------------------------------------------------------- /fBReader/src/main/aidl/org/geometerplus/android/fbreader/libraryService/PositionWithTimestamp.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * This code is in the public domain. 3 | */ 4 | 5 | package org.geometerplus.android.fbreader.libraryService; 6 | 7 | parcelable PositionWithTimestamp; 8 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/LineBreak/liblinebreak-2.0/linebreakdata2.tmpl: -------------------------------------------------------------------------------- 1 | */ 2 | 3 | #include "linebreak.h" 4 | #include "linebreakdef.h" 5 | 6 | /** Default line breaking properties as from the Unicode Web site. */ 7 | struct LineBreakProperties lb_prop_default[] = { 8 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/xmlwf/codepage.h: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd 2 | See the file COPYING for copying permission. 3 | */ 4 | 5 | int codepageMap(int cp, int *map); 6 | int codepageConvert(int cp, const char *p); 7 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/shape_kitkat_square_undobarselected.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/bcb5/expat.bpf: -------------------------------------------------------------------------------- 1 | USEUNIT("..\lib\xmlparse.c"); 2 | USEUNIT("..\lib\xmlrole.c"); 3 | USEUNIT("..\lib\xmltok.c"); 4 | USEDEF("libexpat_mtd.def"); 5 | //--------------------------------------------------------------------------- 6 | #define DllEntryPoint 7 | -------------------------------------------------------------------------------- /fBReader/src/main/java/org/amse/ys/zip/ZipException.java: -------------------------------------------------------------------------------- 1 | package org.amse.ys.zip; 2 | 3 | import java.io.IOException; 4 | 5 | @SuppressWarnings("serial") 6 | public class ZipException extends IOException { 7 | ZipException(String message) { 8 | super(message); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/bcb5/expatw.bpf: -------------------------------------------------------------------------------- 1 | USEUNIT("..\lib\xmlparse.c"); 2 | USEUNIT("..\lib\xmlrole.c"); 3 | USEUNIT("..\lib\xmltok.c"); 4 | USEDEF("libexpatw_mtd.def"); 5 | //--------------------------------------------------------------------------- 6 | #define DllEntryPoint 7 | -------------------------------------------------------------------------------- /fBReader/src/main/assets/default/keymap-nook.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /superToasts/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #000000 4 | #FFFFFF 5 | #333333 6 | #AFFFFFFF 7 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/bcb5/xmlwf.bpf: -------------------------------------------------------------------------------- 1 | USEUNIT("..\xmlwf\codepage.c"); 2 | USEUNIT("..\xmlwf\win32filemap.c"); 3 | USEUNIT("..\xmlwf\xmlfile.c"); 4 | USEUNIT("..\xmlwf\xmlwf.c"); 5 | USELIB("Release\libexpat_mtd.lib"); 6 | //--------------------------------------------------------------------------- 7 | main 8 | -------------------------------------------------------------------------------- /ambilWarna/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ambilWarna/src/main/res/values/dimen.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 240dp 4 | 240dp 5 | 30dp 6 | 8dp 7 | 8 | -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/popup_close.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/popup_share.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/background_kitkat_blue.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/background_kitkat_gray.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/background_kitkat_red.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Jun 03 15:05:53 CST 2020 2 | Android.useDeprecatedNdk=true 3 | distributionBase=GRADLE_USER_HOME 4 | distributionPath=wrapper/dists 5 | zipStoreBase=GRADLE_USER_HOME 6 | zipStorePath=wrapper/dists 7 | distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip 8 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/background_kitkat_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/background_kitkat_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/background_kitkat_orange.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/background_kitkat_purple.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/background_kitkat_white.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 10 | 11 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/xmlwf/xmlurl.h: -------------------------------------------------------------------------------- 1 | #ifdef __cplusplus 2 | extern "C" { 3 | #endif 4 | 5 | int XML_URLInit(); 6 | void XML_URLUninit(); 7 | int XML_ProcessURL(XML_Parser parser, 8 | const XML_Char *url, 9 | unsigned flags); 10 | 11 | #ifdef __cplusplus 12 | } 13 | #endif 14 | -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/popup_copy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/popup_translate.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/LineBreak/liblinebreak-2.0/AUTHORS: -------------------------------------------------------------------------------- 1 | Wu Yongwei. Designed and implemented liblinebreak. 2 | 3 | Nikolay Pultsin. Put forward the original requirements on liblinebreak, 4 | performed tests, and made a lot of suggestions on the initial versions. 5 | 6 | Thomas Klausner. Autoconfiscated and libtoolized liblinebreak. 7 | -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/popup_close_large.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /fBReader/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/LineBreak/liblinebreak-2.0/configure.ac: -------------------------------------------------------------------------------- 1 | AC_PREREQ(2.57) 2 | AC_INIT([liblinebreak],[2.0],[wuyongwei@gmail.com]) 3 | AC_CONFIG_SRCDIR([linebreak.c]) 4 | AC_CONFIG_HEADERS([config.h]) 5 | AM_INIT_AUTOMAKE([foreign]) 6 | 7 | AC_PROG_CC 8 | AC_EXEEXT 9 | AM_PROG_LIBTOOL 10 | AC_CONFIG_FILES([Makefile]) 11 | AC_OUTPUT 12 | -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/popup_bookmark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /code/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | #33B5E5 12 | 13 | 14 | -------------------------------------------------------------------------------- /superToasts/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /fBReader/src/main/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /superToasts/src/main/res/values/dimen.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 64dp 6 | 24dp 7 | 12dp 8 | 4dp 9 | 10 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/shape_undobarfocused.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /fBReader/src/main/java/org/geometerplus/android/fbreader/api/ApiListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This code is in the public domain. 3 | */ 4 | 5 | package org.geometerplus.android.fbreader.api; 6 | 7 | public interface ApiListener { 8 | String EVENT_READ_MODE_OPENED = "startReading"; 9 | String EVENT_READ_MODE_CLOSED = "stopReading"; 10 | 11 | void onEvent(int event); 12 | } 13 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/shape_kitkat_undobarselected.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /code/src/main/res/layout/afc_button_location.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 11 | 12 | -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/link.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/shape_kitkat_square_undobarfocused.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/popup_back.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/popup_forward.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /code/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | 3 | android { 4 | compileSdkVersion 22 5 | buildToolsVersion '26.0.2' 6 | 7 | defaultConfig { 8 | minSdkVersion 8 9 | targetSdkVersion 19 10 | } 11 | 12 | buildTypes { 13 | release { 14 | minifyEnabled false 15 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /ambilWarna/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | 3 | android { 4 | compileSdkVersion 22 5 | buildToolsVersion '26.0.2' 6 | 7 | defaultConfig { 8 | minSdkVersion 8 9 | targetSdkVersion 19 10 | } 11 | 12 | buildTypes { 13 | release { 14 | minifyEnabled false 15 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /superToasts/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | 3 | android { 4 | compileSdkVersion 22 5 | buildToolsVersion '26.0.2' 6 | 7 | defaultConfig { 8 | minSdkVersion 8 9 | targetSdkVersion 19 10 | } 11 | 12 | buildTypes { 13 | release { 14 | minifyEnabled false 15 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /code/src/main/res/values-hdpi/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 48px 12 | 48px 13 | 72px 14 | 15 | -------------------------------------------------------------------------------- /code/src/main/res/values-mdpi/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 32px 12 | 32px 13 | 48px 14 | 15 | -------------------------------------------------------------------------------- /code/src/main/res/values-xhdpi/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 72px 12 | 72px 13 | 96px 14 | 15 | -------------------------------------------------------------------------------- /fBReader/src/main/res/layout/animation_speed_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 13 | 14 | -------------------------------------------------------------------------------- /code/src/main/res/layout/afc_listview_files.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /code/src/main/res/values-ldpi/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 24px 12 | 24px 13 | 36px 14 | 15 | -------------------------------------------------------------------------------- /fBReader/src/main/java/org/geometerplus/android/fbreader/api/ApiException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * This code is in the public domain. 3 | */ 4 | 5 | package org.geometerplus.android.fbreader.api; 6 | 7 | public class ApiException extends Exception { 8 | private static final long serialVersionUID = -6316637693779831867L; 9 | 10 | ApiException(String message) { 11 | super(message); 12 | } 13 | 14 | ApiException(Exception parent) { 15 | super(parent); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /fBReader/src/main/aidl/org/geometerplus/android/fbreader/api/ApiInterface.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | * This code is in the public domain. 3 | */ 4 | 5 | package org.geometerplus.android.fbreader.api; 6 | 7 | import org.geometerplus.android.fbreader.api.ApiObject; 8 | 9 | interface ApiInterface { 10 | ApiObject request(int method, in ApiObject[] parameters); 11 | List requestList(int method, in ApiObject[] parameters); 12 | Map requestMap(int method, in ApiObject[] parameters); 13 | } 14 | -------------------------------------------------------------------------------- /fBReader/src/main/assets/default/tapzones/down.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /fBReader/src/main/assets/default/tapzones/up.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/shape_kitkat_undobarfocused.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 11 | 12 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /ambilWarna/src/main/res/layout/ambilwarna_pref_widget.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | -------------------------------------------------------------------------------- /fBReader/src/main/assets/default/tapzones/left_to_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /fBReader/src/main/res/layout/lr_action_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | -------------------------------------------------------------------------------- /code/src/main/res/layout/afc_gridview_files.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /code/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 13 | 14 | 16 | 17 | -------------------------------------------------------------------------------- /code/src/main/res/drawable/afc_item_file.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /code/src/main/res/drawable/afc_item_folder.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /fBReader/src/main/res/drawable/dropdown.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /fBReader/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 8 | #00000000 9 | 12 | 13 | -------------------------------------------------------------------------------- /code/src/main/res/layout/afc_context_menu_tiem.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.library' 2 | 3 | android { 4 | compileSdkVersion 22 5 | buildToolsVersion '26.0.2' 6 | 7 | defaultConfig { 8 | minSdkVersion 8 9 | targetSdkVersion 19 10 | } 11 | 12 | buildTypes { 13 | release { 14 | minifyEnabled false 15 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 16 | } 17 | } 18 | } 19 | 20 | dependencies { 21 | compile 'com.android.support:support-v4:18.0.0' 22 | } 23 | -------------------------------------------------------------------------------- /code/src/main/res/drawable/afc_selector_button_ok_saveas.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /fBReader/src/main/assets/default/keymap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | *obj/ 15 | 16 | # Local configuration file (sdk path, etc) 17 | local.properties 18 | 19 | # OSX files 20 | .DS_Store 21 | 22 | # Android Studio 23 | *.iml 24 | .idea 25 | 26 | # Gradle files 27 | .gradle/ 28 | build/ 29 | 30 | 31 | # Local configuration file (sdk path, etc) 32 | local.properties 33 | 34 | # Proguard folder generated by Eclipse 35 | proguard/ 36 | 37 | # Log Files 38 | *.log -------------------------------------------------------------------------------- /fBReader/src/main/assets/hyphenationPatterns/LICENSES: -------------------------------------------------------------------------------- 1 | All the pattern files in this archive were created from TeX hyphenation patterns. Original file name is pointed in comments inside a pattern file. 2 | 3 | This file contains a list of licences for original files. 4 | 5 | GNU General Public License: 6 | cs, id, hu 7 | GNU Lesser General Public License: 8 | it 9 | LaTeX Project Public License: 10 | de, de-traditional, el, eo, es, pl, pt, ru, sv, uk, nl 11 | Public Domain (with some restrictions, see corresponding pattern file for details): 12 | en, fr, fi, no 13 | Unknown: 14 | lt, tr 15 | -------------------------------------------------------------------------------- /superToasts/src/main/res/layout/dummy_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /fBReader/src/main/assets/resources/application/neutral.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /fBReader/src/main/assets/default/plugins.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/xmlwf/filemap.h: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd 2 | See the file COPYING for copying permission. 3 | */ 4 | 5 | #include 6 | 7 | #ifdef XML_UNICODE 8 | int filemap(const wchar_t *name, 9 | void (*processor)(const void *, size_t, 10 | const wchar_t *, void *arg), 11 | void *arg); 12 | #else 13 | int filemap(const char *name, 14 | void (*processor)(const void *, size_t, 15 | const char *, void *arg), 16 | void *arg); 17 | #endif 18 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/xmlwf/xmlmime.h: -------------------------------------------------------------------------------- 1 | #ifdef __cplusplus 2 | extern "C" { 3 | #endif 4 | 5 | /* Registered charset names are at most 40 characters long. */ 6 | 7 | #define CHARSET_MAX 41 8 | 9 | /* Figure out the charset to use from the ContentType. 10 | buf contains the body of the header field (the part after "Content-Type:"). 11 | charset gets the charset to use. It must be at least CHARSET_MAX chars 12 | long. charset will be empty if the default charset should be used. 13 | */ 14 | 15 | void getXMLCharset(const char *buf, char *charset); 16 | 17 | #ifdef __cplusplus 18 | } 19 | #endif 20 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/bcb5/setup.bat: -------------------------------------------------------------------------------- 1 | REM CommandInterpreter: $(COMSPEC) 2 | if not exist .\release\nul mkdir release 3 | if not exist .\release\obj\nul mkdir release\obj 4 | if not exist .\release\obj\libexpat\nul mkdir release\obj\libexpat 5 | if not exist .\release\obj\libexpatw\nul mkdir release\obj\libexpatw 6 | if not exist .\release\obj\libexpat_static\nul mkdir release\obj\libexpat_static 7 | if not exist .\release\obj\libexpatw_static\nul mkdir release\obj\libexpatw_static 8 | if not exist .\release\obj\examples\nul mkdir release\obj\examples 9 | if not exist .\release\obj\xmlwf\nul mkdir release\obj\xmlwf 10 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/selector_kitkat_undobutton.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 9 | 10 | 13 | 14 | 16 | 17 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/selector_undobutton.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 9 | 10 | 13 | 14 | 16 | 17 | -------------------------------------------------------------------------------- /fBReader/src/main/assets/default/tapzones/right_to_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/xmlwf/xmlfile.h: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 1998, 1999 Thai Open Source Software Center Ltd 2 | See the file COPYING for copying permission. 3 | */ 4 | 5 | #define XML_MAP_FILE 01 6 | #define XML_EXTERNAL_ENTITIES 02 7 | 8 | #ifdef XML_LARGE_SIZE 9 | #if defined(XML_USE_MSC_EXTENSIONS) && _MSC_VER < 1400 10 | #define XML_FMT_INT_MOD "I64" 11 | #else 12 | #define XML_FMT_INT_MOD "ll" 13 | #endif 14 | #else 15 | #define XML_FMT_INT_MOD "l" 16 | #endif 17 | 18 | extern int XML_ProcessFile(XML_Parser parser, 19 | const XML_Char *filename, 20 | unsigned flags); 21 | -------------------------------------------------------------------------------- /fBReader/src/main/java/org/geometerplus/zlibrary/core/util/BitmapUtil.java: -------------------------------------------------------------------------------- 1 | package org.geometerplus.zlibrary.core.util; 2 | 3 | import android.graphics.Bitmap; 4 | 5 | public abstract class BitmapUtil { 6 | public static Bitmap createBitmap(int width, int height, Bitmap.Config c) { 7 | try { 8 | return Bitmap.createBitmap(width, height, c); 9 | } catch (OutOfMemoryError e) { 10 | System.gc(); 11 | System.gc(); 12 | return Bitmap.createBitmap(width, height, c); 13 | } 14 | } 15 | 16 | public static Bitmap createBitmap(int width, int height) { 17 | return createBitmap(width, height, Bitmap.Config.RGB_565); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/selector_kitkat_square_undobutton.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 9 | 10 | 13 | 14 | 16 | 17 | -------------------------------------------------------------------------------- /fBReader/src/main/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 17 | 18 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/tests/benchmark/README.txt: -------------------------------------------------------------------------------- 1 | Use this benchmark command line utility as follows: 2 | 3 | benchmark [-n] <# iterations> 4 | 5 | The command line arguments are: 6 | 7 | -n ... optional; if supplied, namespace processing is turned on 8 | ... name/path of test xml file 9 | ... size of processing buffer; 10 | the file is parsed in chunks of this size 11 | <# iterations> ... how often will the file be parsed 12 | 13 | Returns: 14 | 15 | The time (in seconds) it takes to parse the test file, 16 | averaged over the number of iterations. -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/tests/README.txt: -------------------------------------------------------------------------------- 1 | This directory contains the (fledgling) test suite for Expat. The 2 | tests provide general unit testing and regression coverage. The tests 3 | are not expected to be useful examples of Expat usage; see the 4 | examples/ directory for that. 5 | 6 | The Expat tests use a partial internal implementation of the "Check" 7 | unit testing framework for C. More information on Check can be found at: 8 | 9 | http://check.sourceforge.net/ 10 | 11 | Expat must be built and installed before "make check" can be executed. 12 | 13 | Since both Check and this test suite are young, it can all change in a 14 | later version. 15 | -------------------------------------------------------------------------------- /code/src/main/res/drawable/afc_selector_button_navi_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /code/src/main/res/drawable/afc_selector_button_sort_as.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /code/src/main/res/drawable/afc_selector_button_sort_de.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /code/src/main/res/drawable/afc_selector_button_location_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /code/src/main/res/drawable/afc_selector_button_navi_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /fBReader/src/main/assets/hyphenationPatterns/CHANGES: -------------------------------------------------------------------------------- 1 | All the files *.pattern were produced from the original TeX files. All changes 2 | are the notation changes: 3 | * we use XML notation (file format is obvious form any sample) 4 | * '.' in patterns is replaced by ' ' 5 | * all accented characters were written as &xxx; entities, instead of TeX 6 | notation 7 | * all exceptions (\hyphenation{xxx-xx-xx} in TeX notation) were replaced 8 | with the patterns with weights 7 and 8 9 | 10 | Czech hyphenation pattern is excluded for the closed-source version of FBReader, 11 | because the original TeX file is licensed under the GNU GPL. 12 | 13 | -- Nikolay Pultsin (geometer@fbreader.org) 14 | -------------------------------------------------------------------------------- /code/src/main/java/group/pals/android/lib/ui/filechooser/utils/history/HistoryListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2012 Hai Bison 3 | * 4 | * See the file LICENSE at the root directory of this project for copying 5 | * permission. 6 | */ 7 | 8 | package group.pals.android.lib.ui.filechooser.utils.history; 9 | 10 | /** 11 | * Listener of {@link History} 12 | * 13 | * @author Hai Bison 14 | * @since v4.0 beta 15 | */ 16 | public interface HistoryListener { 17 | 18 | /** 19 | * Will be called after the history changed. 20 | * 21 | * @param history 22 | * {@link History} 23 | */ 24 | void onChanged(History history); 25 | } 26 | -------------------------------------------------------------------------------- /code/src/main/res/drawable/afc_selector_button_create_folder.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /code/src/main/java/group/pals/android/lib/ui/filechooser/utils/history/HistoryFilter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2012 Hai Bison 3 | * 4 | * See the file LICENSE at the root directory of this project for copying 5 | * permission. 6 | */ 7 | 8 | package group.pals.android.lib.ui.filechooser.utils.history; 9 | 10 | /** 11 | * Filter of {@link History} 12 | * 13 | * @author Hai Bison 14 | * @since v4.0 beta 15 | */ 16 | public interface HistoryFilter { 17 | 18 | /** 19 | * Filters item. 20 | * 21 | * @param item 22 | * {@link A} 23 | * @return {@code true} if the {@code item} is accepted 24 | */ 25 | boolean accept(A item); 26 | } 27 | -------------------------------------------------------------------------------- /code/src/main/res/drawable/afc_selector_button_folders_view_grid.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /code/src/main/res/drawable/afc_selector_button_folders_view_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/vms/README.vms: -------------------------------------------------------------------------------- 1 | 4-jun-2002 Craig A. Berry 2 | Added rudimentary build procedures for 3 | OpenVMS based on work by Martin Vorlaender. 4 | 5 | 6 | You'll need MMS or its freeware equivalent MMK. Just go to the 7 | top-level directory and type 8 | 9 | $ MMS/DESCRIPTION=[.vms] 10 | 11 | or 12 | 13 | $ MMK/DESCRIPTION=[.vms] 14 | 15 | You'll end up with the object library expat.olb. For now, installation 16 | consists merely of copying the object library, include files, and 17 | documentation to a suitable location. 18 | 19 | To-do list: 20 | 21 | -- create a shareable image 22 | -- build and run the tests and build the xmlwf utility 23 | -- create an install target 24 | -------------------------------------------------------------------------------- /fBReader/src/main/jni/expat-2.0.1/bcb5/makefile.mak: -------------------------------------------------------------------------------- 1 | all: setup expat expatw expat_static expatw_static elements outline xmlwf 2 | 3 | setup: 4 | setup 5 | 6 | expat: 7 | make -l -fexpat.mak 8 | 9 | expatw: 10 | make -l -fexpatw.mak 11 | 12 | expat_static: 13 | make -l -fexpat_static.mak 14 | 15 | expatw_static: 16 | make -l -fexpatw_static.mak 17 | 18 | elements: 19 | make -l -felements.mak 20 | 21 | outline: 22 | make -l -foutline.mak 23 | 24 | xmlwf: 25 | make -l -fxmlwf.mak 26 | 27 | clean: 28 | # works on Win98/ME 29 | # deltree /y release\obj 30 | # works on WinNT/2000 31 | del /s/f/q release\obj 32 | 33 | distclean: 34 | # works on Win98/ME 35 | # deltree /y release\*.* 36 | # works on WinNT/2000 37 | del /s/f/q release\* 38 | -------------------------------------------------------------------------------- /code/src/main/res/layout/afc_context_menu_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 13 | 14 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /superToasts/src/main/res/layout/supertoast.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 17 | 18 | -------------------------------------------------------------------------------- /fBReader/src/main/res/layout/catalog_manager_section_head.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 20 | 21 | -------------------------------------------------------------------------------- /fBReader/src/main/res/layout/catalog_manager_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/background_standard_blue.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/background_standard_gray.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /superToasts/src/main/res/drawable/background_standard_red.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 10 | 11 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | --------------------------------------------------------------------------------