├── .gitattributes
├── .gitignore
├── .gradle
└── 2.2.1
│ └── taskArtifacts
│ ├── cache.properties
│ ├── cache.properties.lock
│ ├── fileHashes.bin
│ ├── fileSnapshots.bin
│ ├── outputFileStates.bin
│ └── taskArtifacts.bin
├── .idea
├── .name
├── compiler.xml
├── copyright
│ └── profiles_settings.xml
├── encodings.xml
├── gradle.xml
├── inspectionProfiles
│ ├── Project_Default.xml
│ └── profiles_settings.xml
├── libraries
│ ├── appcompat_v7_22_1_1.xml
│ ├── jsoup_1_8_1.xml
│ ├── multidex_1_0_0.xml
│ ├── support_annotations_22_1_1.xml
│ ├── support_v4_22_1_1.xml
│ └── universal_image_loader_1_9_3.xml
├── misc.xml
├── modules.xml
├── scopes
│ └── scope_settings.xml
├── vcs.xml
└── workspace.xml
├── BilibiliClient.iml
├── README.md
├── apk
└── bb.apk
├── app
├── .gitignore
├── app.iml
├── build.gradle
├── libs
│ ├── jsoup-1.8.1.jar
│ └── universal-image-loader-1.9.3.jar
├── proguard-rules.pro
└── src
│ ├── androidTest
│ └── java
│ │ └── com
│ │ └── cjj
│ │ └── bb
│ │ └── ApplicationTest.java
│ └── main
│ ├── AndroidManifest.xml
│ ├── assets
│ ├── comment.json
│ └── online.xml
│ ├── java
│ ├── com
│ │ └── cjj
│ │ │ └── bb
│ │ │ ├── activity
│ │ │ ├── ABPlayerApplication.java
│ │ │ ├── BiliVideoViewActivity.java
│ │ │ ├── BiliWebviewActivity.java
│ │ │ ├── DonghuaActivity.java
│ │ │ ├── MainActivity.java
│ │ │ ├── TVActivity.java
│ │ │ ├── VideoInfoActivity.java
│ │ │ └── VideoViewActivity.java
│ │ │ ├── adapter
│ │ │ ├── AreaGridAdapter.java
│ │ │ ├── ArrayAdapter.java
│ │ │ ├── BankumiTabAdapter.java
│ │ │ ├── DianyingTabAdapter.java
│ │ │ ├── DonghuaTabAdapter.java
│ │ │ ├── GameListAdapter.java
│ │ │ ├── GridAdapter.java
│ │ │ ├── ItemsAdapter.java
│ │ │ ├── KejiTabAdapter.java
│ │ │ ├── MainTabAdapter.java
│ │ │ ├── MusicTabAdapter.java
│ │ │ ├── RankAdapter.java
│ │ │ ├── VideoInfoListAdapter.java
│ │ │ ├── VideoListAdapter.java
│ │ │ ├── YouxiTabAdapter.java
│ │ │ └── YuleTabAdapter.java
│ │ │ ├── fragment
│ │ │ ├── BangumiFragment.java
│ │ │ ├── BroadcastTimetableFragment.java
│ │ │ ├── DonghuaFragment.java
│ │ │ ├── FragmentLogin.java
│ │ │ ├── FramentTime.java
│ │ │ ├── GamesCenterFragment.java
│ │ │ ├── HomePageFragment.java
│ │ │ ├── HomePageFragment2.java
│ │ │ ├── OnlineFragment.java
│ │ │ ├── PersonCenterFragment.java
│ │ │ ├── RankFragment.java
│ │ │ ├── RelevantVideoFragment.java
│ │ │ ├── SubareaFragment.java
│ │ │ └── VideoInfoFragment.java
│ │ │ ├── model
│ │ │ ├── AreaItem.java
│ │ │ ├── BannerItem.java
│ │ │ ├── GameItem.java
│ │ │ ├── OnlineVideo.java
│ │ │ ├── Page.java
│ │ │ ├── User.java
│ │ │ ├── Video.java
│ │ │ └── VideoItem.java
│ │ │ ├── utils
│ │ │ ├── ArrayUtils.java
│ │ │ ├── CompressionTools.java
│ │ │ ├── Constants.java
│ │ │ ├── DeviceUtils.java
│ │ │ ├── DownUtil.java
│ │ │ ├── FileUitl.java
│ │ │ ├── FileUtils.java
│ │ │ ├── FractionalTouchDelegate.java
│ │ │ ├── HttpDownloader.java
│ │ │ ├── HttpUtil.java
│ │ │ ├── ImageUtils.java
│ │ │ ├── IntentHelper.java
│ │ │ ├── JsoupUtil.java
│ │ │ ├── Logger.java
│ │ │ ├── MediaUtils.java
│ │ │ ├── MultiMemberGZIPInputStream.java
│ │ │ ├── PreferenceUtils.java
│ │ │ ├── StringUtils.java
│ │ │ ├── ToastUtils.java
│ │ │ ├── URLUtil.java
│ │ │ └── XmlReaderHelper.java
│ │ │ └── view
│ │ │ ├── ApplicationUtils.java
│ │ │ ├── CircleImageView.java
│ │ │ ├── CommonGestures.java
│ │ │ ├── FileUtils.java
│ │ │ ├── LeftSliderLayout.java
│ │ │ ├── MediaController.java
│ │ │ ├── PlayerService.java
│ │ │ ├── PullToZoomListView.java
│ │ │ ├── VP.java
│ │ │ └── VideoView.java
│ └── viewpagerindicator
│ │ ├── CirclePageIndicator.java
│ │ ├── IconPageIndicator.java
│ │ ├── IconPagerAdapter.java
│ │ ├── IcsLinearLayout.java
│ │ ├── LinePageIndicator.java
│ │ ├── PageIndicator.java
│ │ ├── TabPageIndicator.java
│ │ ├── TitlePageIndicator.java
│ │ └── UnderlinePageIndicator.java
│ └── res
│ ├── anim
│ ├── bili_anim.xml
│ ├── push_left_in.xml
│ ├── push_no.xml
│ ├── slide_in_bottom.xml
│ ├── slide_in_top.xml
│ ├── slide_out_bottom.xml
│ └── slide_out_top.xml
│ ├── color
│ ├── vpi__dark_theme.xml
│ └── vpi__light_theme.xml
│ ├── drawable-hdpi
│ ├── abc_ab_bottom_solid_light_holo.9.png
│ ├── abc_ic_ab_back_holo_dark.png
│ ├── abc_ic_ab_back_holo_light.png
│ ├── abc_ic_cab_done_holo_dark.png
│ ├── abc_ic_cab_done_holo_light.png
│ ├── abc_ic_clear_disabled.png
│ ├── abc_ic_clear_normal.png
│ ├── abc_ic_clear_search_api_disabled_holo_light.png
│ ├── abc_ic_clear_search_api_holo_light.png
│ ├── abc_ic_commit_search_api_holo_dark.png
│ ├── abc_ic_commit_search_api_holo_light.png
│ ├── abc_ic_go.png
│ ├── abc_ic_go_search_api_holo_light.png
│ ├── abc_ic_menu_moreoverflow_normal_holo_dark.png
│ ├── abc_ic_menu_moreoverflow_normal_holo_light.png
│ ├── abc_ic_menu_share_holo_dark.png
│ ├── abc_ic_menu_share_holo_light.png
│ ├── abc_ic_search.png
│ ├── abc_ic_search_api_holo_light.png
│ ├── abc_ic_voice_search.png
│ ├── abc_ic_voice_search_api_holo_light.png
│ ├── abc_tab_unselected_pressed_holo.9.png
│ ├── abc_textfield_search_default_holo_dark.9.png
│ ├── abc_textfield_search_default_holo_light.9.png
│ ├── abc_textfield_search_right_default_holo_dark.9.png
│ ├── abc_textfield_search_right_default_holo_light.9.png
│ ├── abcp__btn_check_off_disabled_holo_light.png
│ ├── abcp__btn_check_off_holo_light.png
│ ├── abcp__btn_check_on_disabled_holo_light.png
│ ├── abcp__btn_radio_off_disabled_focused_holo_light.png
│ ├── abcp__btn_radio_off_disabled_holo_light.png
│ ├── abcp__btn_radio_on_disabled_focused_holo_light.png
│ ├── abcp__btn_radio_on_disabled_holo_light.png
│ ├── abcp__spinner_16_inner_holo.png
│ ├── abcp__spinner_16_outer_holo.png
│ ├── abcp__spinner_76_inner_holo.png
│ ├── abcp__spinner_76_outer_holo.png
│ ├── abcp__textfield_default_holo_light.9.png
│ ├── abcp__textfield_disabled_focused_holo_light.9.png
│ ├── abcp__textfield_disabled_holo_light.9.png
│ ├── abcp__textfield_multiline_default_holo_light.9.png
│ ├── abcp__textfield_multiline_disabled_focused_holo_light.9.png
│ ├── abcp__textfield_multiline_disabled_holo_light.9.png
│ ├── abcp_pink__ab_transparent_light_holo.9.png
│ ├── abcp_pink__btn_check_off_disabled_focused_holo_light.png
│ ├── abcp_pink__btn_check_off_focused_holo_light.png
│ ├── abcp_pink__btn_check_off_pressed_holo_light.png
│ ├── abcp_pink__btn_check_on_disabled_focused_holo_light.png
│ ├── abcp_pink__btn_check_on_focused_holo_light.png
│ ├── abcp_pink__btn_check_on_holo_light.png
│ ├── abcp_pink__btn_check_on_pressed_holo_light.png
│ ├── abcp_pink__btn_default_disabled_focused_holo_dark.9.png
│ ├── abcp_pink__btn_default_disabled_focused_holo_light.9.png
│ ├── abcp_pink__btn_default_focused_holo_dark.9.png
│ ├── abcp_pink__btn_default_focused_holo_light.9.png
│ ├── abcp_pink__btn_default_pressed_holo_dark.9.png
│ ├── abcp_pink__btn_default_pressed_holo_light.9.png
│ ├── abcp_pink__btn_radio_off_focused_holo_light.png
│ ├── abcp_pink__btn_radio_off_holo_light.png
│ ├── abcp_pink__btn_radio_off_pressed_holo_light.png
│ ├── abcp_pink__btn_radio_on_focused_holo_light.png
│ ├── abcp_pink__btn_radio_on_holo_light.png
│ ├── abcp_pink__btn_radio_on_pressed_holo_light.png
│ ├── abcp_pink__cab_background_bottom_holo_light.9.png
│ ├── abcp_pink__cab_background_top_holo_light.9.png
│ ├── abcp_pink__list_focused_holo.9.png
│ ├── abcp_pink__list_longpressed_holo.9.png
│ ├── abcp_pink__list_pressed_holo_light.9.png
│ ├── abcp_pink__progress_primary_holo_light.9.png
│ ├── abcp_pink__progress_secondary_holo_light.9.png
│ ├── abcp_pink__progressbar_indeterminate_holo1.png
│ ├── abcp_pink__progressbar_indeterminate_holo2.png
│ ├── abcp_pink__progressbar_indeterminate_holo3.png
│ ├── abcp_pink__progressbar_indeterminate_holo4.png
│ ├── abcp_pink__progressbar_indeterminate_holo5.png
│ ├── abcp_pink__progressbar_indeterminate_holo6.png
│ ├── abcp_pink__progressbar_indeterminate_holo7.png
│ ├── abcp_pink__progressbar_indeterminate_holo8.png
│ ├── abcp_pink__scrubber_control_disabled_holo.png
│ ├── abcp_pink__scrubber_control_focused_holo.png
│ ├── abcp_pink__scrubber_control_normal_holo.png
│ ├── abcp_pink__scrubber_control_pressed_holo.png
│ ├── abcp_pink__spinner_ab_focused_holo_light.9.png
│ ├── abcp_pink__spinner_ab_pressed_holo_light.9.png
│ ├── abcp_pink__spinner_focused_holo_light.9.png
│ ├── abcp_pink__spinner_pressed_holo_light.9.png
│ ├── abcp_pink__textfield_activated_holo_light.9.png
│ ├── abcp_pink__textfield_focused_holo_light.9.png
│ ├── abcpex_pink__btn_default_normal_holo_dark.9.png
│ ├── abcpex_pink__btn_default_normal_holo_light.9.png
│ ├── addfs_bg.9.png
│ ├── addfs_bg_p.9.png
│ ├── appex__card_background.9.png
│ ├── appex__card_hover.9.png
│ ├── base_action_bar_action_more_normal.png
│ ├── base_action_bar_action_more_pressed.png
│ ├── base_list_divider_drawable.png
│ ├── bili_anim_tv_chan_1.png
│ ├── bili_anim_tv_chan_3.png
│ ├── bili_anim_tv_chan_5.png
│ ├── bili_anim_tv_chan_7.png
│ ├── bili_anim_tv_chan_9.png
│ ├── bili_default_avatar.png
│ ├── bili_default_image_tv_9p.9.png
│ ├── bili_default_image_tv_with_bg.png
│ ├── bili_gray_semi_circle_left.png
│ ├── bili_gray_semi_circle_right.png
│ ├── bili_list_divider.png
│ ├── bili_login_invalid_captcha.png
│ ├── bili_main_banner_bottom_shadow.png
│ ├── bili_search_edit_background.png
│ ├── bili_secomment_bg.9.png
│ ├── bili_tab_label_bg_selected.png
│ ├── bili_tab_label_bg_unselected.png
│ ├── bili_texture_1.png
│ ├── bili_timeline_clock_0.png
│ ├── bili_timeline_clock_1.png
│ ├── bili_timeline_clock_2.png
│ ├── bili_timeline_clock_3.png
│ ├── bili_timeline_clock_4.png
│ ├── bili_timeline_clock_5.png
│ ├── bili_timeline_clock_6.png
│ ├── bili_timeline_clock_7.png
│ ├── bili_timeline_group_background.9.png
│ ├── color_gray_dark.png
│ ├── color_pink.png
│ ├── color_red.png
│ ├── default_ptr_flip.png
│ ├── default_ptr_rotate.png
│ ├── dialog_bg_click.9.png
│ ├── dialog_bg_normal.9.png
│ ├── dialog_cut_line.png
│ ├── dialog_split_h.png
│ ├── dialog_split_v.png
│ ├── head_bg.9.png
│ ├── ic_action_bar.png
│ ├── ic_action_download_manager.png
│ ├── ic_action_myfollow_icon.png
│ ├── ic_action_play_store.png
│ ├── ic_ar_16_9_crop.png
│ ├── ic_ar_4_3_crop.png
│ ├── ic_brightness.png
│ ├── ic_clear_danmaku.png
│ ├── ic_confirm_send.png
│ ├── ic_download_start.png
│ ├── ic_download_stop.png
│ ├── ic_feedback_good.png
│ ├── ic_file.png
│ ├── ic_folder.png
│ ├── ic_launcher.png
│ ├── ic_logo.png
│ ├── ic_mp4.png
│ ├── ic_sdcard_color.png
│ ├── ic_sdcard_gray.png
│ ├── ic_volume.png
│ ├── ica_light_ic_action_chat.png
│ ├── ica_light_ic_action_collection.png
│ ├── ica_light_ic_action_discard.png
│ ├── ica_light_ic_action_download.png
│ ├── ica_light_ic_action_edit.png
│ ├── ica_light_ic_action_important.png
│ ├── ica_light_ic_action_play.png
│ ├── ica_light_ic_action_previous_item.png
│ ├── ica_light_ic_action_refresh.png
│ ├── ica_light_ic_action_search.png
│ ├── ica_light_ic_action_settings.png
│ ├── ica_light_ic_action_share.png
│ ├── ica_light_ic_action_time.png
│ ├── indicator_arrow.png
│ ├── login.png
│ ├── phiz.png
│ ├── player_battery_charging_icon.png
│ ├── player_battery_icon.png
│ ├── player_battery_red_icon.png
│ ├── popup_bg.9.png
│ ├── refresh.9.png
│ ├── refresh_push.9.png
│ ├── special_tips.png
│ ├── stat_sys_battery_0.png
│ ├── stat_sys_battery_100.png
│ ├── stat_sys_battery_15.png
│ ├── stat_sys_battery_28.png
│ ├── stat_sys_battery_43.png
│ ├── stat_sys_battery_57.png
│ ├── stat_sys_battery_71.png
│ ├── stat_sys_battery_85.png
│ ├── stat_sys_battery_charge_anim0.png
│ ├── stat_sys_battery_charge_anim100.png
│ ├── stat_sys_battery_charge_anim15.png
│ ├── stat_sys_battery_charge_anim28.png
│ ├── stat_sys_battery_charge_anim43.png
│ ├── stat_sys_battery_charge_anim57.png
│ ├── stat_sys_battery_charge_anim71.png
│ ├── stat_sys_battery_charge_anim85.png
│ ├── time.png
│ ├── title.png
│ ├── title_background.9.png
│ ├── umeng_socialize_light_bar_bg_pad.9.png
│ ├── umeng_socialize_nav_bar_bg_pad.9.png
│ ├── umeng_socialize_oauth_check_off.png
│ ├── umeng_socialize_oauth_check_on.png
│ ├── umeng_socialize_share_music.png
│ ├── umeng_socialize_share_pic.png
│ ├── umeng_socialize_share_video.png
│ ├── umeng_update_btn_check_off_focused_holo_light.png
│ ├── umeng_update_btn_check_off_holo_light.png
│ ├── umeng_update_btn_check_off_pressed_holo_light.png
│ ├── umeng_update_btn_check_on_focused_holo_light.png
│ ├── umeng_update_btn_check_on_holo_light.png
│ ├── umeng_update_btn_check_on_pressed_holo_light.png
│ ├── umeng_update_close_bg_normal.png
│ ├── umeng_update_close_bg_tap.png
│ ├── vpi__tab_selected_focused_holo.9.png
│ ├── vpi__tab_selected_holo.9.png
│ ├── vpi__tab_selected_pressed_holo.9.png
│ ├── vpi__tab_unselected_focused_holo.9.png
│ ├── vpi__tab_unselected_holo.9.png
│ └── vpi__tab_unselected_pressed_holo.9.png
│ ├── drawable-mdpi
│ ├── vpi__tab_selected_focused_holo.9.png
│ ├── vpi__tab_selected_holo.9.png
│ ├── vpi__tab_selected_pressed_holo.9.png
│ ├── vpi__tab_unselected_focused_holo.9.png
│ ├── vpi__tab_unselected_holo.9.png
│ └── vpi__tab_unselected_pressed_holo.9.png
│ ├── drawable-xhdpi
│ ├── abc_ic_ab_back_holo_dark.png
│ ├── abc_ic_ab_back_holo_light.png
│ ├── abc_ic_cab_done_holo_dark.png
│ ├── abc_ic_cab_done_holo_light.png
│ ├── abc_ic_clear_disabled.png
│ ├── abc_ic_clear_search_api_disabled_holo_light.png
│ ├── abc_ic_clear_search_api_holo_light.png
│ ├── abc_ic_commit_search_api_holo_dark.png
│ ├── abc_ic_commit_search_api_holo_light.png
│ ├── abc_ic_go.png
│ ├── abc_ic_go_search_api_holo_light.png
│ ├── abc_ic_menu_moreoverflow_normal_holo_dark.png
│ ├── abc_ic_menu_moreoverflow_normal_holo_light.png
│ ├── abc_ic_menu_share_holo_dark.png
│ ├── abc_ic_menu_share_holo_light.png
│ ├── abc_ic_search.png
│ ├── abc_ic_search_api_holo_light.png
│ ├── abc_ic_voice_search.png
│ ├── abc_ic_voice_search_api_holo_light.png
│ ├── abc_list_pressed_holo_dark.9.png
│ ├── abc_list_pressed_holo_light.9.png
│ ├── abc_list_selector_disabled_holo_dark.9.png
│ ├── abc_list_selector_disabled_holo_light.9.png
│ ├── abc_menu_dropdown_panel_holo_dark.9.png
│ ├── abc_menu_dropdown_panel_holo_light.9.png
│ ├── abc_menu_hardkey_panel_holo_dark.9.png
│ ├── abc_menu_hardkey_panel_holo_light.9.png
│ ├── abc_spinner_ab_default_holo_dark.9.png
│ ├── abc_spinner_ab_default_holo_light.9.png
│ ├── abc_spinner_ab_disabled_holo_dark.9.png
│ ├── abc_spinner_ab_disabled_holo_light.9.png
│ ├── abc_spinner_ab_focused_holo_dark.9.png
│ ├── abc_spinner_ab_focused_holo_light.9.png
│ ├── abc_spinner_ab_pressed_holo_dark.9.png
│ ├── abc_spinner_ab_pressed_holo_light.9.png
│ ├── abc_tab_selected_focused_holo.9.png
│ ├── abc_tab_unselected_pressed_holo.9.png
│ ├── abc_textfield_search_default_holo_dark.9.png
│ ├── abc_textfield_search_default_holo_light.9.png
│ ├── abc_textfield_search_right_default_holo_dark.9.png
│ ├── abc_textfield_search_right_default_holo_light.9.png
│ ├── abc_textfield_search_right_selected_holo_dark.9.png
│ ├── abc_textfield_search_right_selected_holo_light.9.png
│ ├── abc_textfield_search_selected_holo_dark.9.png
│ ├── abc_textfield_search_selected_holo_light.9.png
│ ├── abcp__btn_check_off_disabled_holo_light.png
│ ├── abcp__btn_check_off_holo_light.png
│ ├── abcp__btn_check_on_disabled_holo_light.png
│ ├── abcp__btn_default_disabled_holo_dark.9.png
│ ├── abcp__btn_default_disabled_holo_light.9.png
│ ├── abcp__btn_default_focused_holo_dark.9.png
│ ├── abcp__btn_default_focused_holo_light.9.png
│ ├── abcp__btn_default_normal_holo_dark.9.png
│ ├── abcp__btn_default_normal_holo_light.9.png
│ ├── abcp__btn_radio_off_disabled_focused_holo_light.png
│ ├── abcp__btn_radio_off_disabled_holo_light.png
│ ├── abcp__btn_radio_on_disabled_focused_holo_light.png
│ ├── abcp__btn_radio_on_disabled_holo_light.png
│ ├── abcp__expander_close_holo_light.9.png
│ ├── abcp__expander_open_holo_light.9.png
│ ├── abcp__progress_bg_holo_light.9.png
│ ├── abcp__spinner_16_inner_holo.png
│ ├── abcp__spinner_16_outer_holo.png
│ ├── abcp__spinner_76_inner_holo.png
│ ├── abcp__spinner_76_outer_holo.png
│ ├── abcp__textfield_default_holo_light.9.png
│ ├── abcp__textfield_disabled_focused_holo_light.9.png
│ ├── abcp__textfield_disabled_holo_light.9.png
│ ├── abcp__textfield_multiline_default_holo_light.9.png
│ ├── abcp__textfield_multiline_disabled_focused_holo_light.9.png
│ ├── abcp__textfield_multiline_disabled_holo_light.9.png
│ ├── abcp_pink__ab_transparent_light_holo.9.png
│ ├── abcp_pink__btn_check_off_disabled_focused_holo_light.png
│ ├── abcp_pink__btn_check_off_focused_holo_light.png
│ ├── abcp_pink__btn_check_off_pressed_holo_light.png
│ ├── abcp_pink__btn_check_on_disabled_focused_holo_light.png
│ ├── abcp_pink__btn_check_on_focused_holo_light.png
│ ├── abcp_pink__btn_check_on_holo_light.png
│ ├── abcp_pink__btn_check_on_pressed_holo_light.png
│ ├── abcp_pink__btn_default_disabled_focused_holo_dark.9.png
│ ├── abcp_pink__btn_default_disabled_focused_holo_light.9.png
│ ├── abcp_pink__btn_default_focused_holo_dark.9.png
│ ├── abcp_pink__btn_default_focused_holo_light.9.png
│ ├── abcp_pink__btn_default_pressed_holo_dark.9.png
│ ├── abcp_pink__btn_default_pressed_holo_light.9.png
│ ├── abcp_pink__btn_radio_off_focused_holo_light.png
│ ├── abcp_pink__btn_radio_off_holo_light.png
│ ├── abcp_pink__btn_radio_off_pressed_holo_light.png
│ ├── abcp_pink__btn_radio_on_focused_holo_light.png
│ ├── abcp_pink__btn_radio_on_holo_light.png
│ ├── abcp_pink__btn_radio_on_pressed_holo_light.png
│ ├── abcp_pink__cab_background_bottom_holo_light.9.png
│ ├── abcp_pink__cab_background_top_holo_light.9.png
│ ├── abcp_pink__list_focused_holo.9.png
│ ├── abcp_pink__list_longpressed_holo.9.png
│ ├── abcp_pink__list_pressed_holo_light.9.png
│ ├── abcp_pink__progress_primary_holo_light.9.png
│ ├── abcp_pink__progress_secondary_holo_light.9.png
│ ├── abcp_pink__progressbar_indeterminate_holo1.png
│ ├── abcp_pink__progressbar_indeterminate_holo2.png
│ ├── abcp_pink__progressbar_indeterminate_holo3.png
│ ├── abcp_pink__progressbar_indeterminate_holo4.png
│ ├── abcp_pink__progressbar_indeterminate_holo5.png
│ ├── abcp_pink__progressbar_indeterminate_holo6.png
│ ├── abcp_pink__progressbar_indeterminate_holo7.png
│ ├── abcp_pink__progressbar_indeterminate_holo8.png
│ ├── abcp_pink__scrubber_control_disabled_holo.png
│ ├── abcp_pink__scrubber_control_focused_holo.png
│ ├── abcp_pink__scrubber_control_normal_holo.png
│ ├── abcp_pink__scrubber_control_pressed_holo.png
│ ├── abcp_pink__scrubber_primary_holo.9.png
│ ├── abcp_pink__scrubber_secondary_holo.9.png
│ ├── abcp_pink__scrubber_track_holo_light.9.png
│ ├── abcp_pink__spinner_ab_focused_holo_light.9.png
│ ├── abcp_pink__spinner_ab_pressed_holo_light.9.png
│ ├── abcp_pink__spinner_focused_holo_light.9.png
│ ├── abcp_pink__spinner_pressed_holo_light.9.png
│ ├── abcp_pink__textfield_activated_holo_light.9.png
│ ├── abcp_pink__textfield_focused_holo_light.9.png
│ ├── abcpex_pink__btn_default_normal_holo_dark.9.png
│ ├── abcpex_pink__btn_default_normal_holo_light.9.png
│ ├── addfs_bg.9.png
│ ├── addfs_bg_p.9.png
│ ├── appex__card_background.9.png
│ ├── appex__card_hover.9.png
│ ├── appex__large_card_background.9.png
│ ├── base_action_bar_back_divider.png
│ ├── base_send_normal.png
│ ├── base_send_pressed.png
│ ├── bili_gray_semi_circle_left.png
│ ├── bili_gray_semi_circle_right.png
│ ├── bili_player_back_button.png
│ ├── bili_player_danmaku_is_closed.png
│ ├── bili_player_danmaku_is_open.png
│ ├── bili_player_play_can_pause.png
│ ├── bili_player_play_can_play.png
│ ├── bili_player_seekbar_thumb.png
│ ├── biz_news_detail_back_normal.png
│ ├── biz_news_detaila_action_bar_bg.png
│ ├── biz_pics_ic_back_normal.png
│ ├── biz_pics_ic_back_pressed.png
│ ├── btn_hot_bg.png
│ ├── btn_hot_normal_bg.9.png
│ ├── btn_hot_normal_bg_p.9.png
│ ├── btn_rank_bg.png
│ ├── btn_rank_normal_bg.9.png
│ ├── btn_rank_normal_bg_p.9.png
│ ├── c1.jpg
│ ├── c10.jpg
│ ├── c2.jpg
│ ├── c3.jpg
│ ├── c4.jpg
│ ├── c5.jpg
│ ├── c6.jpg
│ ├── c7.jpg
│ ├── c8.jpg
│ ├── c9.jpg
│ ├── default_ptr_flip.png
│ ├── default_ptr_rotate.png
│ ├── hxzj_gamecenter_smallbanner.jpg
│ ├── ic_action_download_manager.png
│ ├── ic_action_myfollow_icon.png
│ ├── ic_ar_16_9_inside.png
│ ├── ic_ar_4_3_inside.png
│ ├── ic_ar_adjust_screen.png
│ ├── ic_ar_adjust_video.png
│ ├── ic_arrow_right.png
│ ├── ic_brightness_2.png
│ ├── ic_btn_av_cancel_chroma_normal.png
│ ├── ic_btn_av_cancel_disabled.png
│ ├── ic_btn_av_download_chroma_normal.png
│ ├── ic_btn_av_download_disabled.png
│ ├── ic_btn_av_play_chroma_normal.png
│ ├── ic_btn_av_play_disabled.png
│ ├── ic_btn_left_user_id_block.png
│ ├── ic_btn_left_user_id_block_disabled.png
│ ├── ic_btn_player_danmaku_input_options_color_checked.png
│ ├── ic_cate_animation.png
│ ├── ic_cate_bangumi.png
│ ├── ic_cate_dance.png
│ ├── ic_cate_entertainment.png
│ ├── ic_cate_game.png
│ ├── ic_cate_hot.png
│ ├── ic_cate_kichiku.png
│ ├── ic_cate_live.png
│ ├── ic_cate_movie.png
│ ├── ic_cate_music.png
│ ├── ic_cate_placehold.png
│ ├── ic_cate_ranks.png
│ ├── ic_cate_science.png
│ ├── ic_cate_tv.png
│ ├── ic_emoji.png
│ ├── ic_feedback_good.png
│ ├── ic_gift.png
│ ├── ic_gift_disabled.png
│ ├── ic_info_danmakus.png
│ ├── ic_info_views.png
│ ├── ic_launcher.png
│ ├── ic_logo.png
│ ├── ic_media_info.png
│ ├── ic_new_tips.png
│ ├── ic_options_ban.png
│ ├── ic_player_danmaku_block_options_colorful.png
│ ├── ic_player_danmaku_block_options_tourist.png
│ ├── ic_player_danmaku_input_more_color.png
│ ├── ic_player_danmaku_input_options_bottom_type.png
│ ├── ic_player_danmaku_input_options_bottom_type_checked.png
│ ├── ic_player_danmaku_input_options_medium_textsize.png
│ ├── ic_player_danmaku_input_options_medium_textsize_checked.png
│ ├── ic_player_danmaku_input_options_rl_type.png
│ ├── ic_player_danmaku_input_options_rl_type_checked.png
│ ├── ic_player_danmaku_input_options_small_textsize.png
│ ├── ic_player_danmaku_input_options_small_textsize_checked.png
│ ├── ic_player_danmaku_input_options_top_type.png
│ ├── ic_player_danmaku_input_options_top_type_checked.png
│ ├── ic_player_locked_2.png
│ ├── ic_player_options_item_right.png
│ ├── ic_player_options_menu.png
│ ├── ic_player_options_radio_off.png
│ ├── ic_player_options_radio_on.png
│ ├── ic_player_options_switch_off.png
│ ├── ic_player_options_switch_on.png
│ ├── ic_player_pannel_close.png
│ ├── ic_player_tips_close.png
│ ├── ic_player_unlock_2.png
│ ├── ic_send_danmaku.png
│ ├── ic_special_favorites.png
│ ├── ic_user_block_checked_off.png
│ ├── ic_user_block_checked_on.png
│ ├── ic_volume_2.png
│ ├── ica_light_ic_action_chat.png
│ ├── ica_light_ic_action_collection.png
│ ├── ica_light_ic_action_discard.png
│ ├── ica_light_ic_action_download.png
│ ├── ica_light_ic_action_edit.png
│ ├── ica_light_ic_action_important.png
│ ├── ica_light_ic_action_play.png
│ ├── ica_light_ic_action_previous_item.png
│ ├── ica_light_ic_action_refresh.png
│ ├── ica_light_ic_action_search.png
│ ├── ica_light_ic_action_settings.png
│ ├── ica_light_ic_action_share.png
│ ├── ica_light_ic_action_time.png
│ ├── img_bh2.png
│ ├── indicator_arrow.png
│ ├── mediacontroller_bg.png
│ ├── mediacontroller_btn_bg.xml
│ ├── mediacontroller_lock.png
│ ├── mediacontroller_next.png
│ ├── mediacontroller_pause.png
│ ├── mediacontroller_play.png
│ ├── mediacontroller_previous.png
│ ├── mediacontroller_screen_fit.png
│ ├── mediacontroller_screen_size.png
│ ├── mediacontroller_snapshot.png
│ ├── mediacontroller_sreen_size_100.png
│ ├── mediacontroller_sreen_size_crop.png
│ ├── mediacontroller_unlock.png
│ ├── mlk.jpg
│ ├── newyear_default_banner_2015.png
│ ├── special_tips.png
│ ├── sso_icon_arrow.png
│ ├── top_banner_android.png
│ ├── umeng_socialize_switchbutton_bottom.png
│ ├── umeng_socialize_switchbutton_btn_pressed.png
│ ├── umeng_socialize_switchbutton_btn_unpressed.png
│ ├── umeng_socialize_switchbutton_frame.png
│ ├── umeng_socialize_switchbutton_mask.png
│ ├── umeng_socialize_switchimage_choose.png
│ ├── umeng_socialize_switchimage_unchoose.png
│ ├── video_brightness_bg.png
│ ├── video_download_rate.png
│ ├── video_more.png
│ ├── video_num_bg.png
│ ├── video_num_front.png
│ ├── video_volumn_bg.png
│ ├── w.jpg
│ ├── wcat_list.jpg
│ └── xwy_list.jpg
│ ├── drawable-xxxhdpi
│ ├── ic_launcher.png
│ └── mz_smartbar_background.9.png
│ ├── drawable
│ ├── back_btn.xml
│ ├── base_action_bar_action_more_selector.xml
│ ├── base_empty_view.png
│ ├── base_loading_large_icon.png
│ ├── base_tabpager_indicator_selected.9.png
│ ├── card_background.xml
│ ├── comment_btn.xml
│ ├── corner.xml
│ ├── dot_focused.xml
│ ├── dot_normal.xml
│ ├── focus_show.xml
│ ├── home_bg_checked.png
│ ├── home_bg_normal.png
│ ├── home_btn_bg.xml
│ ├── image_corner.xml
│ ├── list_selector.xml
│ ├── normal_show.xml
│ ├── progressbar_large.xml
│ ├── selector_tabtext.xml
│ ├── shadow_article.png
│ ├── tab_indicator.xml
│ └── vpi__tab_indicator.xml
│ ├── layout
│ ├── activity_main.xml
│ ├── activity_video.xml
│ ├── activity_video_info.xml
│ ├── area_item.xml
│ ├── back_head.xml
│ ├── banner.xml
│ ├── bili_videoview.xml
│ ├── bili_webview.xml
│ ├── bili_webview_head.xml
│ ├── brightness_volumn.xml
│ ├── card_layout.xml
│ ├── donghua_tab.xml
│ ├── fragment_donghua.xml
│ ├── fragment_gamecenter.xml
│ ├── fragment_homepage.xml
│ ├── fragment_main.xml
│ ├── fragment_online.xml
│ ├── fragment_online_item.xml
│ ├── fragment_subarea.xml
│ ├── fragment_videoinfo.xml
│ ├── game_list_item.xml
│ ├── homepage_item.xml
│ ├── item.xml
│ ├── items_list.xml
│ ├── main_head.xml
│ ├── mediacontroller.xml
│ ├── video_info_list_item.xml
│ ├── video_list_item.xml
│ └── videoview.xml
│ ├── menu
│ ├── main.xml
│ └── menu_main.xml
│ ├── mipmap-hdpi
│ └── ic_launcher.png
│ ├── mipmap-mdpi
│ └── ic_launcher.png
│ ├── mipmap-xhdpi
│ └── ic_launcher.png
│ ├── mipmap-xxhdpi
│ └── ic_launcher.png
│ ├── raw
│ └── comments.xml
│ ├── values-w820dp
│ └── dimens.xml
│ └── values
│ ├── attrs.xml
│ ├── colors.xml
│ ├── dimens.xml
│ ├── integers.xml
│ ├── strings.xml
│ ├── styles.xml
│ ├── vpi__attrs.xml
│ ├── vpi__colors.xml
│ ├── vpi__defaults.xml
│ └── vpi__styles.xml
├── build.gradle
├── build
└── intermediates
│ ├── dex-cache
│ └── cache.xml
│ ├── lint-cache
│ ├── api-versions-6-22.bin
│ ├── typos-de.txt-2.bin
│ ├── typos-en.txt-2.bin
│ ├── typos-es.txt-2.bin
│ ├── typos-hu.txt-2.bin
│ ├── typos-it.txt-2.bin
│ ├── typos-nb.txt-2.bin
│ ├── typos-pt.txt-2.bin
│ └── typos-tr.txt-2.bin
│ └── model_data.bin
├── gradle.properties
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── local.properties
└── settings.gradle
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
4 | # Custom for Visual Studio
5 | *.cs diff=csharp
6 |
7 | # Standard to msysgit
8 | *.doc diff=astextplain
9 | *.DOC diff=astextplain
10 | *.docx diff=astextplain
11 | *.DOCX diff=astextplain
12 | *.dot diff=astextplain
13 | *.DOT diff=astextplain
14 | *.pdf diff=astextplain
15 | *.PDF diff=astextplain
16 | *.rtf diff=astextplain
17 | *.RTF diff=astextplain
18 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Windows image file caches
2 | Thumbs.db
3 | ehthumbs.db
4 |
5 | # Folder config file
6 | Desktop.ini
7 |
8 | # Recycle Bin used on file shares
9 | $RECYCLE.BIN/
10 |
11 | # Windows Installer files
12 | *.cab
13 | *.msi
14 | *.msm
15 | *.msp
16 |
17 | # Windows shortcuts
18 | *.lnk
19 |
20 | # =========================
21 | # Operating System Files
22 | # =========================
23 |
24 | # OSX
25 | # =========================
26 |
27 | .DS_Store
28 | .AppleDouble
29 | .LSOverride
30 |
31 | # Thumbnails
32 | ._*
33 |
34 | # Files that might appear on external disk
35 | .Spotlight-V100
36 | .Trashes
37 |
38 | # Directories potentially created on remote AFP share
39 | .AppleDB
40 | .AppleDesktop
41 | Network Trash Folder
42 | Temporary Items
43 | .apdisk
44 |
--------------------------------------------------------------------------------
/.gradle/2.2.1/taskArtifacts/cache.properties:
--------------------------------------------------------------------------------
1 | #Mon May 25 14:28:55 CST 2015
2 |
--------------------------------------------------------------------------------
/.gradle/2.2.1/taskArtifacts/cache.properties.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/.gradle/2.2.1/taskArtifacts/cache.properties.lock
--------------------------------------------------------------------------------
/.gradle/2.2.1/taskArtifacts/fileHashes.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/.gradle/2.2.1/taskArtifacts/fileHashes.bin
--------------------------------------------------------------------------------
/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/.gradle/2.2.1/taskArtifacts/fileSnapshots.bin
--------------------------------------------------------------------------------
/.gradle/2.2.1/taskArtifacts/outputFileStates.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/.gradle/2.2.1/taskArtifacts/outputFileStates.bin
--------------------------------------------------------------------------------
/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/.gradle/2.2.1/taskArtifacts/taskArtifacts.bin
--------------------------------------------------------------------------------
/.idea/.name:
--------------------------------------------------------------------------------
1 | BilibiliClient
--------------------------------------------------------------------------------
/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/.idea/inspectionProfiles/Project_Default.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/.idea/inspectionProfiles/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/.idea/libraries/appcompat_v7_22_1_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/.idea/libraries/jsoup_1_8_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/.idea/libraries/multidex_1_0_0.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/.idea/libraries/support_annotations_22_1_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/.idea/libraries/support_v4_22_1_1.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/.idea/libraries/universal_image_loader_1_9_3.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/.idea/scopes/scope_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/apk/bb.apk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/apk/bb.apk
--------------------------------------------------------------------------------
/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/app/libs/jsoup-1.8.1.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/libs/jsoup-1.8.1.jar
--------------------------------------------------------------------------------
/app/libs/universal-image-loader-1.9.3.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/libs/universal-image-loader-1.9.3.jar
--------------------------------------------------------------------------------
/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in D:\as\sdk-install/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class name to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
18 |
--------------------------------------------------------------------------------
/app/src/androidTest/java/com/cjj/bb/ApplicationTest.java:
--------------------------------------------------------------------------------
1 | package com.cjj.bb;
2 |
3 | import android.app.Application;
4 | import android.test.ApplicationTestCase;
5 |
6 | /**
7 | * Testing Fundamentals
8 | */
9 | public class ApplicationTest extends ApplicationTestCase {
10 | public ApplicationTest() {
11 | super(Application.class);
12 | }
13 | }
--------------------------------------------------------------------------------
/app/src/main/java/com/cjj/bb/fragment/BroadcastTimetableFragment.java:
--------------------------------------------------------------------------------
1 | package com.cjj.bb.fragment;
2 |
3 | import android.support.v4.app.Fragment;
4 |
5 | public class BroadcastTimetableFragment extends Fragment{
6 |
7 | }
8 |
--------------------------------------------------------------------------------
/app/src/main/java/com/cjj/bb/fragment/FragmentLogin.java:
--------------------------------------------------------------------------------
1 | package com.cjj.bb.fragment;
2 |
3 | import android.os.Bundle;
4 | import android.support.annotation.Nullable;
5 | import android.support.v4.app.Fragment;
6 | import android.view.LayoutInflater;
7 | import android.view.View;
8 | import android.view.ViewGroup;
9 | import android.widget.ImageView;
10 |
11 | import com.cjj.bb.R;
12 |
13 | /**
14 | * Created by Administrator on 2015/5/26.
15 | */
16 | public class FragmentLogin extends Fragment {
17 |
18 | @Nullable
19 | @Override
20 | public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
21 |
22 | ImageView iv = new ImageView(getActivity());
23 | iv.setImageResource(R.drawable.login);
24 | return iv;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/app/src/main/java/com/cjj/bb/fragment/FramentTime.java:
--------------------------------------------------------------------------------
1 | package com.cjj.bb.fragment;
2 |
3 | import android.os.Bundle;
4 | import android.support.annotation.Nullable;
5 | import android.support.v4.app.Fragment;
6 | import android.view.LayoutInflater;
7 | import android.view.View;
8 | import android.view.ViewGroup;
9 | import android.widget.ImageView;
10 |
11 | import com.cjj.bb.R;
12 |
13 | /**
14 | * Created by Administrator on 2015/5/26.
15 | */
16 | public class FramentTime extends Fragment {
17 |
18 | @Nullable
19 | @Override
20 | public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
21 | ImageView iv = new ImageView(getActivity());
22 | iv.setImageResource(R.drawable.time);
23 | return iv;
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/app/src/main/java/com/cjj/bb/fragment/PersonCenterFragment.java:
--------------------------------------------------------------------------------
1 | package com.cjj.bb.fragment;
2 |
3 | import android.support.v4.app.Fragment;
4 |
5 | public class PersonCenterFragment extends Fragment{
6 |
7 | }
8 |
--------------------------------------------------------------------------------
/app/src/main/java/com/cjj/bb/fragment/RelevantVideoFragment.java:
--------------------------------------------------------------------------------
1 | package com.cjj.bb.fragment;
2 |
3 | import android.support.v4.app.Fragment;
4 |
5 | public class RelevantVideoFragment extends Fragment{
6 |
7 | }
8 |
--------------------------------------------------------------------------------
/app/src/main/java/com/cjj/bb/model/AreaItem.java:
--------------------------------------------------------------------------------
1 | package com.cjj.bb.model;
2 |
3 | public class AreaItem {
4 | private int img; //图标
5 | private String text; //文字
6 | public int getImg() {
7 | return img;
8 | }
9 | public void setImg(int img) {
10 | this.img = img;
11 | }
12 | public String getText() {
13 | return text;
14 | }
15 | public void setText(String text) {
16 | this.text = text;
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/app/src/main/java/com/cjj/bb/model/GameItem.java:
--------------------------------------------------------------------------------
1 | package com.cjj.bb.model;
2 |
3 | public class GameItem {
4 | private int img; //图标
5 | private String text; //文字
6 | private String path; //网址
7 | public int getImg() {
8 | return img;
9 | }
10 | public void setImg(int img) {
11 | this.img = img;
12 | }
13 | public String getText() {
14 | return text;
15 | }
16 | public void setText(String text) {
17 | this.text = text;
18 | }
19 | public String getPath() {
20 | return path;
21 | }
22 | public void setPath(String path) {
23 | this.path = path;
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/app/src/main/java/com/cjj/bb/model/Page.java:
--------------------------------------------------------------------------------
1 | package com.cjj.bb.model;
2 |
3 | /**
4 | * 页面实体类
5 | *
6 | * @author wwj_748
7 | * @date 2014/8/9
8 | */
9 | public class Page {
10 | private int page = 1; // 记录页面数
11 | public boolean contentFirstPage = true; // 内容第一页
12 |
13 | // 设置开始页面
14 | public void setPageStart() {
15 | page = 2;
16 | }
17 |
18 | // 设置页
19 | public void setPage(int num) {
20 | page = num;
21 | }
22 |
23 | // 获取当前页
24 | public String getCurrentPage() {
25 | return page + "";
26 | }
27 |
28 | // 添加页面
29 | public void addPage() {
30 | page++;
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/app/src/main/java/viewpagerindicator/IconPagerAdapter.java:
--------------------------------------------------------------------------------
1 | package viewpagerindicator;
2 |
3 | public interface IconPagerAdapter {
4 | /**
5 | * Get icon representing the page at {@code index} in the adapter.
6 | */
7 | int getIconResId(int index);
8 |
9 | // From PagerAdapter
10 | int getCount();
11 | }
12 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/bili_anim.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/anim/push_no.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ab_bottom_solid_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ab_bottom_solid_light_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_ab_back_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_ab_back_holo_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_ab_back_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_ab_back_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_cab_done_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_cab_done_holo_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_cab_done_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_cab_done_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_clear_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_clear_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_clear_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_clear_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_clear_search_api_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_clear_search_api_disabled_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_clear_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_clear_search_api_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_commit_search_api_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_commit_search_api_holo_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_commit_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_commit_search_api_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_go.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_go.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_go_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_go_search_api_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_menu_share_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_menu_share_holo_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_menu_share_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_menu_share_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_search.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_search_api_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_voice_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_voice_search.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_ic_voice_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_ic_voice_search_api_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_textfield_search_default_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_textfield_search_default_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_textfield_search_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_textfield_search_default_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_textfield_search_right_default_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_textfield_search_right_default_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abc_textfield_search_right_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abc_textfield_search_right_default_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp__btn_check_off_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp__btn_check_off_disabled_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp__btn_check_off_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp__btn_check_off_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp__btn_check_on_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp__btn_check_on_disabled_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp__btn_radio_off_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp__btn_radio_off_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp__btn_radio_off_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp__btn_radio_off_disabled_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp__btn_radio_on_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp__btn_radio_on_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp__btn_radio_on_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp__btn_radio_on_disabled_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp__spinner_16_inner_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp__spinner_16_inner_holo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp__spinner_16_outer_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp__spinner_16_outer_holo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp__spinner_76_inner_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp__spinner_76_inner_holo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp__spinner_76_outer_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp__spinner_76_outer_holo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp__textfield_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp__textfield_default_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp__textfield_disabled_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp__textfield_disabled_focused_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp__textfield_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp__textfield_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp__textfield_multiline_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp__textfield_multiline_default_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp__textfield_multiline_disabled_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp__textfield_multiline_disabled_focused_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp__textfield_multiline_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp__textfield_multiline_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__ab_transparent_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__ab_transparent_light_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_check_off_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_check_off_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_check_off_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_check_off_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_check_off_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_check_off_pressed_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_check_on_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_check_on_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_check_on_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_check_on_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_check_on_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_check_on_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_check_on_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_check_on_pressed_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_default_disabled_focused_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_default_disabled_focused_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_default_disabled_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_default_disabled_focused_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_default_focused_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_default_focused_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_default_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_default_focused_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_default_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_default_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_default_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_default_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_radio_off_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_radio_off_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_radio_off_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_radio_off_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_radio_off_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_radio_off_pressed_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_radio_on_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_radio_on_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_radio_on_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_radio_on_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__btn_radio_on_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__btn_radio_on_pressed_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__cab_background_bottom_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__cab_background_bottom_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__cab_background_top_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__cab_background_top_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__list_focused_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__progress_primary_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__progress_primary_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__progress_secondary_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__progress_secondary_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__progressbar_indeterminate_holo1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__progressbar_indeterminate_holo1.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__progressbar_indeterminate_holo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__progressbar_indeterminate_holo2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__progressbar_indeterminate_holo3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__progressbar_indeterminate_holo3.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__progressbar_indeterminate_holo4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__progressbar_indeterminate_holo4.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__progressbar_indeterminate_holo5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__progressbar_indeterminate_holo5.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__progressbar_indeterminate_holo6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__progressbar_indeterminate_holo6.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__progressbar_indeterminate_holo7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__progressbar_indeterminate_holo7.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__progressbar_indeterminate_holo8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__progressbar_indeterminate_holo8.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__scrubber_control_disabled_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__scrubber_control_disabled_holo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__scrubber_control_focused_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__scrubber_control_focused_holo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__scrubber_control_normal_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__scrubber_control_normal_holo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__scrubber_control_pressed_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__scrubber_control_pressed_holo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__spinner_ab_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__spinner_ab_focused_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__spinner_ab_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__spinner_ab_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__spinner_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__spinner_focused_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__spinner_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__spinner_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__textfield_activated_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__textfield_activated_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcp_pink__textfield_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcp_pink__textfield_focused_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcpex_pink__btn_default_normal_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcpex_pink__btn_default_normal_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/abcpex_pink__btn_default_normal_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/abcpex_pink__btn_default_normal_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/addfs_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/addfs_bg.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/addfs_bg_p.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/addfs_bg_p.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/appex__card_background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/appex__card_background.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/appex__card_hover.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/appex__card_hover.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/base_action_bar_action_more_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/base_action_bar_action_more_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/base_action_bar_action_more_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/base_action_bar_action_more_pressed.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/base_list_divider_drawable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/base_list_divider_drawable.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_anim_tv_chan_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_anim_tv_chan_1.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_anim_tv_chan_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_anim_tv_chan_3.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_anim_tv_chan_5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_anim_tv_chan_5.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_anim_tv_chan_7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_anim_tv_chan_7.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_anim_tv_chan_9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_anim_tv_chan_9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_default_avatar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_default_avatar.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_default_image_tv_9p.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_default_image_tv_9p.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_default_image_tv_with_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_default_image_tv_with_bg.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_gray_semi_circle_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_gray_semi_circle_left.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_gray_semi_circle_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_gray_semi_circle_right.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_list_divider.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_list_divider.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_login_invalid_captcha.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_login_invalid_captcha.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_main_banner_bottom_shadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_main_banner_bottom_shadow.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_search_edit_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_search_edit_background.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_secomment_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_secomment_bg.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_tab_label_bg_selected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_tab_label_bg_selected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_tab_label_bg_unselected.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_tab_label_bg_unselected.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_texture_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_texture_1.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_timeline_clock_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_timeline_clock_0.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_timeline_clock_1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_timeline_clock_1.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_timeline_clock_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_timeline_clock_2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_timeline_clock_3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_timeline_clock_3.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_timeline_clock_4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_timeline_clock_4.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_timeline_clock_5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_timeline_clock_5.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_timeline_clock_6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_timeline_clock_6.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_timeline_clock_7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_timeline_clock_7.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/bili_timeline_group_background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/bili_timeline_group_background.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/color_gray_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/color_gray_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/color_pink.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/color_pink.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/color_red.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/color_red.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/default_ptr_flip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/default_ptr_flip.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/default_ptr_rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/default_ptr_rotate.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dialog_bg_click.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/dialog_bg_click.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dialog_bg_normal.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/dialog_bg_normal.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dialog_cut_line.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/dialog_cut_line.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dialog_split_h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/dialog_split_h.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/dialog_split_v.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/dialog_split_v.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/head_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/head_bg.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_action_bar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_action_bar.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_action_download_manager.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_action_download_manager.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_action_myfollow_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_action_myfollow_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_action_play_store.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_action_play_store.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_ar_16_9_crop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_ar_16_9_crop.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_ar_4_3_crop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_ar_4_3_crop.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_brightness.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_brightness.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_clear_danmaku.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_clear_danmaku.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_confirm_send.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_confirm_send.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_download_start.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_download_start.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_download_stop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_download_stop.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_feedback_good.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_feedback_good.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_file.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_folder.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_logo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_mp4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_mp4.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_sdcard_color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_sdcard_color.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_sdcard_gray.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_sdcard_gray.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ic_volume.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ic_volume.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ica_light_ic_action_chat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ica_light_ic_action_chat.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ica_light_ic_action_collection.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ica_light_ic_action_collection.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ica_light_ic_action_discard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ica_light_ic_action_discard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ica_light_ic_action_download.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ica_light_ic_action_download.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ica_light_ic_action_edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ica_light_ic_action_edit.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ica_light_ic_action_important.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ica_light_ic_action_important.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ica_light_ic_action_play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ica_light_ic_action_play.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ica_light_ic_action_previous_item.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ica_light_ic_action_previous_item.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ica_light_ic_action_refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ica_light_ic_action_refresh.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ica_light_ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ica_light_ic_action_search.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ica_light_ic_action_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ica_light_ic_action_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ica_light_ic_action_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ica_light_ic_action_share.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/ica_light_ic_action_time.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/ica_light_ic_action_time.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/indicator_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/indicator_arrow.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/login.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/login.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/phiz.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/phiz.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/player_battery_charging_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/player_battery_charging_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/player_battery_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/player_battery_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/player_battery_red_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/player_battery_red_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/popup_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/popup_bg.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/refresh.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/refresh.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/refresh_push.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/refresh_push.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/special_tips.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/special_tips.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/stat_sys_battery_0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/stat_sys_battery_0.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/stat_sys_battery_100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/stat_sys_battery_100.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/stat_sys_battery_15.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/stat_sys_battery_15.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/stat_sys_battery_28.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/stat_sys_battery_28.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/stat_sys_battery_43.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/stat_sys_battery_43.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/stat_sys_battery_57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/stat_sys_battery_57.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/stat_sys_battery_71.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/stat_sys_battery_71.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/stat_sys_battery_85.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/stat_sys_battery_85.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/stat_sys_battery_charge_anim0.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/stat_sys_battery_charge_anim0.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/stat_sys_battery_charge_anim100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/stat_sys_battery_charge_anim100.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/stat_sys_battery_charge_anim15.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/stat_sys_battery_charge_anim15.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/stat_sys_battery_charge_anim28.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/stat_sys_battery_charge_anim28.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/stat_sys_battery_charge_anim43.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/stat_sys_battery_charge_anim43.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/stat_sys_battery_charge_anim57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/stat_sys_battery_charge_anim57.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/stat_sys_battery_charge_anim71.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/stat_sys_battery_charge_anim71.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/stat_sys_battery_charge_anim85.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/stat_sys_battery_charge_anim85.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/time.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/time.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/title.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/title.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/title_background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/title_background.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_socialize_light_bar_bg_pad.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/umeng_socialize_light_bar_bg_pad.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_socialize_nav_bar_bg_pad.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/umeng_socialize_nav_bar_bg_pad.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_socialize_oauth_check_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/umeng_socialize_oauth_check_off.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_socialize_oauth_check_on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/umeng_socialize_oauth_check_on.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_socialize_share_music.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/umeng_socialize_share_music.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_socialize_share_pic.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/umeng_socialize_share_pic.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_socialize_share_video.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/umeng_socialize_share_video.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/umeng_update_btn_check_off_pressed_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/umeng_update_btn_check_on_pressed_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_update_close_bg_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/umeng_update_close_bg_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/umeng_update_close_bg_tap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/umeng_update_close_bg_tap.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/vpi__tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/vpi__tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/vpi__tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/vpi__tab_selected_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/vpi__tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/vpi__tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/vpi__tab_unselected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/vpi__tab_unselected_focused_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/vpi__tab_unselected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/vpi__tab_unselected_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-hdpi/vpi__tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-hdpi/vpi__tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/vpi__tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-mdpi/vpi__tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/vpi__tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-mdpi/vpi__tab_selected_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/vpi__tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-mdpi/vpi__tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/vpi__tab_unselected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-mdpi/vpi__tab_unselected_focused_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/vpi__tab_unselected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-mdpi/vpi__tab_unselected_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-mdpi/vpi__tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-mdpi/vpi__tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_ab_back_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_ab_back_holo_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_ab_back_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_ab_back_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_cab_done_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_cab_done_holo_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_cab_done_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_cab_done_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_clear_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_clear_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_clear_search_api_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_clear_search_api_disabled_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_clear_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_clear_search_api_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_commit_search_api_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_commit_search_api_holo_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_commit_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_commit_search_api_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_go.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_go.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_go_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_go_search_api_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_menu_share_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_menu_share_holo_dark.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_menu_share_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_menu_share_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_search.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_search_api_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_voice_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_voice_search.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_ic_voice_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_ic_voice_search_api_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_spinner_ab_default_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_spinner_ab_default_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_spinner_ab_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_spinner_ab_default_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_spinner_ab_focused_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_spinner_ab_focused_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_spinner_ab_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_spinner_ab_focused_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_textfield_search_default_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_textfield_search_default_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_textfield_search_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_textfield_search_default_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_textfield_search_right_default_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_textfield_search_right_default_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_textfield_search_right_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_textfield_search_right_default_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_textfield_search_selected_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_textfield_search_selected_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abc_textfield_search_selected_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abc_textfield_search_selected_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__btn_check_off_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__btn_check_off_disabled_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__btn_check_off_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__btn_check_off_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__btn_check_on_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__btn_check_on_disabled_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__btn_default_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__btn_default_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__btn_default_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__btn_default_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__btn_default_focused_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__btn_default_focused_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__btn_default_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__btn_default_focused_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__btn_default_normal_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__btn_default_normal_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__btn_default_normal_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__btn_default_normal_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__btn_radio_off_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__btn_radio_off_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__btn_radio_off_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__btn_radio_off_disabled_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__btn_radio_on_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__btn_radio_on_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__btn_radio_on_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__btn_radio_on_disabled_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__expander_close_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__expander_close_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__expander_open_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__expander_open_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__progress_bg_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__progress_bg_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__spinner_16_inner_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__spinner_16_inner_holo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__spinner_16_outer_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__spinner_16_outer_holo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__spinner_76_inner_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__spinner_76_inner_holo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__spinner_76_outer_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__spinner_76_outer_holo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__textfield_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__textfield_default_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__textfield_disabled_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__textfield_disabled_focused_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__textfield_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__textfield_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__textfield_multiline_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__textfield_multiline_default_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__textfield_multiline_disabled_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__textfield_multiline_disabled_focused_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp__textfield_multiline_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp__textfield_multiline_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__ab_transparent_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__ab_transparent_light_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_check_off_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_check_off_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_check_off_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_check_off_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_check_off_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_check_off_pressed_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_check_on_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_check_on_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_check_on_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_check_on_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_check_on_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_check_on_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_check_on_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_check_on_pressed_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_default_disabled_focused_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_default_disabled_focused_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_default_disabled_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_default_disabled_focused_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_default_focused_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_default_focused_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_default_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_default_focused_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_default_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_default_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_default_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_default_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_radio_off_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_radio_off_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_radio_off_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_radio_off_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_radio_off_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_radio_off_pressed_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_radio_on_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_radio_on_focused_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_radio_on_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_radio_on_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__btn_radio_on_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__btn_radio_on_pressed_holo_light.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__cab_background_bottom_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__cab_background_bottom_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__cab_background_top_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__cab_background_top_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__list_focused_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__progress_primary_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__progress_primary_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__progress_secondary_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__progress_secondary_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__progressbar_indeterminate_holo1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__progressbar_indeterminate_holo1.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__progressbar_indeterminate_holo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__progressbar_indeterminate_holo2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__progressbar_indeterminate_holo3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__progressbar_indeterminate_holo3.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__progressbar_indeterminate_holo4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__progressbar_indeterminate_holo4.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__progressbar_indeterminate_holo5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__progressbar_indeterminate_holo5.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__progressbar_indeterminate_holo6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__progressbar_indeterminate_holo6.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__progressbar_indeterminate_holo7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__progressbar_indeterminate_holo7.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__progressbar_indeterminate_holo8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__progressbar_indeterminate_holo8.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__scrubber_control_disabled_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__scrubber_control_disabled_holo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__scrubber_control_focused_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__scrubber_control_focused_holo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__scrubber_control_normal_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__scrubber_control_normal_holo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__scrubber_control_pressed_holo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__scrubber_control_pressed_holo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__scrubber_primary_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__scrubber_primary_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__scrubber_secondary_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__scrubber_secondary_holo.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__scrubber_track_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__scrubber_track_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__spinner_ab_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__spinner_ab_focused_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__spinner_ab_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__spinner_ab_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__spinner_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__spinner_focused_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__spinner_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__spinner_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__textfield_activated_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__textfield_activated_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcp_pink__textfield_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcp_pink__textfield_focused_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcpex_pink__btn_default_normal_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcpex_pink__btn_default_normal_holo_dark.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/abcpex_pink__btn_default_normal_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/abcpex_pink__btn_default_normal_holo_light.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/addfs_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/addfs_bg.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/addfs_bg_p.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/addfs_bg_p.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/appex__card_background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/appex__card_background.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/appex__card_hover.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/appex__card_hover.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/appex__large_card_background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/appex__large_card_background.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/base_action_bar_back_divider.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/base_action_bar_back_divider.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/base_send_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/base_send_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/base_send_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/base_send_pressed.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/bili_gray_semi_circle_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/bili_gray_semi_circle_left.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/bili_gray_semi_circle_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/bili_gray_semi_circle_right.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/bili_player_back_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/bili_player_back_button.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/bili_player_danmaku_is_closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/bili_player_danmaku_is_closed.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/bili_player_danmaku_is_open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/bili_player_danmaku_is_open.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/bili_player_play_can_pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/bili_player_play_can_pause.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/bili_player_play_can_play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/bili_player_play_can_play.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/bili_player_seekbar_thumb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/bili_player_seekbar_thumb.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/biz_news_detail_back_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/biz_news_detail_back_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/biz_news_detaila_action_bar_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/biz_news_detaila_action_bar_bg.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/biz_pics_ic_back_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/biz_pics_ic_back_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/biz_pics_ic_back_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/biz_pics_ic_back_pressed.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/btn_hot_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/btn_hot_bg.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/btn_hot_normal_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/btn_hot_normal_bg.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/btn_hot_normal_bg_p.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/btn_hot_normal_bg_p.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/btn_rank_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/btn_rank_bg.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/btn_rank_normal_bg.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/btn_rank_normal_bg.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/btn_rank_normal_bg_p.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/btn_rank_normal_bg_p.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/c1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/c1.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/c10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/c10.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/c2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/c2.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/c3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/c3.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/c4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/c4.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/c5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/c5.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/c6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/c6.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/c7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/c7.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/c8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/c8.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/c9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/c9.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/default_ptr_flip.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/default_ptr_flip.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/default_ptr_rotate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/default_ptr_rotate.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/hxzj_gamecenter_smallbanner.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/hxzj_gamecenter_smallbanner.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_action_download_manager.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_action_download_manager.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_action_myfollow_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_action_myfollow_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_ar_16_9_inside.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_ar_16_9_inside.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_ar_4_3_inside.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_ar_4_3_inside.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_ar_adjust_screen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_ar_adjust_screen.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_ar_adjust_video.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_ar_adjust_video.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_arrow_right.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_brightness_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_brightness_2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_btn_av_cancel_chroma_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_btn_av_cancel_chroma_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_btn_av_cancel_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_btn_av_cancel_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_btn_av_download_chroma_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_btn_av_download_chroma_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_btn_av_download_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_btn_av_download_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_btn_av_play_chroma_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_btn_av_play_chroma_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_btn_av_play_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_btn_av_play_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_btn_left_user_id_block.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_btn_left_user_id_block.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_btn_left_user_id_block_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_btn_left_user_id_block_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_btn_player_danmaku_input_options_color_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_btn_player_danmaku_input_options_color_checked.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_cate_animation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_cate_animation.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_cate_bangumi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_cate_bangumi.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_cate_dance.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_cate_dance.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_cate_entertainment.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_cate_entertainment.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_cate_game.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_cate_game.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_cate_hot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_cate_hot.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_cate_kichiku.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_cate_kichiku.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_cate_live.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_cate_live.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_cate_movie.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_cate_movie.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_cate_music.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_cate_music.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_cate_placehold.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_cate_placehold.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_cate_ranks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_cate_ranks.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_cate_science.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_cate_science.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_cate_tv.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_cate_tv.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_emoji.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_emoji.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_feedback_good.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_feedback_good.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_gift.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_gift.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_gift_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_gift_disabled.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_info_danmakus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_info_danmakus.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_info_views.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_info_views.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_logo.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_media_info.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_media_info.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_new_tips.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_new_tips.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_options_ban.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_options_ban.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_danmaku_block_options_colorful.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_danmaku_block_options_colorful.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_danmaku_block_options_tourist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_danmaku_block_options_tourist.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_more_color.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_more_color.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_bottom_type.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_bottom_type.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_bottom_type_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_bottom_type_checked.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_medium_textsize.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_medium_textsize.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_medium_textsize_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_medium_textsize_checked.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_rl_type.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_rl_type.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_rl_type_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_rl_type_checked.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_small_textsize.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_small_textsize.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_small_textsize_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_small_textsize_checked.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_top_type.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_top_type.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_top_type_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_danmaku_input_options_top_type_checked.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_locked_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_locked_2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_options_item_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_options_item_right.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_options_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_options_menu.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_options_radio_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_options_radio_off.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_options_radio_on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_options_radio_on.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_options_switch_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_options_switch_off.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_options_switch_on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_options_switch_on.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_pannel_close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_pannel_close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_tips_close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_tips_close.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_player_unlock_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_player_unlock_2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_send_danmaku.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_send_danmaku.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_special_favorites.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_special_favorites.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_user_block_checked_off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_user_block_checked_off.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_user_block_checked_on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_user_block_checked_on.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ic_volume_2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ic_volume_2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ica_light_ic_action_chat.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ica_light_ic_action_chat.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ica_light_ic_action_collection.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ica_light_ic_action_collection.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ica_light_ic_action_discard.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ica_light_ic_action_discard.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ica_light_ic_action_download.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ica_light_ic_action_download.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ica_light_ic_action_edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ica_light_ic_action_edit.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ica_light_ic_action_important.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ica_light_ic_action_important.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ica_light_ic_action_play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ica_light_ic_action_play.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ica_light_ic_action_previous_item.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ica_light_ic_action_previous_item.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ica_light_ic_action_refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ica_light_ic_action_refresh.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ica_light_ic_action_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ica_light_ic_action_search.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ica_light_ic_action_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ica_light_ic_action_settings.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ica_light_ic_action_share.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ica_light_ic_action_share.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/ica_light_ic_action_time.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/ica_light_ic_action_time.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/img_bh2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/img_bh2.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/indicator_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/indicator_arrow.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/mediacontroller_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/mediacontroller_bg.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/mediacontroller_btn_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/mediacontroller_lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/mediacontroller_lock.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/mediacontroller_next.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/mediacontroller_next.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/mediacontroller_pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/mediacontroller_pause.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/mediacontroller_play.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/mediacontroller_play.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/mediacontroller_previous.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/mediacontroller_previous.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/mediacontroller_screen_fit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/mediacontroller_screen_fit.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/mediacontroller_screen_size.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/mediacontroller_screen_size.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/mediacontroller_snapshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/mediacontroller_snapshot.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/mediacontroller_sreen_size_100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/mediacontroller_sreen_size_100.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/mediacontroller_sreen_size_crop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/mediacontroller_sreen_size_crop.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/mediacontroller_unlock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/mediacontroller_unlock.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/mlk.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/mlk.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/newyear_default_banner_2015.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/newyear_default_banner_2015.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/special_tips.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/special_tips.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/sso_icon_arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/sso_icon_arrow.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/top_banner_android.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/top_banner_android.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/umeng_socialize_switchbutton_bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/umeng_socialize_switchbutton_bottom.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/umeng_socialize_switchbutton_btn_pressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/umeng_socialize_switchbutton_btn_pressed.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/umeng_socialize_switchbutton_btn_unpressed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/umeng_socialize_switchbutton_btn_unpressed.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/umeng_socialize_switchbutton_frame.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/umeng_socialize_switchbutton_frame.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/umeng_socialize_switchbutton_mask.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/umeng_socialize_switchbutton_mask.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/umeng_socialize_switchimage_choose.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/umeng_socialize_switchimage_choose.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/umeng_socialize_switchimage_unchoose.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/umeng_socialize_switchimage_unchoose.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/video_brightness_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/video_brightness_bg.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/video_download_rate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/video_download_rate.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/video_more.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/video_more.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/video_num_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/video_num_bg.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/video_num_front.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/video_num_front.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/video_volumn_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/video_volumn_bg.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/w.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/w.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/wcat_list.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/wcat_list.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xhdpi/xwy_list.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xhdpi/xwy_list.jpg
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable-xxxhdpi/mz_smartbar_background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable-xxxhdpi/mz_smartbar_background.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/back_btn.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
8 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/base_action_bar_action_more_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/base_empty_view.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable/base_empty_view.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/base_loading_large_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable/base_loading_large_icon.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/base_tabpager_indicator_selected.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable/base_tabpager_indicator_selected.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/comment_btn.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
7 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/corner.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/dot_focused.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/dot_normal.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/focus_show.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
11 |
15 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/home_bg_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable/home_bg_checked.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/home_bg_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable/home_bg_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/home_btn_bg.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/image_corner.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
11 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/list_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/normal_show.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
11 |
15 |
16 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/progressbar_large.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/selector_tabtext.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/shadow_article.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/drawable/shadow_article.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/tab_indicator.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_video_info.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/donghua_tab.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
9 |
10 |
15 |
16 |
21 |
22 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/fragment_gamecenter.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/videoview.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
11 |
12 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/main.xml:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/menu/menu_main.xml:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 | 64dp
9 |
10 |
11 |
--------------------------------------------------------------------------------
/app/src/main/res/values/attrs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/app/src/main/res/values/integers.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 2
4 |
5 |
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:1.1.0'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | jcenter()
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/build/intermediates/lint-cache/api-versions-6-22.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/build/intermediates/lint-cache/api-versions-6-22.bin
--------------------------------------------------------------------------------
/build/intermediates/lint-cache/typos-de.txt-2.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/build/intermediates/lint-cache/typos-de.txt-2.bin
--------------------------------------------------------------------------------
/build/intermediates/lint-cache/typos-en.txt-2.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/build/intermediates/lint-cache/typos-en.txt-2.bin
--------------------------------------------------------------------------------
/build/intermediates/lint-cache/typos-es.txt-2.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/build/intermediates/lint-cache/typos-es.txt-2.bin
--------------------------------------------------------------------------------
/build/intermediates/lint-cache/typos-hu.txt-2.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/build/intermediates/lint-cache/typos-hu.txt-2.bin
--------------------------------------------------------------------------------
/build/intermediates/lint-cache/typos-it.txt-2.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/build/intermediates/lint-cache/typos-it.txt-2.bin
--------------------------------------------------------------------------------
/build/intermediates/lint-cache/typos-nb.txt-2.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/build/intermediates/lint-cache/typos-nb.txt-2.bin
--------------------------------------------------------------------------------
/build/intermediates/lint-cache/typos-pt.txt-2.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/build/intermediates/lint-cache/typos-pt.txt-2.bin
--------------------------------------------------------------------------------
/build/intermediates/lint-cache/typos-tr.txt-2.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/build/intermediates/lint-cache/typos-tr.txt-2.bin
--------------------------------------------------------------------------------
/build/intermediates/model_data.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/build/intermediates/model_data.bin
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/android-cjj/BiliClient/9e55e1cffdedd4d4c7b79284544336b82550e742/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Apr 10 15:27:10 PDT 2013
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-2.2.1-all.zip
7 |
--------------------------------------------------------------------------------
/local.properties:
--------------------------------------------------------------------------------
1 | ## This file is automatically generated by Android Studio.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file should *NOT* be checked into Version Control Systems,
5 | # as it contains information specific to your local configuration.
6 | #
7 | # Location of the SDK. This is only used by Gradle.
8 | # For customization when using a Version Control System, please read the
9 | # header note.
10 | sdk.dir=D\:\\as\\sdk-install
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app',':vitamio',':DanmakuFlameMaster'
2 |
--------------------------------------------------------------------------------