├── .gitattributes ├── .gitignore ├── App ├── AndroidManifest.xml ├── assets │ ├── certs │ │ └── server.crt │ └── fonts │ │ ├── OpenSansBold.ttf │ │ ├── OpenSansExtraBold.ttf │ │ ├── OpenSansItalic.ttf │ │ ├── OpenSansRegular.ttf │ │ ├── ProximaNovaBold.ttf │ │ ├── ProximaNovaExtrabold.ttf │ │ ├── ProximaNovaLight.ttf │ │ └── ProximaNovaRegular.ttf ├── build.gradle ├── default.properties ├── libs │ └── libGoogleAnalyticsServices.jar ├── proguard.cfg ├── project.properties ├── res │ ├── anim │ │ ├── fade_in.xml │ │ ├── rotate_clockwise.xml │ │ ├── rotate_counterclockwise.xml │ │ ├── slide_down.xml │ │ ├── slide_in_bottom.xml │ │ ├── slide_in_left.xml │ │ ├── slide_in_right.xml │ │ ├── slide_in_right_delay.xml │ │ ├── slide_out_bottom.xml │ │ ├── slide_out_bottom_slow.xml │ │ ├── slide_out_left.xml │ │ ├── slide_out_left_delay.xml │ │ ├── slide_out_right.xml │ │ └── slide_up.xml │ ├── drawable-hdpi │ │ ├── add_photos.png │ │ ├── fist_default.png │ │ ├── ic_action_book.png │ │ ├── ic_add_list_item.png │ │ ├── ic_btn_add_bullet.png │ │ ├── ic_btn_add_gallery_image.png │ │ ├── ic_btn_add_gallery_media.png │ │ ├── ic_btn_sign_in_yahoo.png │ │ ├── ic_dialog_arrange_bullets_light.png │ │ ├── ic_dialog_bullet_caution.png │ │ ├── ic_dialog_bullet_note_dark.png │ │ ├── ic_dialog_bullet_note_light.png │ │ ├── ic_dialog_bullet_reminder_dark.png │ │ ├── ic_dialog_bullet_reminder_light.png │ │ ├── ic_dialog_indent.png │ │ ├── ic_dialog_unindent.png │ │ ├── ic_drawer.png │ │ ├── ic_guide_delete.png │ │ ├── ic_guide_edit.png │ │ ├── ic_guide_expand.png │ │ ├── ic_list_item_move.png │ │ ├── ic_list_item_publish.png │ │ ├── ic_list_item_unpublish.png │ │ ├── ic_menu_add.png │ │ ├── ic_menu_add_guide.png │ │ ├── ic_menu_add_media.png │ │ ├── ic_menu_bot_more.png │ │ ├── ic_menu_bot_step_add.png │ │ ├── ic_menu_bot_step_delete.png │ │ ├── ic_menu_bot_steplist.png │ │ ├── ic_menu_favorite_light.png │ │ ├── ic_menu_moreoverflow_normal_holo_light.png │ │ ├── ic_menu_spinner.png │ │ ├── ic_menu_spinner_browse.png │ │ ├── ic_menu_spinner_favorites.png │ │ ├── ic_menu_spinner_gallery.png │ │ ├── ic_menu_spinner_guides.png │ │ ├── ic_menu_spinner_help.png │ │ ├── ic_menu_stack.png │ │ ├── ic_menu_video.png │ │ ├── ic_placeholder_feature_img.png │ │ ├── ic_placeholder_img_thumbnail.png │ │ ├── ic_play_focus.png │ │ ├── ic_play_normal.png │ │ ├── ic_play_pressed.png │ │ ├── ic_spinner_browse.png │ │ ├── icon_caution.png │ │ ├── icon_note.png │ │ ├── icon_reminder.png │ │ ├── logo_dozuki.png │ │ ├── logo_ifixit.png │ │ └── x_icon.png │ ├── drawable-land │ │ └── step_media_background.xml │ ├── drawable-mdpi │ │ ├── add_photos.png │ │ ├── fist_default.png │ │ ├── ic_action_book.png │ │ ├── ic_add_list_item.png │ │ ├── ic_btn_add_bullet.png │ │ ├── ic_btn_add_gallery_image.png │ │ ├── ic_btn_add_gallery_media.png │ │ ├── ic_btn_sign_in_yahoo.png │ │ ├── ic_dialog_arrange_bullets_light.png │ │ ├── ic_dialog_bullet_caution.png │ │ ├── ic_dialog_bullet_note_dark.png │ │ ├── ic_dialog_bullet_note_light.png │ │ ├── ic_dialog_bullet_reminder_dark.png │ │ ├── ic_dialog_bullet_reminder_light.png │ │ ├── ic_dialog_indent.png │ │ ├── ic_dialog_unindent.png │ │ ├── ic_drawer.png │ │ ├── ic_guide_delete.png │ │ ├── ic_guide_edit.png │ │ ├── ic_guide_expand.png │ │ ├── ic_list_item_move.png │ │ ├── ic_list_item_publish.png │ │ ├── ic_list_item_unpublish.png │ │ ├── ic_menu_add.png │ │ ├── ic_menu_add_guide.png │ │ ├── ic_menu_add_media.png │ │ ├── ic_menu_bot_more.png │ │ ├── ic_menu_bot_step_add.png │ │ ├── ic_menu_bot_step_delete.png │ │ ├── ic_menu_bot_steplist.png │ │ ├── ic_menu_favorite_light.png │ │ ├── ic_menu_moreoverflow_normal_holo_light.png │ │ ├── ic_menu_spinner.png │ │ ├── ic_menu_spinner_browse.png │ │ ├── ic_menu_spinner_favorites.png │ │ ├── ic_menu_spinner_gallery.png │ │ ├── ic_menu_spinner_guides.png │ │ ├── ic_menu_spinner_help.png │ │ ├── ic_menu_stack.png │ │ ├── ic_menu_video.png │ │ ├── ic_placeholder_feature_img.png │ │ ├── ic_placeholder_img_thumbnail.png │ │ ├── ic_play_focus.png │ │ ├── ic_play_normal.png │ │ ├── ic_play_pressed.png │ │ ├── ic_spinner_browse.png │ │ ├── icon_caution.png │ │ ├── icon_note.png │ │ ├── icon_reminder.png │ │ ├── logo_dozuki.png │ │ ├── logo_ifixit.png │ │ └── x_icon.png │ ├── drawable-v21 │ │ ├── card_foreground.xml │ │ ├── card_item_touch_selector.xml │ │ └── sync_box_touch_selector.xml │ ├── drawable-xhdpi │ │ ├── add_photos.png │ │ ├── fist_default.png │ │ ├── ic_action_book.png │ │ ├── ic_add_list_item.png │ │ ├── ic_btn_add_bullet.png │ │ ├── ic_btn_add_gallery_image.png │ │ ├── ic_btn_add_gallery_media.png │ │ ├── ic_btn_sign_in_yahoo.png │ │ ├── ic_dialog_arrange_bullets_light.png │ │ ├── ic_dialog_bullet_caution.png │ │ ├── ic_dialog_bullet_note_dark.png │ │ ├── ic_dialog_bullet_note_light.png │ │ ├── ic_dialog_bullet_reminder_dark.png │ │ ├── ic_dialog_bullet_reminder_light.png │ │ ├── ic_dialog_indent.png │ │ ├── ic_dialog_unindent.png │ │ ├── ic_drawer.png │ │ ├── ic_guide_delete.png │ │ ├── ic_guide_edit.png │ │ ├── ic_guide_expand.png │ │ ├── ic_list_item_move.png │ │ ├── ic_list_item_publish.png │ │ ├── ic_list_item_unpublish.png │ │ ├── ic_menu_add.png │ │ ├── ic_menu_add_guide.png │ │ ├── ic_menu_add_media.png │ │ ├── ic_menu_bot_more.png │ │ ├── ic_menu_bot_step_add.png │ │ ├── ic_menu_bot_step_delete.png │ │ ├── ic_menu_bot_steplist.png │ │ ├── ic_menu_favorite_light.png │ │ ├── ic_menu_moreoverflow_normal_holo_light.png │ │ ├── ic_menu_spinner.png │ │ ├── ic_menu_spinner_browse.png │ │ ├── ic_menu_spinner_favorites.png │ │ ├── ic_menu_spinner_gallery.png │ │ ├── ic_menu_spinner_guides.png │ │ ├── ic_menu_spinner_help.png │ │ ├── ic_menu_stack.png │ │ ├── ic_menu_video.png │ │ ├── ic_placeholder_feature_img.png │ │ ├── ic_placeholder_img_thumbnail.png │ │ ├── ic_play_focus.png │ │ ├── ic_play_normal.png │ │ ├── ic_play_pressed.png │ │ ├── ic_spinner_browse.png │ │ ├── icon_caution.png │ │ ├── icon_note.png │ │ ├── icon_reminder.png │ │ ├── logo_dozuki.png │ │ ├── logo_ifixit.png │ │ └── x_icon.png │ ├── drawable-xxhdpi │ │ └── ic_action_qr_code.png │ ├── drawable │ │ ├── background_toolbar_translucent.xml │ │ ├── bullet_black.xml │ │ ├── bullet_blue.xml │ │ ├── bullet_green.xml │ │ ├── bullet_light_blue.xml │ │ ├── bullet_orange.xml │ │ ├── bullet_red.xml │ │ ├── bullet_violet.xml │ │ ├── bullet_yellow.xml │ │ ├── card_foreground.xml │ │ ├── card_item_touch_selector.xml │ │ ├── default_user.png │ │ ├── frame_gallery_thumb_selected.9.png │ │ ├── ic_add_24dp.xml │ │ ├── ic_add_a_photo_24dp.xml │ │ ├── ic_add_a_photo_black_24dp.xml │ │ ├── ic_add_a_photo_white_24dp.xml │ │ ├── ic_add_black_24dp.xml │ │ ├── ic_add_white_24dp.xml │ │ ├── ic_arrow_back_24dp.xml │ │ ├── ic_arrow_back_black_24dp.xml │ │ ├── ic_arrow_back_white_24dp.xml │ │ ├── ic_barcode_black.xml │ │ ├── ic_barcode_white.xml │ │ ├── ic_close_24dp.xml │ │ ├── ic_collections_black_24dp.xml │ │ ├── ic_comment_large.xml │ │ ├── ic_create_24dp.xml │ │ ├── ic_create_black_24dp.xml │ │ ├── ic_delete_24dp.xml │ │ ├── ic_delete_black_24dp.xml │ │ ├── ic_device_large.xml │ │ ├── ic_exit_to_app_black_24dp.xml │ │ ├── ic_exit_to_app_white_24dp.xml │ │ ├── ic_facebook.xml │ │ ├── ic_favorite_24dp.xml │ │ ├── ic_favorite_border_24dp.xml │ │ ├── ic_favorite_red_24dp.xml │ │ ├── ic_guide_large.xml │ │ ├── ic_link_black_24dp.xml │ │ ├── ic_list_black_24dp.xml │ │ ├── ic_lock_black_24dp.xml │ │ ├── ic_logo_header.xml │ │ ├── ic_mic_black_24dp.xml │ │ ├── ic_mode_edit_24dp.xml │ │ ├── ic_mode_edit_black_24dp.xml │ │ ├── ic_more_vert_black_24dp.xml │ │ ├── ic_pageview_24dp.xml │ │ ├── ic_photo_library_24dp.xml │ │ ├── ic_photo_library_black_24dp.xml │ │ ├── ic_publish_black_24dp.xml │ │ ├── ic_question_answer_black_24dp.xml │ │ ├── ic_refresh_24dp.xml │ │ ├── ic_reorder_24dp.xml │ │ ├── ic_reorder_black_24dp.xml │ │ ├── ic_reorder_white_24dp.xml │ │ ├── ic_save_24dp.xml │ │ ├── ic_search_24dp.xml │ │ ├── ic_search_black_24dp.xml │ │ ├── ic_send_black_24dp.xml │ │ ├── ic_shopping_basket_24dp.xml │ │ ├── ic_shopping_basket_black_24dp.xml │ │ ├── ic_stars_black_24dp.xml │ │ ├── ic_teardown_large.xml │ │ ├── ic_twitter.xml │ │ ├── ic_undo_24dp.xml │ │ ├── ic_undo_black_24dp.xml │ │ ├── ic_youtube.xml │ │ ├── image_background.xml │ │ ├── image_background_circle.xml │ │ ├── left_border_bg.xml │ │ ├── no_image.jpg │ │ ├── right_border_bg.xml │ │ ├── rounded_button_background.xml │ │ ├── rounded_button_background_default.xml │ │ ├── rounded_button_background_disabled.xml │ │ ├── rounded_button_background_pressed.xml │ │ ├── section_header.xml │ │ ├── selectable_item_background.xml │ │ ├── selectable_item_background_transparent.xml │ │ ├── step_media_background.xml │ │ ├── sync_box_touch_selector.xml │ │ ├── top_border_bg.xml │ │ ├── topic_image_gradient.xml │ │ ├── topic_list_background.xml │ │ ├── video_play_button_selector.xml │ │ ├── wizard_finish_background.xml │ │ └── wizard_selectable_item_background.xml │ ├── layout-land │ │ ├── guide_create_step_edit_body.xml │ │ └── guide_step.xml │ ├── layout-large-land │ │ ├── guide_create_step_edit_body.xml │ │ └── topics.xml │ ├── layout-large │ │ ├── no_guides_fragment.xml │ │ ├── topic_info.xml │ │ ├── topic_list_fragment.xml │ │ ├── topic_view_fragment.xml │ │ └── topics.xml │ ├── layout-v14 │ │ └── menu_publish_switch.xml │ ├── layout │ │ ├── action_button_barcode.xml │ │ ├── answers_web_view.xml │ │ ├── base_layout.xml │ │ ├── comment_bubble.xml │ │ ├── comment_row.xml │ │ ├── comments.xml │ │ ├── document_list_item.xml │ │ ├── embed_view.xml │ │ ├── empty_guide_view.xml │ │ ├── full_screen_image.xml │ │ ├── gallery_cell.xml │ │ ├── gallery_root.xml │ │ ├── gallery_view.xml │ │ ├── guide_conclusion.xml │ │ ├── guide_create.xml │ │ ├── guide_create_intro.xml │ │ ├── guide_create_intro_edit_text.xml │ │ ├── guide_create_intro_topic_name.xml │ │ ├── guide_create_item.xml │ │ ├── guide_create_step_edit.xml │ │ ├── guide_create_step_edit_body.xml │ │ ├── guide_create_step_edit_bullet_reorder.xml │ │ ├── guide_create_step_edit_image.xml │ │ ├── guide_create_step_edit_line.xml │ │ ├── guide_create_step_edit_lines.xml │ │ ├── guide_create_step_edit_list_item_reorder.xml │ │ ├── guide_create_step_list_item.xml │ │ ├── guide_create_step_list_item_reorder.xml │ │ ├── guide_create_step_portal_reorder.xml │ │ ├── guide_create_steps_bullet_popup.xml │ │ ├── guide_create_steps_portal.xml │ │ ├── guide_create_steps_root.xml │ │ ├── guide_grid_item.xml │ │ ├── guide_intro.xml │ │ ├── guide_list.xml │ │ ├── guide_main.xml │ │ ├── guide_part_tool_row.xml │ │ ├── guide_parts_tools.xml │ │ ├── guide_recycle_grid.xml │ │ ├── guide_search_result_row.xml │ │ ├── guide_step.xml │ │ ├── guide_step_embed.xml │ │ ├── guide_step_image.xml │ │ ├── guide_step_lines.xml │ │ ├── guide_step_row.xml │ │ ├── guide_step_video.xml │ │ ├── loading_fragment.xml │ │ ├── login_fragment.xml │ │ ├── menu_publish_switch.xml │ │ ├── menu_row_category.xml │ │ ├── menu_row_item.xml │ │ ├── menu_title.xml │ │ ├── navigation_header.xml │ │ ├── navigation_header_logged_in.xml │ │ ├── new_guide_fragment_dialog.xml │ │ ├── no_guides_fragment.xml │ │ ├── offline_guide_item.xml │ │ ├── offline_guides.xml │ │ ├── open_id_view.xml │ │ ├── register_fragment.xml │ │ ├── search.xml │ │ ├── search_row.xml │ │ ├── simple_grid_item.xml │ │ ├── simple_recycle_grid.xml │ │ ├── store_web_view.xml │ │ ├── thumbnail.xml │ │ ├── thumbnail_viewer.xml │ │ ├── toolbar.xml │ │ ├── topic_answers.xml │ │ ├── topic_guide_list.xml │ │ ├── topic_header_row.xml │ │ ├── topic_info.xml │ │ ├── topic_list_fragment.xml │ │ ├── topic_list_row.xml │ │ ├── topic_name_autocomplete_dropdown_item.xml │ │ ├── topic_view.xml │ │ ├── topic_view_fragment.xml │ │ ├── topic_wiki_list.xml │ │ ├── topics.xml │ │ ├── video_view.xml │ │ ├── web_view_fragment.xml │ │ ├── wiki_main.xml │ │ ├── wizard_fragment_page.xml │ │ └── wizard_list_item_review.xml │ ├── menu │ │ ├── comment_item_popup.xml │ │ ├── contextual_delete.xml │ │ ├── contextual_rearrange.xml │ │ ├── drawer_view.xml │ │ ├── gallery_menu.xml │ │ ├── guide_view_menu.xml │ │ ├── offline_guides.xml │ │ ├── search_menu.xml │ │ ├── step_edit_menu.xml │ │ ├── step_item_popup.xml │ │ ├── step_list_menu.xml │ │ └── store_web_view_menu.xml │ ├── values-de │ │ └── strings.xml │ ├── values-es │ │ └── strings.xml │ ├── values-fr │ │ └── strings.xml │ ├── values-it │ │ └── strings.xml │ ├── values-ja │ │ └── strings.xml │ ├── values-ko │ │ └── strings.xml │ ├── values-land │ │ ├── dimens.xml │ │ └── styles.xml │ ├── values-large-land │ │ └── dimens.xml │ ├── values-large │ │ ├── dimens.xml │ │ ├── donottranslate.xml │ │ └── styles.xml │ ├── values-nl │ │ └── strings.xml │ ├── values-pt-rBR │ │ └── strings.xml │ ├── values-pt-rPT │ │ └── strings.xml │ ├── values-ru │ │ └── strings.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-v16 │ │ └── styles.xml │ ├── values-v21 │ │ ├── colors.xml │ │ └── themes.xml │ ├── values-zh-rCN │ │ └── strings.xml │ ├── values │ │ ├── analytics.xml │ │ ├── attrs.xml │ │ ├── base.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── donottranslate.xml │ │ ├── ids.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml │ └── xml │ │ ├── account_preferences.xml │ │ ├── file_paths.xml │ │ └── searchable.xml ├── sites │ ├── accustream │ │ ├── AndroidManifest.xml │ │ ├── res │ │ │ ├── drawable │ │ │ │ ├── accustream__section_header.xml │ │ │ │ └── logo.png │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── styles.xml │ │ │ │ └── themes.xml │ │ └── site-res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── icon.png │ │ │ ├── values │ │ │ └── strings.xml │ │ │ └── xml │ │ │ ├── api_sync_adapter.xml │ │ │ └── authenticator.xml │ ├── aristocrat │ │ ├── AndroidManifest.xml │ │ ├── res │ │ │ ├── drawable │ │ │ │ └── aristocrat_section_header.xml │ │ │ ├── menu │ │ │ │ └── drawer_view.xml │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── styles.xml │ │ │ │ └── themes.xml │ │ └── site-res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── values │ │ │ └── strings.xml │ │ │ └── xml │ │ │ ├── api_sync_adapter.xml │ │ │ └── authenticator.xml │ ├── charlessmith │ │ ├── AndroidManifest.xml │ │ ├── res │ │ │ ├── drawable │ │ │ │ └── charlessmith_section_header.xml │ │ │ ├── menu │ │ │ │ └── drawer_view.xml │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── styles.xml │ │ │ │ └── themes.xml │ │ └── site-res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── icon.png │ │ │ ├── values │ │ │ └── strings.xml │ │ │ └── xml │ │ │ ├── api_sync_adapter.xml │ │ │ └── authenticator.xml │ ├── dozuki │ │ ├── AndroidManifest.xml │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ ├── dozuki_splash_logo.png │ │ │ │ ├── dozuki_workbench.jpg │ │ │ │ ├── ic_notification_icon.png │ │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── dozuki_splash_logo.png │ │ │ │ ├── dozuki_workbench.jpg │ │ │ │ ├── ic_notification_icon.png │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── dozuki_splash_logo.png │ │ │ │ ├── dozuki_workbench.jpg │ │ │ │ ├── ic_notification_icon.png │ │ │ │ └── icon.png │ │ │ ├── drawable │ │ │ │ ├── green__section_header.xml │ │ │ │ ├── grey__section_header.xml │ │ │ │ ├── orange__section_header.xml │ │ │ │ ├── site_button_states.xml │ │ │ │ ├── site_button_states_positioning.xml │ │ │ │ ├── site_list_background.9.png │ │ │ │ ├── site_list_background_pressed.9.png │ │ │ │ └── white__section_header.xml │ │ │ ├── layout │ │ │ │ ├── navigation_header.xml │ │ │ │ ├── site_dialog_list.xml │ │ │ │ ├── site_list.xml │ │ │ │ └── site_row.xml │ │ │ ├── menu │ │ │ │ ├── search_menu.xml │ │ │ │ └── search_menu_white.xml │ │ │ ├── values-de │ │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ │ └── strings.xml │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ └── xml │ │ │ │ ├── api_sync_adapter.xml │ │ │ │ ├── authenticator.xml │ │ │ │ ├── dozuki_searchable.xml │ │ │ │ └── searchable.xml │ │ └── src │ │ │ └── com │ │ │ └── dozuki │ │ │ └── ifixit │ │ │ └── ui │ │ │ └── dozuki │ │ │ ├── SiteListActivity.java │ │ │ ├── SiteListAdapter.java │ │ │ ├── SiteListDialogFragment.java │ │ │ ├── SiteListOffsetButton.java │ │ │ └── SiteRowView.java │ ├── dripassist │ │ ├── AndroidManifest.xml │ │ ├── res │ │ │ ├── drawable │ │ │ │ └── dripassist_section_header.xml │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── styles.xml │ │ │ │ └── themes.xml │ │ └── site-res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── icon.png │ │ │ ├── ic_notification_icon.png │ │ │ ├── values │ │ │ └── strings.xml │ │ │ └── xml │ │ │ ├── api_sync_adapter.xml │ │ │ └── authenticator.xml │ ├── ifixit │ │ ├── AndroidManifest.xml │ │ ├── res │ │ │ ├── drawable │ │ │ │ ├── ic_logo_header.xml │ │ │ │ └── ifixit__section_header.xml │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ └── themes.xml │ │ └── site-res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-large-mdpi │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ │ ├── values │ │ │ └── strings.xml │ │ │ └── xml │ │ │ ├── api_sync_adapter.xml │ │ │ └── authenticator.xml │ ├── oscaro │ │ ├── AndroidManifest.xml │ │ ├── res │ │ │ ├── drawable │ │ │ │ └── oscaro_section_header.xml │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── styles.xml │ │ │ │ └── themes.xml │ │ └── site-res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_notification_icon.png │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── icon.png │ │ │ ├── values │ │ │ └── strings.xml │ │ │ └── xml │ │ │ ├── api_sync_adapter.xml │ │ │ └── authenticator.xml │ └── pva │ │ ├── AndroidManifest.xml │ │ ├── res │ │ ├── drawable │ │ │ └── pva_section_header.xml │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── styles.xml │ │ │ └── themes.xml │ │ └── site-res │ │ ├── drawable-hdpi │ │ ├── ic_notification_icon.png │ │ └── icon.png │ │ ├── drawable-mdpi │ │ ├── ic_notification_icon.png │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ ├── ic_notification_icon.png │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ └── icon.png │ │ ├── drawable-xxxhdpi │ │ └── icon.png │ │ ├── values │ │ └── strings.xml │ │ └── xml │ │ ├── api_sync_adapter.xml │ │ └── authenticator.xml └── src │ ├── android │ └── support │ │ └── v4 │ │ └── app │ │ └── FixedFragmentStatePagerAdapter.java │ └── com │ └── dozuki │ └── ifixit │ ├── App.java │ ├── model │ ├── Badges.java │ ├── Comment.java │ ├── Document.java │ ├── Embed.java │ ├── Flag.java │ ├── Image.java │ ├── Item.java │ ├── Video.java │ ├── VideoEncoding.java │ ├── VideoThumbnail.java │ ├── Wiki.java │ ├── auth │ │ ├── Authenticator.java │ │ └── AuthenticatorService.java │ ├── dozuki │ │ ├── Site.java │ │ └── SiteChangedEvent.java │ ├── gallery │ │ ├── GalleryEmbedList.java │ │ ├── GalleryImage.java │ │ ├── GalleryImageList.java │ │ ├── GalleryMediaList.java │ │ └── GalleryVideoList.java │ ├── guide │ │ ├── Guide.java │ │ ├── GuideInfo.java │ │ ├── GuideStep.java │ │ ├── GuideType.java │ │ ├── OEmbed.java │ │ ├── OnViewGuideListener.java │ │ ├── StepLine.java │ │ └── wizard │ │ │ ├── AbstractWizardModel.java │ │ │ ├── BranchPage.java │ │ │ ├── EditTextPage.java │ │ │ ├── GuideTitlePage.java │ │ │ ├── ModelCallbacks.java │ │ │ ├── MultipleFixedChoicePage.java │ │ │ ├── Page.java │ │ │ ├── PageList.java │ │ │ ├── PageTreeNode.java │ │ │ ├── ReviewItem.java │ │ │ ├── SingleFixedChoicePage.java │ │ │ └── TopicNamePage.java │ ├── search │ │ ├── GuideSearchResult.java │ │ ├── SearchResult.java │ │ ├── SearchResults.java │ │ └── TopicSearchResult.java │ ├── topic │ │ ├── TopicLeaf.java │ │ └── TopicNode.java │ └── user │ │ ├── LoginEvent.java │ │ ├── User.java │ │ └── UserImage.java │ ├── ui │ ├── AnswersWebViewActivity.java │ ├── BaseActivity.java │ ├── BaseDialogFragment.java │ ├── BaseFragment.java │ ├── BaseListFragment.java │ ├── BaseMenuDrawerActivity.java │ ├── BaseSearchMenuDrawerActivity.java │ ├── BaseWebViewClient.java │ ├── DocumentListAdapter.java │ ├── EndlessRecyclerViewScrollListener.java │ ├── EndlessScrollListener.java │ ├── FlingBehavior.java │ ├── GuideListRecyclerAdapter.java │ ├── IntentFilterActivity.java │ ├── LoadingFragment.java │ ├── StoreWebViewActivity.java │ ├── TouchableRelativeLayout.java │ ├── WebViewFragment.java │ ├── WikiListRecyclerAdapter.java │ ├── auth │ │ ├── LoginFragment.java │ │ ├── OpenIDActivity.java │ │ └── RegisterFragment.java │ ├── gallery │ │ ├── EmbedMediaFragment.java │ │ ├── GalleryActivity.java │ │ ├── GalleryFallbackImage.java │ │ ├── MediaFragment.java │ │ ├── MediaViewItem.java │ │ ├── PhotoMediaFragment.java │ │ └── VideoMediaFragment.java │ ├── guide │ │ ├── CommentDeleteEvent.java │ │ ├── CommentEditEvent.java │ │ ├── CommentReplyingEvent.java │ │ ├── CommentView.java │ │ ├── CommentsActivity.java │ │ ├── CommentsAdapter.java │ │ ├── DocumentWebViewFragment.java │ │ ├── FallbackImageView.java │ │ ├── FullScreenImageView.java │ │ ├── StepEmbedFragment.java │ │ ├── StepVideoFragment.java │ │ ├── ThumbnailView.java │ │ ├── create │ │ │ ├── BulletReorderFragment.java │ │ │ ├── ChooseBulletDialog.java │ │ │ ├── ExpandAnimation.java │ │ │ ├── GuideCreateActivity.java │ │ │ ├── GuideCreateRecyclerListAdapter.java │ │ │ ├── GuideDetailsChangedEvent.java │ │ │ ├── GuideIntroActivity.java │ │ │ ├── GuideIntroEditWizardModel.java │ │ │ ├── GuideIntroWizardModel.java │ │ │ ├── GuideListItemHolder.java │ │ │ ├── GuideListItemListener.java │ │ │ ├── LockableTitlePageIndicator.java │ │ │ ├── LockableViewPager.java │ │ │ ├── NewGuideDialogFragment.java │ │ │ ├── OfflineGuideListItem.java │ │ │ ├── StepChangedEvent.java │ │ │ ├── StepEditActivity.java │ │ │ ├── StepEditFragment.java │ │ │ ├── StepEditImageFragment.java │ │ │ ├── StepEditLinesFragment.java │ │ │ ├── StepImageDeleteEvent.java │ │ │ ├── StepLineValidationEvent.java │ │ │ ├── StepLinesChangedEvent.java │ │ │ ├── StepListItem.java │ │ │ ├── StepMicCompleteEvent.java │ │ │ ├── StepPortalFragment.java │ │ │ ├── StepReorderFragment.java │ │ │ ├── StepTitleChangedEvent.java │ │ │ ├── StepsActivity.java │ │ │ └── wizard │ │ │ │ ├── EditTextFragment.java │ │ │ │ ├── GuideTitleFragment.java │ │ │ │ ├── MultipleChoiceFragment.java │ │ │ │ ├── PageFragmentCallbacks.java │ │ │ │ ├── ReviewFragment.java │ │ │ │ ├── SingleChoiceFragment.java │ │ │ │ ├── StepPagerStrip.java │ │ │ │ └── TopicNameFragment.java │ │ └── view │ │ │ ├── EmbedViewActivity.java │ │ │ ├── FeaturedGuidesActivity.java │ │ │ ├── FullImageViewActivity.java │ │ │ ├── GuideConclusionFragment.java │ │ │ ├── GuideIntroViewFragment.java │ │ │ ├── GuideListActivity.java │ │ │ ├── GuidePartsToolsViewFragment.java │ │ │ ├── GuideStepLineView.java │ │ │ ├── GuideStepViewFragment.java │ │ │ ├── GuideViewActivity.java │ │ │ ├── GuideViewAdapter.java │ │ │ ├── NoGuidesFragment.java │ │ │ ├── OfflineGuidesActivity.java │ │ │ ├── PartsToolsAdapter.java │ │ │ ├── StepImageFragment.java │ │ │ ├── StepLinesFragment.java │ │ │ ├── TeardownsActivity.java │ │ │ └── VideoViewActivity.java │ ├── search │ │ ├── SearchActivity.java │ │ ├── SearchListRecyclerAdapter.java │ │ └── SearchSuggestionProvider.java │ ├── topic │ │ ├── TopicActivity.java │ │ ├── TopicGuideListFragment.java │ │ ├── TopicInfoFragment.java │ │ ├── TopicListFragment.java │ │ ├── TopicListHeaderView.java │ │ ├── TopicRelatedWikisFragment.java │ │ ├── TopicSelectedListener.java │ │ ├── TopicViewActivity.java │ │ ├── TopicViewFragment.java │ │ └── adapters │ │ │ ├── TopicListAdapter.java │ │ │ └── TopicPageAdapter.java │ └── wiki │ │ └── WikiViewActivity.java │ ├── util │ ├── CaptureHelper.java │ ├── CheatSheet.java │ ├── EditDistance.java │ ├── FileCache.java │ ├── ImageSizes.java │ ├── JSONHelper.java │ ├── LatLon.java │ ├── PicassoImageGetter.java │ ├── PicassoUtils.java │ ├── UrlDrawable.java │ ├── UrlImageGetter.java │ ├── Utils.java │ ├── ViewServer.java │ ├── WikiHtmlTagHandler.java │ ├── api │ │ ├── Api.java │ │ ├── ApiCall.java │ │ ├── ApiContentProvider.java │ │ ├── ApiDatabase.java │ │ ├── ApiEndpoint.java │ │ ├── ApiError.java │ │ ├── ApiEvent.java │ │ ├── ApiSyncAdapter.java │ │ ├── ApiSyncService.java │ │ └── GuideMediaProgress.java │ └── transformations │ │ ├── CircleTransformation.java │ │ └── RoundedTransformation.java │ └── views │ ├── EmptyRecyclerView.java │ └── HelperTextInputLayout.java ├── CONTRIBUTING.md ├── LICENSE ├── PlayStoreResources ├── dozuki │ ├── dozuki_collage_main_graphic.jpg │ ├── icon.png │ ├── screenshots │ │ ├── 2.0.0 │ │ │ ├── 10in │ │ │ │ ├── Android Screen Shot Fri Sep 6 14:36:41 PDT 2013.png │ │ │ │ ├── Android Screen Shot Fri Sep 6 14:36:55 PDT 2013.png │ │ │ │ ├── Android Screen Shot Fri Sep 6 14:39:51 PDT 2013.png │ │ │ │ ├── Android Screen Shot Fri Sep 6 14:40:06 PDT 2013.png │ │ │ │ ├── Android Screen Shot Fri Sep 6 14:41:02 PDT 2013.png │ │ │ │ ├── Android Screen Shot Fri Sep 6 14:44:16 PDT 2013.png │ │ │ │ └── Android Screen Shot Fri Sep 6 14:44:45 PDT 2013.png │ │ │ ├── 7in │ │ │ │ ├── gallery_view.png │ │ │ │ ├── guide_step_view.png │ │ │ │ ├── menu_drawer view.png │ │ │ │ ├── site_list_dialog.png │ │ │ │ ├── step_edit_view.png │ │ │ │ └── topic_guide_list.png │ │ │ └── phone │ │ │ │ ├── Android Screen Shot Fri Sep 6 14:48:39 PDT 2013.png │ │ │ │ ├── Android Screen Shot Fri Sep 6 14:48:44 PDT 2013.png │ │ │ │ ├── Android Screen Shot Fri Sep 6 14:48:50 PDT 2013.png │ │ │ │ ├── Android Screen Shot Fri Sep 6 14:48:58 PDT 2013.png │ │ │ │ ├── Android Screen Shot Fri Sep 6 14:49:03 PDT 2013.png │ │ │ │ ├── Android Screen Shot Fri Sep 6 14:53:41 PDT 2013.png │ │ │ │ ├── Android Screen Shot Fri Sep 6 14:53:50 PDT 2013.png │ │ │ │ ├── Android Screen Shot Fri Sep 6 14:54:40 PDT 2013.png │ │ │ │ └── Android Screen Shot Fri Sep 6 14:55:52 PDT 2013.png │ │ └── old │ │ │ ├── screenshot1.png │ │ │ ├── screenshot2.png │ │ │ └── screenshot3.png │ └── text │ │ ├── app_store_de.txt │ │ ├── app_store_en.txt │ │ ├── app_store_es.txt │ │ └── app_store_fr.txt └── ifixit │ ├── feature-graphic.png │ ├── ic_notification_icon.psd │ ├── icon-iFixit-amazon-appstore.png │ ├── icon-iFixit-master.png │ ├── ifixit_android_promo.png │ ├── logo_ifixit.png │ ├── promo-graphic.png │ ├── screenshots │ ├── 2.0.0 │ │ ├── 10in │ │ │ ├── Android Screen Shot Tue Sep 17 19:15:58 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:17:30 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:17:37 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:17:48 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:18:16 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:18:22 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:18:37 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:18:51 PDT 2013.png │ │ │ └── Android Screen Shot Tue Sep 17 19:19:03 PDT 2013.png │ │ ├── 7in │ │ │ ├── Android Screen Shot Tue Sep 17 19:00:48 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:01:02 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:01:07 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:01:20 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:02:44 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:02:50 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:03:12 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:03:49 PDT 2013.png │ │ │ └── Android Screen Shot Tue Sep 17 19:04:34 PDT 2013.png │ │ └── phone │ │ │ ├── Android Screen Shot Tue Sep 17 19:12:24 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:13:02 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:13:13 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:13:34 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:13:41 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:13:49 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:13:54 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:14:06 PDT 2013.png │ │ │ ├── Android Screen Shot Tue Sep 17 19:14:36 PDT 2013.png │ │ │ └── Android Screen Shot Tue Sep 17 19:16:28 PDT 2013.png │ └── old │ │ ├── 10in │ │ ├── mediaManager.png │ │ ├── topicGuideListLand.png │ │ ├── topicGuideViewLand.png │ │ ├── topicGuideViewPortrait.png │ │ └── topicListLand.png │ │ ├── 7in │ │ ├── fullScreenView.png │ │ ├── guideListLand.png │ │ ├── guideView.png │ │ ├── mediaManager.png │ │ └── topicGuideListView.png │ │ ├── guideListLand.png │ │ ├── guideViewLand.png │ │ ├── phone │ │ ├── guideViewLand.png │ │ ├── guideViewPortrait.png │ │ ├── mediaManager.png │ │ ├── topicGuideList.png │ │ └── topicList.png │ │ ├── tabletGuide.png │ │ ├── tabletGuideList.png │ │ ├── tabletTopicList.png │ │ └── topicList.png │ └── text │ ├── app_store_de.txt │ ├── app_store_en.txt │ ├── app_store_es.txt │ └── app_store_fr.txt ├── README.md ├── STYLE.md ├── build.gradle ├── dozuki_customizations.md ├── formatting.xml ├── gradle.properties.base ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── scripts ├── prepare_assets.rb └── translate.sh └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | 3 | # Denote all files that are truly binary and should not be modified. 4 | *.png binary 5 | *.jpg binary 6 | *.ttf binary 7 | *.jar binary 8 | -------------------------------------------------------------------------------- /App/assets/fonts/OpenSansBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/assets/fonts/OpenSansBold.ttf -------------------------------------------------------------------------------- /App/assets/fonts/OpenSansExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/assets/fonts/OpenSansExtraBold.ttf -------------------------------------------------------------------------------- /App/assets/fonts/OpenSansItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/assets/fonts/OpenSansItalic.ttf -------------------------------------------------------------------------------- /App/assets/fonts/OpenSansRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/assets/fonts/OpenSansRegular.ttf -------------------------------------------------------------------------------- /App/assets/fonts/ProximaNovaBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/assets/fonts/ProximaNovaBold.ttf -------------------------------------------------------------------------------- /App/assets/fonts/ProximaNovaExtrabold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/assets/fonts/ProximaNovaExtrabold.ttf -------------------------------------------------------------------------------- /App/assets/fonts/ProximaNovaLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/assets/fonts/ProximaNovaLight.ttf -------------------------------------------------------------------------------- /App/assets/fonts/ProximaNovaRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/assets/fonts/ProximaNovaRegular.ttf -------------------------------------------------------------------------------- /App/default.properties: -------------------------------------------------------------------------------- 1 | # Project target. 2 | target=android-13 3 | -------------------------------------------------------------------------------- /App/libs/libGoogleAnalyticsServices.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/libs/libGoogleAnalyticsServices.jar -------------------------------------------------------------------------------- /App/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-19 12 | 13 | -------------------------------------------------------------------------------- /App/res/anim/fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /App/res/anim/rotate_clockwise.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /App/res/anim/rotate_counterclockwise.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /App/res/anim/slide_down.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/anim/slide_in_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /App/res/anim/slide_in_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /App/res/anim/slide_in_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /App/res/anim/slide_in_right_delay.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /App/res/anim/slide_out_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /App/res/anim/slide_out_bottom_slow.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /App/res/anim/slide_out_left.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /App/res/anim/slide_out_left_delay.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /App/res/anim/slide_out_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /App/res/anim/slide_up.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable-hdpi/add_photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/add_photos.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/fist_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/fist_default.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_action_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_action_book.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_add_list_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_add_list_item.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_btn_add_bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_btn_add_bullet.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_btn_add_gallery_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_btn_add_gallery_image.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_btn_add_gallery_media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_btn_add_gallery_media.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_btn_sign_in_yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_btn_sign_in_yahoo.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_dialog_arrange_bullets_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_dialog_arrange_bullets_light.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_dialog_bullet_caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_dialog_bullet_caution.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_dialog_bullet_note_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_dialog_bullet_note_dark.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_dialog_bullet_note_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_dialog_bullet_note_light.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_dialog_bullet_reminder_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_dialog_bullet_reminder_dark.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_dialog_bullet_reminder_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_dialog_bullet_reminder_light.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_dialog_indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_dialog_indent.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_dialog_unindent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_dialog_unindent.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_drawer.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_guide_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_guide_delete.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_guide_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_guide_edit.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_guide_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_guide_expand.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_list_item_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_list_item_move.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_list_item_publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_list_item_publish.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_list_item_unpublish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_list_item_unpublish.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_menu_add.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_menu_add_guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_menu_add_guide.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_menu_add_media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_menu_add_media.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_menu_bot_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_menu_bot_more.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_menu_bot_step_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_menu_bot_step_add.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_menu_bot_step_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_menu_bot_step_delete.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_menu_bot_steplist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_menu_bot_steplist.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_menu_favorite_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_menu_favorite_light.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_menu_moreoverflow_normal_holo_light.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_menu_spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_menu_spinner.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_menu_spinner_browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_menu_spinner_browse.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_menu_spinner_favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_menu_spinner_favorites.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_menu_spinner_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_menu_spinner_gallery.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_menu_spinner_guides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_menu_spinner_guides.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_menu_spinner_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_menu_spinner_help.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_menu_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_menu_stack.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_menu_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_menu_video.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_placeholder_feature_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_placeholder_feature_img.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_placeholder_img_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_placeholder_img_thumbnail.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_play_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_play_focus.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_play_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_play_normal.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_play_pressed.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/ic_spinner_browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/ic_spinner_browse.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/icon_caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/icon_caution.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/icon_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/icon_note.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/icon_reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/icon_reminder.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/logo_dozuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/logo_dozuki.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/logo_ifixit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/logo_ifixit.png -------------------------------------------------------------------------------- /App/res/drawable-hdpi/x_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-hdpi/x_icon.png -------------------------------------------------------------------------------- /App/res/drawable-land/step_media_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /App/res/drawable-mdpi/add_photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/add_photos.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/fist_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/fist_default.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_action_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_action_book.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_add_list_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_add_list_item.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_btn_add_bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_btn_add_bullet.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_btn_add_gallery_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_btn_add_gallery_image.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_btn_add_gallery_media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_btn_add_gallery_media.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_btn_sign_in_yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_btn_sign_in_yahoo.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_dialog_arrange_bullets_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_dialog_arrange_bullets_light.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_dialog_bullet_caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_dialog_bullet_caution.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_dialog_bullet_note_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_dialog_bullet_note_dark.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_dialog_bullet_note_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_dialog_bullet_note_light.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_dialog_bullet_reminder_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_dialog_bullet_reminder_dark.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_dialog_bullet_reminder_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_dialog_bullet_reminder_light.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_dialog_indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_dialog_indent.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_dialog_unindent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_dialog_unindent.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_drawer.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_guide_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_guide_delete.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_guide_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_guide_edit.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_guide_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_guide_expand.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_list_item_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_list_item_move.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_list_item_publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_list_item_publish.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_list_item_unpublish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_list_item_unpublish.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_menu_add.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_menu_add_guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_menu_add_guide.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_menu_add_media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_menu_add_media.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_menu_bot_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_menu_bot_more.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_menu_bot_step_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_menu_bot_step_add.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_menu_bot_step_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_menu_bot_step_delete.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_menu_bot_steplist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_menu_bot_steplist.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_menu_favorite_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_menu_favorite_light.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_menu_moreoverflow_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_menu_moreoverflow_normal_holo_light.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_menu_spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_menu_spinner.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_menu_spinner_browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_menu_spinner_browse.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_menu_spinner_favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_menu_spinner_favorites.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_menu_spinner_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_menu_spinner_gallery.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_menu_spinner_guides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_menu_spinner_guides.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_menu_spinner_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_menu_spinner_help.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_menu_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_menu_stack.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_menu_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_menu_video.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_placeholder_feature_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_placeholder_feature_img.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_placeholder_img_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_placeholder_img_thumbnail.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_play_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_play_focus.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_play_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_play_normal.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_play_pressed.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/ic_spinner_browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/ic_spinner_browse.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/icon_caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/icon_caution.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/icon_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/icon_note.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/icon_reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/icon_reminder.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/logo_dozuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/logo_dozuki.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/logo_ifixit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/logo_ifixit.png -------------------------------------------------------------------------------- /App/res/drawable-mdpi/x_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-mdpi/x_icon.png -------------------------------------------------------------------------------- /App/res/drawable-v21/card_foreground.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /App/res/drawable-v21/card_item_touch_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /App/res/drawable-v21/sync_box_touch_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/add_photos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/add_photos.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/fist_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/fist_default.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_action_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_action_book.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_add_list_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_add_list_item.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_btn_add_bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_btn_add_bullet.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_btn_add_gallery_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_btn_add_gallery_image.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_btn_add_gallery_media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_btn_add_gallery_media.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_btn_sign_in_yahoo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_btn_sign_in_yahoo.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_dialog_arrange_bullets_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_dialog_arrange_bullets_light.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_dialog_bullet_caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_dialog_bullet_caution.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_dialog_bullet_note_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_dialog_bullet_note_dark.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_dialog_bullet_note_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_dialog_bullet_note_light.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_dialog_bullet_reminder_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_dialog_bullet_reminder_dark.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_dialog_bullet_reminder_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_dialog_bullet_reminder_light.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_dialog_indent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_dialog_indent.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_dialog_unindent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_dialog_unindent.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_drawer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_drawer.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_guide_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_guide_delete.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_guide_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_guide_edit.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_guide_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_guide_expand.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_list_item_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_list_item_move.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_list_item_publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_list_item_publish.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_list_item_unpublish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_list_item_unpublish.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_menu_add.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_menu_add_guide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_menu_add_guide.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_menu_add_media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_menu_add_media.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_menu_bot_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_menu_bot_more.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_menu_bot_step_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_menu_bot_step_add.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_menu_bot_step_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_menu_bot_step_delete.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_menu_bot_steplist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_menu_bot_steplist.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_menu_favorite_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_menu_favorite_light.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_menu_moreoverflow_normal_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_menu_moreoverflow_normal_holo_light.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_menu_spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_menu_spinner.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_menu_spinner_browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_menu_spinner_browse.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_menu_spinner_favorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_menu_spinner_favorites.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_menu_spinner_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_menu_spinner_gallery.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_menu_spinner_guides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_menu_spinner_guides.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_menu_spinner_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_menu_spinner_help.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_menu_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_menu_stack.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_menu_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_menu_video.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_placeholder_feature_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_placeholder_feature_img.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_placeholder_img_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_placeholder_img_thumbnail.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_play_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_play_focus.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_play_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_play_normal.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_play_pressed.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/ic_spinner_browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/ic_spinner_browse.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/icon_caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/icon_caution.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/icon_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/icon_note.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/icon_reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/icon_reminder.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/logo_dozuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/logo_dozuki.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/logo_ifixit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/logo_ifixit.png -------------------------------------------------------------------------------- /App/res/drawable-xhdpi/x_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xhdpi/x_icon.png -------------------------------------------------------------------------------- /App/res/drawable-xxhdpi/ic_action_qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable-xxhdpi/ic_action_qr_code.png -------------------------------------------------------------------------------- /App/res/drawable/background_toolbar_translucent.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/bullet_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /App/res/drawable/bullet_blue.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /App/res/drawable/bullet_green.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /App/res/drawable/bullet_light_blue.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /App/res/drawable/bullet_orange.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /App/res/drawable/bullet_red.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /App/res/drawable/bullet_violet.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /App/res/drawable/bullet_yellow.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /App/res/drawable/card_foreground.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /App/res/drawable/default_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable/default_user.png -------------------------------------------------------------------------------- /App/res/drawable/frame_gallery_thumb_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable/frame_gallery_thumb_selected.9.png -------------------------------------------------------------------------------- /App/res/drawable/ic_add_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_add_a_photo_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_add_a_photo_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_add_a_photo_white_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_add_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_add_white_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_arrow_back_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_arrow_back_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_arrow_back_white_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_close_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_collections_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_comment_large.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_create_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_create_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_delete_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_delete_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_exit_to_app_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_exit_to_app_white_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_facebook.xml: -------------------------------------------------------------------------------- 1 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /App/res/drawable/ic_favorite_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_favorite_red_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_link_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_list_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_lock_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_mic_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_mode_edit_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_mode_edit_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_more_vert_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_photo_library_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_photo_library_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_publish_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_question_answer_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_refresh_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_reorder_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_reorder_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_reorder_white_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_save_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_search_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_search_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_send_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_stars_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_undo_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_undo_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/ic_youtube.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /App/res/drawable/image_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /App/res/drawable/image_background_circle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /App/res/drawable/left_border_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /App/res/drawable/no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/res/drawable/no_image.jpg -------------------------------------------------------------------------------- /App/res/drawable/right_border_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /App/res/drawable/rounded_button_background_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /App/res/drawable/rounded_button_background_disabled.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /App/res/drawable/rounded_button_background_pressed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /App/res/drawable/section_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /App/res/drawable/selectable_item_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /App/res/drawable/selectable_item_background_transparent.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /App/res/drawable/step_media_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /App/res/drawable/sync_box_touch_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /App/res/drawable/top_border_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /App/res/drawable/topic_image_gradient.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /App/res/drawable/topic_list_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /App/res/drawable/video_play_button_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /App/res/drawable/wizard_finish_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /App/res/drawable/wizard_selectable_item_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /App/res/layout/answers_web_view.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /App/res/layout/document_list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /App/res/layout/embed_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /App/res/layout/empty_guide_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /App/res/layout/guide_create_steps_root.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /App/res/layout/guide_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /App/res/layout/guide_step_embed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /App/res/layout/menu_row_category.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /App/res/layout/menu_row_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /App/res/layout/open_id_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /App/res/layout/store_web_view.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /App/res/layout/toolbar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 14 | -------------------------------------------------------------------------------- /App/res/layout/topic_header_row.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /App/res/layout/topic_list_fragment.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /App/res/layout/topic_list_row.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 9 | -------------------------------------------------------------------------------- /App/res/layout/topic_name_autocomplete_dropdown_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | -------------------------------------------------------------------------------- /App/res/layout/web_view_fragment.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 10 | 11 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /App/res/layout/wizard_fragment_page.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /App/res/menu/contextual_delete.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /App/res/menu/contextual_rearrange.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | 12 | 13 | -------------------------------------------------------------------------------- /App/res/menu/offline_guides.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /App/res/menu/search_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /App/res/menu/store_web_view_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /App/res/values-land/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8dp 6 | 7 | 8 | 6dip 9 | 10 | 11 | 4dp 12 | 4dp 13 | 14 | 15 | 8dp 16 | 17 | 18 | -------------------------------------------------------------------------------- /App/res/values-large/donottranslate.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | .large 5 | .large 6 | .huge 7 | .medium 8 | 9 | -------------------------------------------------------------------------------- /App/res/values-v14/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /App/res/values-v16/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /App/res/values-v21/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ?attr/colorPrimary 6 | ?attr/colorPrimaryDark 7 | ?attr/colorAccent 8 | ?attr/colorAccentDark 9 | ?attr/colorButtonNormal 10 | 11 | -------------------------------------------------------------------------------- /App/res/values-v21/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | -------------------------------------------------------------------------------- /App/res/values/analytics.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | UA-30506-9 8 | 9 | 10 | false 11 | 12 | 13 | true 14 | 15 | -------------------------------------------------------------------------------- /App/res/values/base.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /App/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /App/res/xml/account_preferences.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /App/res/xml/file_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /App/res/xml/searchable.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /App/sites/accustream/res/drawable/accustream__section_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /App/sites/accustream/res/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/accustream/res/drawable/logo.png -------------------------------------------------------------------------------- /App/sites/accustream/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48dp 4 | -------------------------------------------------------------------------------- /App/sites/accustream/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /App/sites/accustream/site-res/drawable-hdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/accustream/site-res/drawable-hdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/accustream/site-res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/accustream/site-res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /App/sites/accustream/site-res/drawable-mdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/accustream/site-res/drawable-mdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/accustream/site-res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/accustream/site-res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /App/sites/accustream/site-res/drawable-xhdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/accustream/site-res/drawable-xhdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/accustream/site-res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/accustream/site-res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/accustream/site-res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/accustream/site-res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/accustream/site-res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/accustream/site-res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/accustream/site-res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hypertherm Waterjet Mobile Assistant 4 | 5 | -------------------------------------------------------------------------------- /App/sites/accustream/site-res/xml/api_sync_adapter.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /App/sites/accustream/site-res/xml/authenticator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /App/sites/aristocrat/res/drawable/aristocrat_section_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /App/sites/aristocrat/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48dp 4 | -------------------------------------------------------------------------------- /App/sites/aristocrat/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /App/sites/aristocrat/site-res/drawable-hdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/aristocrat/site-res/drawable-hdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/aristocrat/site-res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/aristocrat/site-res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /App/sites/aristocrat/site-res/drawable-mdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/aristocrat/site-res/drawable-mdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/aristocrat/site-res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/aristocrat/site-res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /App/sites/aristocrat/site-res/drawable-xhdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/aristocrat/site-res/drawable-xhdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/aristocrat/site-res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/aristocrat/site-res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/aristocrat/site-res/drawable-xxhdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/aristocrat/site-res/drawable-xxhdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/aristocrat/site-res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/aristocrat/site-res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/aristocrat/site-res/drawable-xxxhdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/aristocrat/site-res/drawable-xxxhdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/aristocrat/site-res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/aristocrat/site-res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/aristocrat/site-res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Aristocrat Resource Center 4 | 5 | -------------------------------------------------------------------------------- /App/sites/aristocrat/site-res/xml/api_sync_adapter.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /App/sites/aristocrat/site-res/xml/authenticator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /App/sites/charlessmith/res/drawable/charlessmith_section_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /App/sites/charlessmith/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48dp 4 | -------------------------------------------------------------------------------- /App/sites/charlessmith/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /App/sites/charlessmith/site-res/drawable-hdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/charlessmith/site-res/drawable-hdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/charlessmith/site-res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/charlessmith/site-res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /App/sites/charlessmith/site-res/drawable-mdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/charlessmith/site-res/drawable-mdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/charlessmith/site-res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/charlessmith/site-res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /App/sites/charlessmith/site-res/drawable-xhdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/charlessmith/site-res/drawable-xhdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/charlessmith/site-res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/charlessmith/site-res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/charlessmith/site-res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/charlessmith/site-res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/charlessmith/site-res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/charlessmith/site-res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/charlessmith/site-res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Postmix Maintenance Instructions 4 | 5 | -------------------------------------------------------------------------------- /App/sites/charlessmith/site-res/xml/api_sync_adapter.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /App/sites/charlessmith/site-res/xml/authenticator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable-hdpi/dozuki_splash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dozuki/res/drawable-hdpi/dozuki_splash_logo.png -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable-hdpi/dozuki_workbench.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dozuki/res/drawable-hdpi/dozuki_workbench.jpg -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable-hdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dozuki/res/drawable-hdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dozuki/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable-mdpi/dozuki_splash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dozuki/res/drawable-mdpi/dozuki_splash_logo.png -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable-mdpi/dozuki_workbench.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dozuki/res/drawable-mdpi/dozuki_workbench.jpg -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable-mdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dozuki/res/drawable-mdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dozuki/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable-xhdpi/dozuki_splash_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dozuki/res/drawable-xhdpi/dozuki_splash_logo.png -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable-xhdpi/dozuki_workbench.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dozuki/res/drawable-xhdpi/dozuki_workbench.jpg -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable-xhdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dozuki/res/drawable-xhdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dozuki/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable/green__section_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable/grey__section_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable/orange__section_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable/site_button_states.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable/site_button_states_positioning.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable/site_list_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dozuki/res/drawable/site_list_background.9.png -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable/site_list_background_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dozuki/res/drawable/site_list_background_pressed.9.png -------------------------------------------------------------------------------- /App/sites/dozuki/res/drawable/white__section_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /App/sites/dozuki/res/xml/api_sync_adapter.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /App/sites/dozuki/res/xml/authenticator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /App/sites/dozuki/res/xml/dozuki_searchable.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /App/sites/dozuki/res/xml/searchable.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /App/sites/dripassist/res/drawable/dripassist_section_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /App/sites/dripassist/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48dp 4 | -------------------------------------------------------------------------------- /App/sites/dripassist/site-res/drawable-hdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dripassist/site-res/drawable-hdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/dripassist/site-res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dripassist/site-res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /App/sites/dripassist/site-res/drawable-mdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dripassist/site-res/drawable-mdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/dripassist/site-res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dripassist/site-res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /App/sites/dripassist/site-res/drawable-xhdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dripassist/site-res/drawable-xhdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/dripassist/site-res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dripassist/site-res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/dripassist/site-res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dripassist/site-res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/dripassist/site-res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dripassist/site-res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/dripassist/site-res/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/dripassist/site-res/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/dripassist/site-res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | DripAssistant 4 | 5 | -------------------------------------------------------------------------------- /App/sites/dripassist/site-res/xml/api_sync_adapter.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /App/sites/dripassist/site-res/xml/authenticator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /App/sites/ifixit/res/drawable/ifixit__section_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /App/sites/ifixit/site-res/drawable-hdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/ifixit/site-res/drawable-hdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/ifixit/site-res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/ifixit/site-res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /App/sites/ifixit/site-res/drawable-large-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/ifixit/site-res/drawable-large-mdpi/icon.png -------------------------------------------------------------------------------- /App/sites/ifixit/site-res/drawable-mdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/ifixit/site-res/drawable-mdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/ifixit/site-res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/ifixit/site-res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /App/sites/ifixit/site-res/drawable-xhdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/ifixit/site-res/drawable-xhdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/ifixit/site-res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/ifixit/site-res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/ifixit/site-res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/ifixit/site-res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/ifixit/site-res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | iFixit 4 | 5 | -------------------------------------------------------------------------------- /App/sites/ifixit/site-res/xml/api_sync_adapter.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /App/sites/ifixit/site-res/xml/authenticator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /App/sites/oscaro/res/drawable/oscaro_section_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /App/sites/oscaro/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF144A82 4 | @color/oscaro_color 5 | @color/step_pager_previous_tab_color 6 | 7 | #FF145696 8 | @color/oscaro_color 9 | #FF145696 10 | #10000000 11 | 12 | -------------------------------------------------------------------------------- /App/sites/oscaro/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 10 | -------------------------------------------------------------------------------- /App/sites/oscaro/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /App/sites/oscaro/site-res/drawable-hdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/oscaro/site-res/drawable-hdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/oscaro/site-res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/oscaro/site-res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /App/sites/oscaro/site-res/drawable-mdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/oscaro/site-res/drawable-mdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/oscaro/site-res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/oscaro/site-res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /App/sites/oscaro/site-res/drawable-xhdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/oscaro/site-res/drawable-xhdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/oscaro/site-res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/oscaro/site-res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/oscaro/site-res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/oscaro/site-res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/oscaro/site-res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/oscaro/site-res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/oscaro/site-res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Tutoriels Oscaro.com 4 | 5 | -------------------------------------------------------------------------------- /App/sites/oscaro/site-res/xml/api_sync_adapter.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /App/sites/oscaro/site-res/xml/authenticator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /App/sites/pva/res/drawable/pva_section_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /App/sites/pva/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #ed193f 4 | 5 | #6b0719 6 | @color/pva_color 7 | @color/pva_color_dark 8 | 9 | @color/pva_color 10 | @color/pva_color 11 | @color/pva_color 12 | #10000000 13 | 14 | 15 | -------------------------------------------------------------------------------- /App/sites/pva/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 48dp 4 | -------------------------------------------------------------------------------- /App/sites/pva/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /App/sites/pva/site-res/drawable-hdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/pva/site-res/drawable-hdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/pva/site-res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/pva/site-res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /App/sites/pva/site-res/drawable-mdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/pva/site-res/drawable-mdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/pva/site-res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/pva/site-res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /App/sites/pva/site-res/drawable-xhdpi/ic_notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/pva/site-res/drawable-xhdpi/ic_notification_icon.png -------------------------------------------------------------------------------- /App/sites/pva/site-res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/pva/site-res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/pva/site-res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/pva/site-res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/pva/site-res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/App/sites/pva/site-res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /App/sites/pva/site-res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | PVA Support Hub 4 | 5 | -------------------------------------------------------------------------------- /App/sites/pva/site-res/xml/api_sync_adapter.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | -------------------------------------------------------------------------------- /App/sites/pva/site-res/xml/authenticator.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/model/VideoEncoding.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.model; 2 | 3 | import java.io.Serializable; 4 | 5 | public class VideoEncoding implements Serializable { 6 | 7 | private static final long serialVersionUID = -6244973891206389939L; 8 | protected int mWidth; 9 | protected int mHeight; 10 | protected String mFormat; 11 | protected String mURL; 12 | 13 | public VideoEncoding(int width, int height, String url, String format) { 14 | mWidth = width; 15 | mHeight = height; 16 | mFormat = format; 17 | mURL = url; 18 | } 19 | 20 | public String getURL() { 21 | return mURL; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/model/VideoThumbnail.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.model; 2 | 3 | import java.io.Serializable; 4 | 5 | public class VideoThumbnail extends Image implements Serializable { 6 | private static final long serialVersionUID = 0L; 7 | 8 | private int mWidth; 9 | private int mHeight; 10 | 11 | public VideoThumbnail(int imageid, String url, int width, int height) { 12 | super(imageid, url); 13 | mWidth = width; 14 | mHeight = height; 15 | } 16 | 17 | public int getWidth() { 18 | return mWidth; 19 | } 20 | 21 | public int getHeight() { 22 | return mHeight; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/model/auth/AuthenticatorService.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.model.auth; 2 | 3 | import android.app.Service; 4 | import android.content.Intent; 5 | import android.os.IBinder; 6 | 7 | public class AuthenticatorService extends Service { 8 | @Override 9 | public IBinder onBind(Intent intent) { 10 | Authenticator authenticator = new Authenticator(this); 11 | return authenticator.getIBinder(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/model/dozuki/SiteChangedEvent.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.model.dozuki; 2 | 3 | import com.dozuki.ifixit.model.user.User; 4 | 5 | public class SiteChangedEvent { 6 | public final Site mSite; 7 | public final User mUser; 8 | 9 | public SiteChangedEvent(Site site, User user) { 10 | mSite = site; 11 | mUser = user; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/model/gallery/GalleryEmbedList.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.model.gallery; 2 | 3 | public class GalleryEmbedList extends GalleryMediaList { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/model/gallery/GalleryImageList.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.model.gallery; 2 | 3 | public class GalleryImageList extends GalleryMediaList { 4 | private static final long serialVersionUID = 7067096480019401662L; 5 | 6 | } 7 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/model/gallery/GalleryVideoList.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.model.gallery; 2 | 3 | public class GalleryVideoList extends GalleryMediaList { 4 | 5 | private static final long serialVersionUID = 7212089949959439124L; 6 | 7 | } 8 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/model/guide/GuideType.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.model.guide; 2 | 3 | import java.io.Serializable; 4 | 5 | public class GuideType implements Serializable { 6 | private static final long serialVersionUID = -8948485049734934973L; 7 | 8 | public String mTitle; 9 | public String mType; 10 | public String mPrompt; 11 | 12 | public GuideType(String type, String title, String prompt) { 13 | mTitle = title; 14 | mType = type; 15 | mPrompt = prompt; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/model/guide/OnViewGuideListener.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.model.guide; 2 | 3 | public interface OnViewGuideListener { 4 | public void onViewGuide(int guideid); 5 | } 6 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/model/search/SearchResult.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.model.search; 2 | 3 | import android.view.LayoutInflater; 4 | import android.view.View; 5 | import android.view.ViewGroup; 6 | 7 | public interface SearchResult { 8 | public View buildView(View v, LayoutInflater inflater, ViewGroup container); 9 | public int getLayout(); 10 | public String getType(); 11 | } 12 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/model/user/LoginEvent.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.model.user; 2 | 3 | /** 4 | * Defines events regarding login. 5 | * 6 | * Classes can subscribe to these events if they need to perform some action. 7 | */ 8 | public abstract class LoginEvent { 9 | public static class Logout extends LoginEvent {} 10 | public static class Cancel extends LoginEvent {} 11 | 12 | public static class Login extends LoginEvent { 13 | private User mUser; 14 | 15 | public Login(User user) { 16 | mUser = user; 17 | } 18 | 19 | public User getUser() { 20 | return mUser; 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/ui/guide/CommentDeleteEvent.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.ui.guide; 2 | 3 | import com.dozuki.ifixit.model.Comment; 4 | 5 | public class CommentDeleteEvent { 6 | public Comment comment; 7 | public CommentDeleteEvent(Comment comment) { 8 | this.comment = comment; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/ui/guide/CommentEditEvent.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.ui.guide; 2 | 3 | import com.dozuki.ifixit.model.Comment; 4 | 5 | public class CommentEditEvent { 6 | public Comment comment; 7 | 8 | public CommentEditEvent(Comment comment) { 9 | this.comment = comment; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/ui/guide/CommentReplyingEvent.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.ui.guide; 2 | 3 | public class CommentReplyingEvent { 4 | public int parentid; 5 | 6 | public CommentReplyingEvent(int parentid) { 7 | this.parentid = parentid; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/ui/guide/create/GuideDetailsChangedEvent.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.ui.guide.create; 2 | 3 | import com.dozuki.ifixit.model.guide.Guide; 4 | 5 | public class GuideDetailsChangedEvent { 6 | 7 | public Guide guide; 8 | 9 | public GuideDetailsChangedEvent(Guide guide) { 10 | this.guide = guide; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/ui/guide/create/GuideListItemListener.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.ui.guide.create; 2 | 3 | import com.dozuki.ifixit.model.guide.GuideInfo; 4 | 5 | public interface GuideListItemListener { 6 | void onEditItemClicked(GuideInfo guide); 7 | void onPublishItemClicked(GuideInfo guide); 8 | void onViewItemClicked(GuideInfo guide); 9 | void onDeleteItemClicked(GuideInfo guide); 10 | void onItemLongClick(GuideInfo guide); 11 | } 12 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/ui/guide/create/StepChangedEvent.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.ui.guide.create; 2 | 3 | 4 | public class StepChangedEvent {} 5 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/ui/guide/create/StepImageDeleteEvent.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.ui.guide.create; 2 | 3 | import com.dozuki.ifixit.model.Image; 4 | 5 | public class StepImageDeleteEvent { 6 | public final Image image; 7 | 8 | public StepImageDeleteEvent(Image image) { 9 | this.image = image; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/ui/guide/create/StepLineValidationEvent.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.ui.guide.create; 2 | 3 | public class StepLineValidationEvent { 4 | public int index; 5 | public int stepid; 6 | 7 | public StepLineValidationEvent(int stepid, int index) { 8 | this.index = index; 9 | this.stepid = stepid; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/ui/guide/create/StepLinesChangedEvent.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.ui.guide.create; 2 | 3 | import com.dozuki.ifixit.model.guide.StepLine; 4 | 5 | import java.util.ArrayList; 6 | 7 | public class StepLinesChangedEvent { 8 | public ArrayList lines; 9 | public int stepid; 10 | public StepLinesChangedEvent(int stepid, ArrayList lines) { 11 | this.lines = lines; 12 | this.stepid = stepid; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/ui/guide/create/StepMicCompleteEvent.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.ui.guide.create; 2 | 3 | import java.util.ArrayList; 4 | 5 | public class StepMicCompleteEvent { 6 | public ArrayList results; 7 | public int stepid; 8 | 9 | public StepMicCompleteEvent(ArrayList results, int stepid) { 10 | this.results = new ArrayList(results); 11 | this.stepid = stepid; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/ui/guide/create/StepTitleChangedEvent.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.ui.guide.create; 2 | 3 | public class StepTitleChangedEvent { 4 | public int stepid; 5 | public String title; 6 | 7 | public StepTitleChangedEvent(int stepId, String title) { 8 | this.stepid = stepId; 9 | this.title = title; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/ui/search/SearchSuggestionProvider.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.ui.search; 2 | 3 | import android.content.SearchRecentSuggestionsProvider; 4 | 5 | import com.dozuki.ifixit.BuildConfig; 6 | 7 | public class SearchSuggestionProvider extends SearchRecentSuggestionsProvider { 8 | public final static String AUTHORITY = BuildConfig.SEARCH_PROVIDER_AUTHORITY; 9 | public final static int MODE = DATABASE_MODE_QUERIES; 10 | 11 | public SearchSuggestionProvider() { 12 | setupSuggestions(AUTHORITY, MODE); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /App/src/com/dozuki/ifixit/ui/topic/TopicSelectedListener.java: -------------------------------------------------------------------------------- 1 | package com.dozuki.ifixit.ui.topic; 2 | 3 | import com.dozuki.ifixit.model.topic.TopicNode; 4 | 5 | public interface TopicSelectedListener { 6 | void onTopicSelected(TopicNode topic); 7 | } 8 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Contributing 2 | ============ 3 | 4 | If you would like to contribute code to iFixitAndroid you can do so through GitHub 5 | by forking the repository and sending a pull request. 6 | 7 | When submitting code, please make every effort to follow existing conventions 8 | and style in order to keep the code as readable as possible. 9 | 10 | Before your code can be accepted into the project you must also sign the 11 | [Individual Contributor License Agreement (CLA)][cla]. 12 | 13 | 14 | [cla]: https://docs.google.com/forms/d/1wrPw91REdDKbZQ4vrGeUo8s_TkddZTTxiur0rbUxahk/viewform 15 | -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/dozuki_collage_main_graphic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/dozuki_collage_main_graphic.jpg -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/icon.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/10in/Android Screen Shot Fri Sep 6 14:36:41 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/10in/Android Screen Shot Fri Sep 6 14:36:41 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/10in/Android Screen Shot Fri Sep 6 14:36:55 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/10in/Android Screen Shot Fri Sep 6 14:36:55 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/10in/Android Screen Shot Fri Sep 6 14:39:51 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/10in/Android Screen Shot Fri Sep 6 14:39:51 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/10in/Android Screen Shot Fri Sep 6 14:40:06 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/10in/Android Screen Shot Fri Sep 6 14:40:06 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/10in/Android Screen Shot Fri Sep 6 14:41:02 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/10in/Android Screen Shot Fri Sep 6 14:41:02 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/10in/Android Screen Shot Fri Sep 6 14:44:16 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/10in/Android Screen Shot Fri Sep 6 14:44:16 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/10in/Android Screen Shot Fri Sep 6 14:44:45 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/10in/Android Screen Shot Fri Sep 6 14:44:45 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/7in/gallery_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/7in/gallery_view.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/7in/guide_step_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/7in/guide_step_view.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/7in/menu_drawer view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/7in/menu_drawer view.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/7in/site_list_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/7in/site_list_dialog.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/7in/step_edit_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/7in/step_edit_view.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/7in/topic_guide_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/7in/topic_guide_list.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/phone/Android Screen Shot Fri Sep 6 14:48:39 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/phone/Android Screen Shot Fri Sep 6 14:48:39 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/phone/Android Screen Shot Fri Sep 6 14:48:44 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/phone/Android Screen Shot Fri Sep 6 14:48:44 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/phone/Android Screen Shot Fri Sep 6 14:48:50 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/phone/Android Screen Shot Fri Sep 6 14:48:50 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/phone/Android Screen Shot Fri Sep 6 14:48:58 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/phone/Android Screen Shot Fri Sep 6 14:48:58 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/phone/Android Screen Shot Fri Sep 6 14:49:03 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/phone/Android Screen Shot Fri Sep 6 14:49:03 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/phone/Android Screen Shot Fri Sep 6 14:53:41 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/phone/Android Screen Shot Fri Sep 6 14:53:41 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/phone/Android Screen Shot Fri Sep 6 14:53:50 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/phone/Android Screen Shot Fri Sep 6 14:53:50 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/phone/Android Screen Shot Fri Sep 6 14:54:40 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/phone/Android Screen Shot Fri Sep 6 14:54:40 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/2.0.0/phone/Android Screen Shot Fri Sep 6 14:55:52 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/2.0.0/phone/Android Screen Shot Fri Sep 6 14:55:52 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/old/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/old/screenshot1.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/old/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/old/screenshot2.png -------------------------------------------------------------------------------- /PlayStoreResources/dozuki/screenshots/old/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/dozuki/screenshots/old/screenshot3.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/feature-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/feature-graphic.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/ic_notification_icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/ic_notification_icon.psd -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/icon-iFixit-amazon-appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/icon-iFixit-amazon-appstore.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/icon-iFixit-master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/icon-iFixit-master.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/ifixit_android_promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/ifixit_android_promo.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/logo_ifixit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/logo_ifixit.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/promo-graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/promo-graphic.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/10in/Android Screen Shot Tue Sep 17 19:15:58 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/10in/Android Screen Shot Tue Sep 17 19:15:58 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/10in/Android Screen Shot Tue Sep 17 19:17:30 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/10in/Android Screen Shot Tue Sep 17 19:17:30 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/10in/Android Screen Shot Tue Sep 17 19:17:37 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/10in/Android Screen Shot Tue Sep 17 19:17:37 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/10in/Android Screen Shot Tue Sep 17 19:17:48 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/10in/Android Screen Shot Tue Sep 17 19:17:48 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/10in/Android Screen Shot Tue Sep 17 19:18:16 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/10in/Android Screen Shot Tue Sep 17 19:18:16 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/10in/Android Screen Shot Tue Sep 17 19:18:22 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/10in/Android Screen Shot Tue Sep 17 19:18:22 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/10in/Android Screen Shot Tue Sep 17 19:18:37 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/10in/Android Screen Shot Tue Sep 17 19:18:37 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/10in/Android Screen Shot Tue Sep 17 19:18:51 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/10in/Android Screen Shot Tue Sep 17 19:18:51 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/10in/Android Screen Shot Tue Sep 17 19:19:03 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/10in/Android Screen Shot Tue Sep 17 19:19:03 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/7in/Android Screen Shot Tue Sep 17 19:00:48 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/7in/Android Screen Shot Tue Sep 17 19:00:48 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/7in/Android Screen Shot Tue Sep 17 19:01:02 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/7in/Android Screen Shot Tue Sep 17 19:01:02 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/7in/Android Screen Shot Tue Sep 17 19:01:07 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/7in/Android Screen Shot Tue Sep 17 19:01:07 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/7in/Android Screen Shot Tue Sep 17 19:01:20 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/7in/Android Screen Shot Tue Sep 17 19:01:20 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/7in/Android Screen Shot Tue Sep 17 19:02:44 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/7in/Android Screen Shot Tue Sep 17 19:02:44 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/7in/Android Screen Shot Tue Sep 17 19:02:50 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/7in/Android Screen Shot Tue Sep 17 19:02:50 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/7in/Android Screen Shot Tue Sep 17 19:03:12 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/7in/Android Screen Shot Tue Sep 17 19:03:12 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/7in/Android Screen Shot Tue Sep 17 19:03:49 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/7in/Android Screen Shot Tue Sep 17 19:03:49 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/7in/Android Screen Shot Tue Sep 17 19:04:34 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/7in/Android Screen Shot Tue Sep 17 19:04:34 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:12:24 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:12:24 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:13:02 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:13:02 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:13:13 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:13:13 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:13:34 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:13:34 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:13:41 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:13:41 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:13:49 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:13:49 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:13:54 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:13:54 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:14:06 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:14:06 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:14:36 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:14:36 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:16:28 PDT 2013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/2.0.0/phone/Android Screen Shot Tue Sep 17 19:16:28 PDT 2013.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/10in/mediaManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/10in/mediaManager.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/10in/topicGuideListLand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/10in/topicGuideListLand.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/10in/topicGuideViewLand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/10in/topicGuideViewLand.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/10in/topicGuideViewPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/10in/topicGuideViewPortrait.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/10in/topicListLand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/10in/topicListLand.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/7in/fullScreenView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/7in/fullScreenView.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/7in/guideListLand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/7in/guideListLand.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/7in/guideView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/7in/guideView.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/7in/mediaManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/7in/mediaManager.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/7in/topicGuideListView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/7in/topicGuideListView.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/guideListLand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/guideListLand.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/guideViewLand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/guideViewLand.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/phone/guideViewLand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/phone/guideViewLand.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/phone/guideViewPortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/phone/guideViewPortrait.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/phone/mediaManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/phone/mediaManager.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/phone/topicGuideList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/phone/topicGuideList.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/phone/topicList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/phone/topicList.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/tabletGuide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/tabletGuide.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/tabletGuideList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/tabletGuideList.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/tabletTopicList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/tabletTopicList.png -------------------------------------------------------------------------------- /PlayStoreResources/ifixit/screenshots/old/topicList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/PlayStoreResources/ifixit/screenshots/old/topicList.png -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iFixit/iFixitAndroid/bf2ba7b6fb9f1b4a15c8a745061cdb2b1a1d6fcb/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Mar 08 21:30:22 PST 2017 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip 7 | -------------------------------------------------------------------------------- /scripts/translate.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | lang=$1 4 | tld=`git rev-parse --show-toplevel` 5 | resdir="$tld/App/res" 6 | langdir=$resdir/values-$lang 7 | mkdir $langdir 8 | cp $resdir/values/strings.xml $langdir/ 9 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':App' 2 | --------------------------------------------------------------------------------