├── app ├── .gitignore └── src │ └── main │ └── res │ ├── values │ ├── strings.xml │ └── colors.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png ├── baselibrary ├── .gitignore └── src │ └── main │ ├── assets │ ├── demo.txt │ ├── demo.mp3 │ ├── txt │ │ └── demo.txt │ ├── demoapk.apk │ ├── img │ │ └── demo1.png │ ├── mp3 │ │ └── demo.mp3 │ ├── apks │ │ └── demoapk.apk │ └── DINCond-Regular.ttf │ ├── res │ ├── raw │ │ ├── demo.mp3 │ │ ├── ring1.mp3 │ │ ├── ring2.mp3 │ │ └── ring3.mp3 │ ├── drawable-hdpi │ │ ├── dwl.png │ │ ├── clear.png │ │ ├── img00.jpg │ │ ├── img01.jpg │ │ ├── img02.jpg │ │ ├── img03.jpg │ │ ├── shop1.jpg │ │ ├── shop2.jpg │ │ ├── shop3.jpg │ │ ├── shop4.jpg │ │ ├── shop5.jpg │ │ ├── shop6.jpg │ │ ├── zwsj.png │ │ ├── add_icon.png │ │ ├── car_add.png │ │ ├── cloudy.png │ │ ├── heart_on.png │ │ ├── ic_right.png │ │ ├── m_img1.png │ │ ├── m_img2.png │ │ ├── rm_icon.png │ │ ├── search.png │ │ ├── star_off.png │ │ ├── star_on.png │ │ ├── thumb_on.png │ │ ├── tuoyuan.png │ │ ├── heart_off.png │ │ ├── reback_top.png │ │ ├── thumb_off.png │ │ ├── fm_close_btn.png │ │ ├── fm_top_icon.png │ │ ├── ic_empty_icon.png │ │ ├── ic_fab_done.png │ │ ├── ic_launcher.png │ │ ├── ic_ring_alarm.png │ │ ├── ic_ring_exit.png │ │ ├── ic_ring_sound.png │ │ ├── ic_zhaoliying.png │ │ ├── mostly_cloudy.png │ │ ├── partly_cloudy.png │ │ ├── search_clear.png │ │ ├── toast_frame.9.png │ │ ├── animation_img1.png │ │ ├── animation_img2.png │ │ ├── animation_img3.png │ │ ├── evaluate_normal.png │ │ ├── evaluate_press.png │ │ ├── fm_main_search.png │ │ ├── ic_errnet_icon.png │ │ ├── ic_web_title_bg.png │ │ ├── network_loading.png │ │ ├── periodic_clouds.png │ │ ├── header_background.png │ │ ├── ic_star_black_24dp.png │ │ ├── smartbar_back_icon.png │ │ ├── smartbar_home_icon.png │ │ ├── ic_check_white_48dp.png │ │ ├── ic_clear_white_48dp.png │ │ ├── ic_close_black_24dp.png │ │ ├── ic_loading_white1_01.png │ │ ├── ic_loading_white1_02.png │ │ ├── ic_loading_white1_03.png │ │ ├── ic_loading_white1_04.png │ │ ├── ic_loading_white1_05.png │ │ ├── ic_loading_white1_06.png │ │ ├── ic_loading_white1_07.png │ │ ├── ic_loading_white1_08.png │ │ ├── ic_loading_white1_09.png │ │ ├── ic_loading_white1_10.png │ │ ├── ic_loading_white1_11.png │ │ ├── ic_loading_white1_12.png │ │ ├── ic_share_white_24dp.png │ │ ├── network_loading_new.png │ │ ├── splash_dot_press_but.png │ │ ├── common_search_right_pic.png │ │ ├── ic_ring_notifications.png │ │ ├── ic_shopping_black_24dp.png │ │ ├── menu_shop_car_selected.png │ │ ├── splash_dot_normal_but.png │ │ ├── ic_arrow_back_black_24dp.png │ │ ├── ic_star_border_black_24dp.png │ │ ├── ic_error_outline_white_48dp.png │ │ ├── ic_info_outline_white_48dp.png │ │ ├── ic_comment_text_outline_black_24dp.png │ │ └── ic_weather_partlycloudy_black_24dp.png │ ├── mipmap-hdpi │ │ ├── bird.jpg │ │ ├── cat.jpg │ │ ├── dog.jpg │ │ ├── buy_icon.png │ │ ├── drag_icon.png │ │ ├── reset_icon.png │ │ ├── ic_launcher.png │ │ ├── databinding_img.png │ │ ├── image_add_nor.png │ │ ├── image_add_sel.png │ │ └── ic_launcher_round.png │ ├── drawable-nodpi │ │ ├── pisa.png │ │ ├── rome.png │ │ ├── london.png │ │ ├── paris.png │ │ ├── new_york.png │ │ └── washington.png │ ├── drawable │ │ ├── toast_frame.9.png │ │ ├── ic_def_loading.9.png │ │ ├── btn_cancle.xml │ │ ├── btn_settings.xml │ │ ├── ok_tanchuang_normal.xml │ │ ├── ok_tanchuang_press.xml │ │ ├── ok_fillet_shape_button_normal.xml │ │ ├── ok_fillet_shape_button_press.xml │ │ ├── shape_alert_view.xml │ │ ├── my_cursor.xml │ │ ├── download_shape_dialog_bg.xml │ │ └── notice_dialog_bg.xml │ ├── drawable-ldpi │ │ └── toast_frame.9.png │ ├── drawable-mdpi │ │ ├── toast_frame.9.png │ │ ├── ic_check_white_48dp.png │ │ ├── ic_clear_white_48dp.png │ │ ├── ic_error_outline_white_48dp.png │ │ └── ic_info_outline_white_48dp.png │ ├── drawable-xhdpi │ │ ├── toast_frame.9.png │ │ ├── ic_check_white_48dp.png │ │ ├── ic_clear_white_48dp.png │ │ ├── network_loading_new.png │ │ ├── ic_warning_white_48dp.png │ │ ├── ic_warning_outline_white.png │ │ ├── ic_error_outline_white_48dp.png │ │ └── ic_info_outline_white_48dp.png │ ├── drawable-xxhdpi │ │ ├── toast_frame.9.png │ │ ├── ic_check_white_48dp.png │ │ ├── ic_clear_white_48dp.png │ │ ├── ic_info_outline_white_48dp.png │ │ └── ic_error_outline_white_48dp.png │ └── drawable-xxxhdpi │ │ ├── ic_check_white_48dp.png │ │ ├── ic_clear_white_48dp.png │ │ ├── ic_error_outline_white_48dp.png │ │ └── ic_info_outline_white_48dp.png │ └── java │ └── com │ └── haier │ └── cellarette │ └── baselibrary │ ├── recycleviewmultitype │ └── readme │ ├── loading │ └── OnkeyBackDestoryLoadingListener.java │ └── recycleviewalluses │ └── readme ├── biz ├── biz-mz │ ├── .gitignore │ └── src │ │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ └── AndroidManifest.xml ├── biz-demo1 │ ├── .gitignore │ └── src │ │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ └── AndroidManifest.xml ├── biz-demo2 │ ├── .gitignore │ └── src │ │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ └── AndroidManifest.xml ├── biz-pollorder │ ├── .gitignore │ └── src │ │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── haier │ │ └── biz │ │ └── pollorder │ │ └── ReadMe.java ├── biz-identification │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ └── values │ │ └── strings.xml └── biz-wine-management │ ├── .gitignore │ └── src │ └── main │ ├── res │ └── values │ │ └── strings.xml │ └── AndroidManifest.xml ├── biz2 ├── biz2-phone-demo1 │ ├── .gitignore │ └── src │ │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ └── AndroidManifest.xml └── biz2-phone-pay-wx2 │ ├── .gitignore │ └── src │ └── main │ ├── res │ └── values │ │ └── strings.xml │ └── AndroidManifest.xml ├── commonlibs ├── libglide37 │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ ├── values │ │ ├── strings.xml │ │ └── colors.xml │ │ └── drawable-hdpi │ │ ├── ic_launcher.png │ │ └── ic_clear_white_48dp.png ├── libglide47 │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ ├── drawable │ │ ├── gif_robot_walk.gif │ │ └── ic_def_loading.9.png │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ └── strings.xml ├── libglin │ ├── .gitignore │ └── src │ │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── example │ │ └── shining │ │ └── libglin │ │ └── Test.java ├── libmvp │ ├── .gitignore │ └── src │ │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── haier │ │ └── cellarette │ │ └── libmvp │ │ └── readme.java ├── libutils │ ├── .gitignore │ └── src │ │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── haier │ │ └── cellarette │ │ └── libutils │ │ ├── Test.java │ │ └── utilslib │ │ └── jiami.zip ├── libwebview │ ├── .gitignore │ └── src │ │ └── main │ │ ├── res │ │ ├── values │ │ │ └── strings.xml │ │ ├── drawable-xhdpi │ │ │ ├── ic_web_back.png │ │ │ └── ic_web_close.png │ │ └── drawable-mdpi │ │ │ └── ic_web_title_bg.png │ │ └── assets │ │ └── demo │ │ └── web.html ├── libretrofit │ ├── .gitignore │ └── src │ │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ └── AndroidManifest.xml ├── libvariants │ ├── .gitignore │ └── src │ │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ └── AndroidManifest.xml ├── libupdateapputils │ ├── .gitignore │ ├── doc │ │ ├── flowsheet.jpg │ │ └── ._flowsheet.jpg │ └── src │ │ └── main │ │ └── res │ │ └── drawable-xxhdpi │ │ └── update_bg.png └── librararyforfileprovdider │ └── .gitignore ├── otherlibs ├── imagepicker │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ ├── mipmap-xxhdpi │ │ ├── grid_camera.png │ │ ├── checkbox_normal.png │ │ ├── text_indicator.png │ │ └── checkbox_checked.png │ │ ├── xml │ │ └── provider_paths.xml │ │ ├── drawable │ │ ├── bg_btn_dis.xml │ │ └── bg_btn_pre.xml │ │ └── anim │ │ └── top_in.xml ├── libgreendao │ ├── .gitignore │ └── src │ │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ └── java │ │ └── com │ │ └── haier │ │ └── greendao │ │ └── readme ├── slbapp-jpush │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ └── values │ │ └── strings.xml ├── slbapp-share │ ├── .gitignore │ └── src │ │ └── main │ │ ├── res │ │ ├── values │ │ │ └── strings.xml │ │ └── drawable-hdpi │ │ │ ├── geek_icon.png │ │ │ ├── jiguang_test_img.png │ │ │ ├── jiguang_socialize_copy.png │ │ │ ├── jiguang_socialize_qq.png │ │ │ ├── jiguang_socialize_sina.png │ │ │ ├── jiguang_socialize_qzone.png │ │ │ ├── jiguang_socialize_wechat.png │ │ │ ├── jiguang_socialize_copyurl.png │ │ │ ├── jiguang_socialize_cp_link.png │ │ │ ├── jiguang_socialize_facebook.png │ │ │ ├── jiguang_socialize_messenger.png │ │ │ ├── jiguang_socialize_twitter.png │ │ │ ├── jiguang_socialize_wxcircle.png │ │ │ ├── jiguang_socialize_wxfavorite.png │ │ │ └── jiguang_socialize_menu_default.png │ │ └── assets │ │ ├── apks │ │ └── 1.apk │ │ └── img │ │ └── geek_icon.png ├── jiaozivideoplayer │ ├── .gitignore │ └── src │ │ └── main │ │ ├── res │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ └── ids.xml │ │ ├── drawable │ │ │ ├── jz_bottom_bg.9.png │ │ │ └── jz_title_bg.9.png │ │ ├── drawable-xhdpi │ │ │ ├── jz_enlarge.png │ │ │ ├── jz_shrink.png │ │ │ ├── jz_add_volume.png │ │ │ ├── jz_loading_bg.png │ │ │ ├── jz_back_normal.png │ │ │ ├── jz_back_pressed.png │ │ │ ├── jz_backward_icon.png │ │ │ ├── jz_close_volume.png │ │ │ ├── jz_error_normal.png │ │ │ ├── jz_error_pressed.png │ │ │ ├── jz_forward_icon.png │ │ │ ├── jz_pause_normal.png │ │ │ ├── jz_pause_pressed.png │ │ │ ├── jz_play_normal.png │ │ │ ├── jz_play_pressed.png │ │ │ ├── jz_share_normal.png │ │ │ ├── jz_share_pressed.png │ │ │ ├── jz_volume_icon.png │ │ │ ├── jz_restart_normal.png │ │ │ ├── jz_restart_pressed.png │ │ │ ├── jz_back_tiny_normal.png │ │ │ ├── jz_back_tiny_pressed.png │ │ │ ├── jz_battery_level_10.png │ │ │ ├── jz_battery_level_100.png │ │ │ ├── jz_battery_level_30.png │ │ │ ├── jz_battery_level_50.png │ │ │ ├── jz_battery_level_70.png │ │ │ ├── jz_battery_level_90.png │ │ │ ├── jz_brightness_video.png │ │ │ └── jz_clarity_popwindow_bg.9.png │ │ └── drawable-xxhdpi │ │ │ └── jz_clarity_popwindow_bg.9.png │ │ └── AndroidManifest.xml ├── slbapp-statistics │ ├── .gitignore │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── slbappstatistics │ │ │ └── readme │ │ └── res │ │ └── values │ │ └── strings.xml └── libraryglide37sinayulan │ ├── src │ └── main │ │ └── res │ │ ├── values │ │ └── strings.xml │ │ ├── drawable │ │ └── icon_download.png │ │ ├── drawable-hdpi │ │ ├── ic_action_close.png │ │ └── icon_download_new.png │ │ ├── drawable-mdpi │ │ ├── ic_action_close.png │ │ └── icon_download_new.png │ │ ├── drawable-xhdpi │ │ ├── ic_action_close.png │ │ └── icon_download_new.png │ │ └── drawable-xxhdpi │ │ ├── ic_action_close.png │ │ └── icon_download_new.png │ └── .gitignore ├── sailubanone ├── slbapp │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ ├── values │ │ └── strings.xml │ │ └── drawable │ │ └── icon.png ├── slbapp-index │ ├── .gitignore │ └── src │ │ └── main │ │ ├── assets │ │ ├── readme.txt │ │ └── mp4 │ │ │ ├── a.mp4 │ │ │ └── b.mp4 │ │ ├── res │ │ └── drawable-hdpi │ │ │ ├── starter.png │ │ │ ├── icon_arrow.png │ │ │ ├── icon_back.png │ │ │ ├── slb_about.png │ │ │ ├── slb_back.png │ │ │ ├── slb_fankui.png │ │ │ ├── slb_icon.jpg │ │ │ ├── videoplay.png │ │ │ ├── slb_setting.png │ │ │ ├── fragment2_edit.png │ │ │ ├── ic_index_back.png │ │ │ ├── slb_left_back.png │ │ │ ├── control_pobiji_mofen_normal.png │ │ │ ├── control_pobiji_mofen_select.png │ │ │ ├── control_pobiji_reyin_normal.png │ │ │ ├── control_pobiji_reyin_select.png │ │ │ ├── control_pobiji_guoshu_normal.png │ │ │ ├── control_pobiji_guoshu_select.png │ │ │ ├── control_pobiji_lengyin_normal.png │ │ │ ├── control_pobiji_lengyin_select.png │ │ │ ├── control_pobiji_jiangliao_normal.png │ │ │ └── control_pobiji_jiangliao_select.png │ │ └── java │ │ └── com │ │ └── example │ │ └── slbappindex │ │ └── fragment │ │ └── fragment2 │ │ └── fragmentliebiao │ │ └── act.java ├── slbapp-login │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ └── drawable-hdpi │ │ ├── checkbox1.png │ │ ├── checkbox2.png │ │ ├── wjmm_tel.png │ │ ├── eyes_icon_close.png │ │ ├── eyes_icon_open.png │ │ ├── ic_login_back.png │ │ └── share_wechat_solid.png ├── slbapp-splash │ ├── .gitignore │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── slbappsplash │ │ │ └── readme │ │ └── res │ │ ├── values │ │ └── strings.xml │ │ ├── drawable │ │ └── starter.png │ │ └── drawable-hdpi │ │ ├── guid1.png │ │ ├── guid2.png │ │ ├── guid3.png │ │ ├── guid4.png │ │ ├── guid1_text.png │ │ ├── guid2_text.png │ │ ├── guid3_text.png │ │ ├── guid4_text.png │ │ ├── ic_web_back.png │ │ ├── ic_web_close.png │ │ ├── new_press_dian.png │ │ └── new_normal_dian.png └── slbappreadbook │ ├── .gitignore │ └── src │ └── main │ ├── assets │ ├── readme.txt │ └── mp3 │ │ ├── 111.mp3 │ │ ├── 222.mp3 │ │ ├── 333.mp3 │ │ ├── 444.mp3 │ │ └── 555.mp3 │ └── res │ ├── drawable-xhdpi │ ├── i1.jpg │ ├── i2.jpg │ ├── i5.jpg │ ├── i6.jpg │ ├── img3.jpg │ ├── img5.jpg │ ├── img6.jpg │ ├── img7.jpg │ ├── huiben_back.png │ ├── huiben_play.png │ └── huiben_loading.png │ └── values │ └── strings.xml ├── appjiuzhidao ├── jiuzhidaoapp │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ └── values │ │ └── strings.xml ├── jiuzhidao-dermo1 │ ├── .gitignore │ └── src │ │ └── main │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ └── AndroidManifest.xml └── jiuzhidao-demo │ ├── src │ └── main │ │ ├── res │ │ ├── values │ │ │ └── strings.xml │ │ ├── raw │ │ │ ├── menling.mp3 │ │ │ └── order.mp3 │ │ ├── drawable-hdpi │ │ │ ├── icon.png │ │ │ ├── control_pobiji_mofen_normal.png │ │ │ ├── control_pobiji_mofen_select.png │ │ │ ├── control_pobiji_reyin_normal.png │ │ │ ├── control_pobiji_reyin_select.png │ │ │ ├── control_pobiji_guoshu_normal.png │ │ │ ├── control_pobiji_guoshu_select.png │ │ │ ├── control_pobiji_lengyin_normal.png │ │ │ ├── control_pobiji_lengyin_select.png │ │ │ ├── control_pobiji_jiangliao_normal.png │ │ │ └── control_pobiji_jiangliao_select.png │ │ └── drawable-xhdpi │ │ │ ├── login_background.png │ │ │ └── splash_background.png │ │ └── java │ │ └── com │ │ └── haier │ │ └── cellarette │ │ └── jiuzhidao_demo │ │ └── glinbufen │ │ └── readme.java │ └── .gitignore ├── appphone ├── jiuzhidaophone │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ └── values │ │ └── strings.xml ├── uplus-control │ ├── .gitignore │ └── src │ │ └── main │ │ └── res │ │ └── drawable │ │ ├── wine.jpg │ │ ├── yuan.png │ │ ├── iv_bg.png │ │ ├── ligth_1.png │ │ ├── ligth_2.png │ │ ├── tuoyuan.png │ │ ├── icon_back.png │ │ ├── iv_circle.png │ │ ├── iv_locker.png │ │ ├── jc66_wifi.png │ │ ├── open_eyes.png │ │ ├── wifi_icon.png │ │ ├── xiaxue_17.png │ │ ├── xiaxue_18.png │ │ ├── xiaxue_19.png │ │ ├── xiaxue_20.png │ │ ├── xiaxue_21.png │ │ ├── xiaxue_22.png │ │ ├── xiaxue_23.png │ │ ├── xiaxue_24.png │ │ ├── xiaxue_25.png │ │ ├── xiaxue_26.png │ │ ├── xiaxue_27.png │ │ ├── xiaxue_28.png │ │ ├── xiaxue_29.png │ │ ├── xiaxue_30.png │ │ ├── xiaxue_31.png │ │ ├── xiaxue_32.png │ │ ├── close_eyes.png │ │ ├── light_icon1.png │ │ ├── light_icon2.png │ │ ├── loop_icon1.png │ │ ├── loop_icon2.png │ │ ├── jc66_bind_succ.png │ │ ├── location_icon1.png │ │ └── location_icon2.png ├── jiuzhidaophone-address │ ├── .gitignore │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── haier │ │ │ └── jiuzhidao │ │ │ └── jiuzhidaophone_address │ │ │ └── readme │ │ └── res │ │ ├── mipmap-hdpi │ │ ├── edit_icon.png │ │ ├── icon_arrow.png │ │ ├── icon_back.png │ │ ├── delete_icon.png │ │ ├── ic_launcher.png │ │ ├── address_flush.png │ │ ├── address_group.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png ├── jiuzhidaophone-cart │ ├── .gitignore │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── haier │ │ │ └── cart │ │ │ └── readme │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ └── AndroidManifest.xml ├── jiuzhidaophone-index │ ├── .gitignore │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── haier │ │ │ └── index │ │ │ └── readme │ │ └── res │ │ ├── raw │ │ ├── order.mp3 │ │ └── menling.mp3 │ │ ├── drawable-hdpi │ │ ├── icon.png │ │ ├── iv_bg.png │ │ ├── yuan.png │ │ ├── starter.png │ │ ├── tuoyuan.png │ │ ├── icon_arrow.png │ │ ├── icon_back.png │ │ ├── iv_circle.png │ │ ├── iv_me_top.jpg │ │ ├── icon_celleartte_unbound.png │ │ ├── control_pobiji_mofen_normal.png │ │ ├── control_pobiji_mofen_select.png │ │ ├── control_pobiji_reyin_normal.png │ │ ├── control_pobiji_reyin_select.png │ │ ├── control_pobiji_guoshu_normal.png │ │ ├── control_pobiji_guoshu_select.png │ │ ├── control_pobiji_lengyin_normal.png │ │ ├── control_pobiji_lengyin_select.png │ │ ├── control_pobiji_jiangliao_normal.png │ │ └── control_pobiji_jiangliao_select.png │ │ ├── drawable │ │ ├── puzzle_0.png │ │ ├── common_back.png │ │ ├── common_back_press.png │ │ ├── scan_icon_scanline.png │ │ ├── qrcode_default_scan_line.png │ │ ├── btn_white_transparent_nor.9.png │ │ └── qrcode_default_grid_scan_line.png │ │ ├── values │ │ └── ids.xml │ │ └── drawable-xhdpi │ │ ├── login_background.png │ │ └── splash_background.png ├── jiuzhidaophone-order │ ├── .gitignore │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── haier │ │ │ └── order │ │ │ └── readme │ │ ├── res │ │ └── values │ │ │ └── strings.xml │ │ └── AndroidManifest.xml ├── jiuzhidaophone-pay │ ├── .gitignore │ ├── src │ │ └── main │ │ │ ├── res │ │ │ ├── values │ │ │ │ └── strings.xml │ │ │ └── drawable-hdpi │ │ │ │ ├── msp_icon.png │ │ │ │ ├── msp_demo_title.png │ │ │ │ └── msp_demo_title_bg.png │ │ │ ├── assets │ │ │ └── data.bin │ │ │ ├── jniLibs │ │ │ ├── x86 │ │ │ │ ├── libentryexpro.so │ │ │ │ ├── libuptsmaddon.so │ │ │ │ └── libuptsmaddonmi.so │ │ │ ├── x86_64 │ │ │ │ ├── libentryexpro.so │ │ │ │ ├── libuptsmaddon.so │ │ │ │ └── libuptsmaddonmi.so │ │ │ ├── arm64-v8a │ │ │ │ ├── libentryexpro.so │ │ │ │ ├── libuptsmaddon.so │ │ │ │ └── libuptsmaddonmi.so │ │ │ ├── armeabi │ │ │ │ ├── libentryexpro.so │ │ │ │ ├── libuptsmaddon.so │ │ │ │ └── libuptsmaddonmi.so │ │ │ └── armeabi-v7a │ │ │ │ ├── libentryexpro.so │ │ │ │ ├── libuptsmaddon.so │ │ │ │ └── libuptsmaddonmi.so │ │ │ └── java │ │ │ └── com │ │ │ └── haier │ │ │ └── pay │ │ │ └── Pay.java │ └── libs │ │ ├── UPPayAssistEx.jar │ │ ├── UPPayPluginExPro.jar │ │ └── alipaySdk-20180403.jar ├── jiuzhidaophone-search │ ├── .gitignore │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── haier │ │ │ └── search │ │ │ ├── readme │ │ │ └── view │ │ │ ├── BackCallBack.java │ │ │ └── ICallBack.java │ │ ├── AndroidManifest.xml │ │ └── res │ │ └── drawable │ │ ├── back.png │ │ ├── search.png │ │ ├── search_clear.png │ │ └── shop_search_back_icon.jpg ├── jiuzhidaophone-share │ ├── .gitignore │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── haier │ │ │ └── jiuzhidao │ │ │ └── jiuzhidaophone_share │ │ │ └── readme │ │ ├── res │ │ ├── values │ │ │ └── strings.xml │ │ ├── drawable-xhdpi │ │ │ ├── ssdk_logo.png │ │ │ ├── ssdk_back_arr.png │ │ │ ├── ssdk_title_div.png │ │ │ ├── ssdk_oks_classic_qq.png │ │ │ ├── ssdk_auth_title_back.png │ │ │ ├── ssdk_input_bg_focus.9.png │ │ │ ├── ssdk_oks_classic_line.png │ │ │ ├── ssdk_country_back_arrow.png │ │ │ ├── ssdk_country_cl_divider.png │ │ │ ├── ssdk_country_search_icon.png │ │ │ ├── ssdk_oks_classic_alipay.png │ │ │ ├── ssdk_oks_classic_douban.png │ │ │ ├── ssdk_oks_classic_dropbox.png │ │ │ ├── ssdk_oks_classic_email.png │ │ │ ├── ssdk_oks_classic_flickr.png │ │ │ ├── ssdk_oks_classic_kaixin.png │ │ │ ├── ssdk_oks_classic_laiwang.png │ │ │ ├── ssdk_oks_classic_meipai.png │ │ │ ├── ssdk_oks_classic_mingdao.png │ │ │ ├── ssdk_oks_classic_pocket.png │ │ │ ├── ssdk_oks_classic_qzone.png │ │ │ ├── ssdk_oks_classic_renren.png │ │ │ ├── ssdk_oks_classic_tumblr.png │ │ │ ├── ssdk_oks_classic_twitter.png │ │ │ ├── ssdk_oks_classic_wechat.png │ │ │ ├── ssdk_oks_classic_yixin.png │ │ │ ├── ssdk_oks_classic_youdao.png │ │ │ ├── ssdk_oks_classic_youtube.png │ │ │ ├── ssdk_weibo_empty_failed.png │ │ │ ├── ssdk_country_clear_search.png │ │ │ ├── ssdk_country_sharesdk_icon.png │ │ │ ├── ssdk_oks_classic_bluetooth.png │ │ │ ├── ssdk_oks_classic_dingding.png │ │ │ ├── ssdk_oks_classic_evernote.png │ │ │ ├── ssdk_oks_classic_facebook.png │ │ │ ├── ssdk_oks_classic_instagram.png │ │ │ ├── ssdk_oks_classic_kakaotalk.png │ │ │ ├── ssdk_oks_classic_linkedin.png │ │ │ ├── ssdk_oks_classic_pinterest.png │ │ │ ├── ssdk_oks_classic_sinaweibo.png │ │ │ ├── ssdk_oks_classic_telegram.png │ │ │ ├── ssdk_oks_classic_vkontakte.png │ │ │ ├── ssdk_oks_classic_whatsapp.png │ │ │ ├── ssdk_oks_classic_foursquare.png │ │ │ ├── ssdk_oks_classic_googleplus.png │ │ │ ├── ssdk_oks_classic_instapaper.png │ │ │ ├── ssdk_oks_classic_kakaostory.png │ │ │ ├── ssdk_oks_classic_shortmessage.png │ │ │ ├── ssdk_oks_classic_tencentweibo.png │ │ │ ├── ssdk_oks_classic_yixinmoments.png │ │ │ ├── ssdk_oks_classic_alipaymoments.png │ │ │ ├── ssdk_oks_classic_check_checked.png │ │ │ ├── ssdk_oks_classic_check_default.png │ │ │ ├── ssdk_oks_classic_laiwangmoments.png │ │ │ ├── ssdk_oks_classic_wechatfavorite.png │ │ │ ├── ssdk_oks_classic_wechatmoments.png │ │ │ ├── ssdk_weibo_common_shadow_top.9.png │ │ │ └── ssdk_oks_classic_facebookmessenger.png │ │ └── drawable-hdpi │ │ │ └── ssdk_oks_ptr_ptr.png │ │ └── libs │ │ ├── ShareSDK-QQ-3.1.4.jar │ │ ├── ShareSDK-Core-3.1.4.jar │ │ ├── ShareSDK-Email-3.1.4.jar │ │ ├── ShareSDK-QZone-3.1.4.jar │ │ ├── MobTools-2018.0419.1211.jar │ │ ├── ShareSDK-Wechat-3.1.4.jar │ │ ├── MobCommons-2018.0418.1102.jar │ │ ├── ShareSDK-SinaWeibo-3.1.4.jar │ │ ├── ShareSDK-TencentWeibo-3.1.4.jar │ │ ├── ShareSDK-Wechat-Core-3.1.4.jar │ │ ├── ShareSDK-Wechat-Favorite-3.1.4.jar │ │ └── ShareSDK-Wechat-Moments-3.1.4.jar ├── jiuzhidaophone-splash │ ├── .gitignore │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── haier │ │ │ └── jiuzhidao │ │ │ └── jiuzhidaophone_splash │ │ │ └── readme │ │ └── res │ │ ├── values │ │ └── strings.xml │ │ ├── drawable │ │ └── starter.png │ │ └── drawable-hdpi │ │ ├── guid1.png │ │ ├── guid2.png │ │ ├── guid3.png │ │ ├── guid4.png │ │ ├── guid1_text.png │ │ ├── guid2_text.png │ │ ├── guid3_text.png │ │ ├── guid4_text.png │ │ ├── new_press_dian.png │ │ └── new_normal_dian.png ├── jiuzhidaophone-shopcommon │ ├── .gitignore │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── haier │ │ │ └── shopcommon │ │ │ ├── readme │ │ │ └── jeffery │ │ │ └── view │ │ │ └── searchview │ │ │ └── BackCallBack.java │ │ ├── res │ │ ├── values │ │ │ └── strings.xml │ │ ├── drawable-xxhdpi │ │ │ ├── logoicon.png │ │ │ ├── dialogicon.png │ │ │ ├── zhideimai.png │ │ │ ├── bimaiqingdan.png │ │ │ ├── renqiqianggou.png │ │ │ └── zhengxiangtehui.png │ │ └── drawable │ │ │ ├── cate_list_normal_star.jpg │ │ │ ├── shop_search_back_icon.jpg │ │ │ ├── cate_list_selected_star.jpg │ │ │ ├── shop_cate_cotent_rwine_arrow.jpg │ │ │ ├── shop_cate_list_place_bg.xml │ │ │ └── test_test_bg.xml │ │ └── AndroidManifest.xml └── jiuzhidaophone-usercenter │ ├── .gitignore │ └── src │ └── main │ ├── java │ └── com │ │ └── haier │ │ └── usercenter │ │ └── readme │ └── res │ └── values │ └── strings.xml ├── biz3 └── biz3-slbapp-demo1 │ ├── .gitignore │ └── src │ └── main │ ├── res │ └── values │ │ └── strings.xml │ └── AndroidManifest.xml ├── jshare.jks ├── readme.txt ├── firebox_keystore.jks ├── libsCenter ├── libmvp.aar ├── libglin.aar ├── libutils.aar ├── libglide37.aar ├── libglide47.aar ├── libretrofit.aar ├── libwebview.aar ├── uSDK4.4.04.aar ├── libupdateapputils.aar ├── libvariants_bxn_nation.aar ├── libvariants_bxnt_nation.aar ├── libvariants_bxny_nation.aar └── librararyforfileprovdider.aar ├── otherjar ├── mips │ └── libjcore125.so ├── x86 │ └── libjcore125.so ├── armeabi │ └── libjcore125.so ├── mips64 │ └── libjcore125.so ├── x86_64 │ └── libjcore125.so ├── arm64-v8a │ └── libjcore125.so ├── jcore-android-1.2.5.jar ├── jpush-android-3.1.6.jar ├── jshare-android-1.6.1.jar ├── armeabi-v7a │ └── libjcore125.so ├── jshare-qq-android-1.6.1.jar ├── janalytics-android-1.2.2.jar ├── jshare-sina-android-1.6.1.jar ├── jshare-twitter-android-1.6.1.jar ├── jshare-wechat-android-1.6.1.jar ├── jshare-facebook-android-1.6.1.jar └── jshare-jchatpro-android-1.6.1.jar ├── biz-libs ├── biz-mz_bxn_nation.aar ├── biz-mz_bxnt_nation.aar ├── biz-mz_bxny_nation.aar ├── biz-demo1_bxn_nation.aar ├── biz-demo2_bxn_nation.aar ├── biz-demo1_bxnt_nation.aar ├── biz-demo1_bxny_nation.aar ├── biz-demo2_bxnt_nation.aar ├── biz-demo2_bxny_nation.aar ├── biz-pollorder_bxn_nation.aar ├── biz-pollorder_bxnt_nation.aar ├── biz-pollorder_bxny_nation.aar ├── biz2-phone-demo1_bxn_nation.aar ├── biz2-phone-demo1_bxnt_nation.aar ├── biz2-phone-demo1_bxny_nation.aar ├── biz3-slbapp-demo1_bxn_nation.aar ├── biz-identification_bxn_nation.aar ├── biz-identification_bxnt_nation.aar ├── biz-identification_bxny_nation.aar ├── biz-wine-management_bxn_nation.aar ├── biz2-phone-pay-wx2_bxn_nation.aar ├── biz2-phone-pay-wx2_bxnt_nation.aar ├── biz2-phone-pay-wx2_bxny_nation.aar ├── biz3-slbapp-demo1_bxnt_nation.aar ├── biz3-slbapp-demo1_bxny_nation.aar ├── biz-wine-management_bxnt_nation.aar └── biz-wine-management_bxny_nation.aar └── gradle └── wrapper └── gradle-wrapper.jar /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /baselibrary/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /biz/biz-mz/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /biz/biz-demo1/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /biz/biz-demo2/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /biz/biz-pollorder/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /biz2/biz2-phone-demo1/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /commonlibs/libglide37/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /commonlibs/libglide47/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /commonlibs/libglin/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /commonlibs/libmvp/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /commonlibs/libutils/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /commonlibs/libwebview/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /otherlibs/imagepicker/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /otherlibs/libgreendao/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sailubanone/slbapp/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidaoapp/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /appphone/uplus-control/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /biz/biz-identification/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /biz/biz-wine-management/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /biz2/biz2-phone-pay-wx2/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /biz3/biz3-slbapp-demo1/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /commonlibs/libretrofit/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /commonlibs/libvariants/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /otherlibs/slbapp-jpush/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /otherlibs/slbapp-share/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sailubanone/slbapp-index/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sailubanone/slbapp-login/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sailubanone/slbapp-splash/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-dermo1/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-address/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-cart/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-order/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-search/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-splash/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /commonlibs/libupdateapputils/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /otherlibs/slbapp-statistics/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/assets/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/src/main/assets/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-shopcommon/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-usercenter/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /commonlibs/librararyforfileprovdider/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/java/com/haier/index/readme: -------------------------------------------------------------------------------- 1 | 首页->梁肖 -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-cart/src/main/java/com/haier/cart/readme: -------------------------------------------------------------------------------- 1 | 购物车体系->袁帆 2 | -------------------------------------------------------------------------------- /jshare.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/jshare.jks -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/readme.txt -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-order/src/main/java/com/haier/order/readme: -------------------------------------------------------------------------------- 1 | 订单体系页面->袁帆 2 | -------------------------------------------------------------------------------- /sailubanone/slbapp-splash/src/main/java/com/example/slbappsplash/readme: -------------------------------------------------------------------------------- 1 | 广告页面->马壮 2 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-shopcommon/src/main/java/com/haier/shopcommon/readme: -------------------------------------------------------------------------------- 1 | 商城体系页面->冷正,袁帆 2 | -------------------------------------------------------------------------------- /firebox_keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/firebox_keystore.jks -------------------------------------------------------------------------------- /libsCenter/libmvp.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/libsCenter/libmvp.aar -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-address/src/main/java/com/haier/jiuzhidao/jiuzhidaophone_address/readme: -------------------------------------------------------------------------------- 1 | 地址管理->马壮 -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/java/com/haier/jiuzhidao/jiuzhidaophone_share/readme: -------------------------------------------------------------------------------- 1 | 分享页面->马壮 -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-usercenter/src/main/java/com/haier/usercenter/readme: -------------------------------------------------------------------------------- 1 | 用户登录注册中心体系页面->袁帆,梁肖 2 | -------------------------------------------------------------------------------- /libsCenter/libglin.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/libsCenter/libglin.aar -------------------------------------------------------------------------------- /libsCenter/libutils.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/libsCenter/libutils.aar -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-splash/src/main/java/com/haier/jiuzhidao/jiuzhidaophone_splash/readme: -------------------------------------------------------------------------------- 1 | 广告页面->马壮 2 | -------------------------------------------------------------------------------- /libsCenter/libglide37.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/libsCenter/libglide37.aar -------------------------------------------------------------------------------- /libsCenter/libglide47.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/libsCenter/libglide47.aar -------------------------------------------------------------------------------- /libsCenter/libretrofit.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/libsCenter/libretrofit.aar -------------------------------------------------------------------------------- /libsCenter/libwebview.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/libsCenter/libwebview.aar -------------------------------------------------------------------------------- /libsCenter/uSDK4.4.04.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/libsCenter/uSDK4.4.04.aar -------------------------------------------------------------------------------- /otherjar/mips/libjcore125.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherjar/mips/libjcore125.so -------------------------------------------------------------------------------- /otherjar/x86/libjcore125.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherjar/x86/libjcore125.so -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-search/src/main/java/com/haier/search/readme: -------------------------------------------------------------------------------- 1 | 商城搜索体系页面->冷政(lengzheng@haier-jiuzhidao.com) 2 | -------------------------------------------------------------------------------- /biz-libs/biz-mz_bxn_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz-mz_bxn_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz-mz_bxnt_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz-mz_bxnt_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz-mz_bxny_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz-mz_bxny_nation.aar -------------------------------------------------------------------------------- /otherjar/armeabi/libjcore125.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherjar/armeabi/libjcore125.so -------------------------------------------------------------------------------- /otherjar/mips64/libjcore125.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherjar/mips64/libjcore125.so -------------------------------------------------------------------------------- /otherjar/x86_64/libjcore125.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherjar/x86_64/libjcore125.so -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | jiuzhidao_app 3 | 4 | -------------------------------------------------------------------------------- /baselibrary/src/main/assets/demo.txt: -------------------------------------------------------------------------------- 1 | 大哥 我是正经人哪~ 2 | 大哥 我是正经人哪~ 3 | 大哥 我是正经人哪~ 4 | 大哥 我是正经人哪~ 5 | 大哥 我是正经人哪~ 6 | 大哥 我是正经人哪~~ -------------------------------------------------------------------------------- /biz-libs/biz-demo1_bxn_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz-demo1_bxn_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz-demo2_bxn_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz-demo2_bxn_nation.aar -------------------------------------------------------------------------------- /biz/biz-mz/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | biz-mz 3 | 4 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /libsCenter/libupdateapputils.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/libsCenter/libupdateapputils.aar -------------------------------------------------------------------------------- /otherjar/arm64-v8a/libjcore125.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherjar/arm64-v8a/libjcore125.so -------------------------------------------------------------------------------- /otherjar/jcore-android-1.2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherjar/jcore-android-1.2.5.jar -------------------------------------------------------------------------------- /otherjar/jpush-android-3.1.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherjar/jpush-android-3.1.6.jar -------------------------------------------------------------------------------- /otherjar/jshare-android-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherjar/jshare-android-1.6.1.jar -------------------------------------------------------------------------------- /baselibrary/src/main/assets/demo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/assets/demo.mp3 -------------------------------------------------------------------------------- /baselibrary/src/main/assets/txt/demo.txt: -------------------------------------------------------------------------------- 1 | 大哥 我是正经人哪~ 2 | 大哥 我是正经人哪~ 3 | 大哥 我是正经人哪~ 4 | 大哥 我是正经人哪~ 5 | 大哥 我是正经人哪~ 6 | 大哥 我是正经人哪~~ -------------------------------------------------------------------------------- /biz-libs/biz-demo1_bxnt_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz-demo1_bxnt_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz-demo1_bxny_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz-demo1_bxny_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz-demo2_bxnt_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz-demo2_bxnt_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz-demo2_bxny_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz-demo2_bxny_nation.aar -------------------------------------------------------------------------------- /otherjar/armeabi-v7a/libjcore125.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherjar/armeabi-v7a/libjcore125.so -------------------------------------------------------------------------------- /otherjar/jshare-qq-android-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherjar/jshare-qq-android-1.6.1.jar -------------------------------------------------------------------------------- /baselibrary/src/main/res/raw/demo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/raw/demo.mp3 -------------------------------------------------------------------------------- /baselibrary/src/main/res/raw/ring1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/raw/ring1.mp3 -------------------------------------------------------------------------------- /baselibrary/src/main/res/raw/ring2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/raw/ring2.mp3 -------------------------------------------------------------------------------- /baselibrary/src/main/res/raw/ring3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/raw/ring3.mp3 -------------------------------------------------------------------------------- /biz-libs/biz-pollorder_bxn_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz-pollorder_bxn_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz-pollorder_bxnt_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz-pollorder_bxnt_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz-pollorder_bxny_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz-pollorder_bxny_nation.aar -------------------------------------------------------------------------------- /biz/biz-demo1/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | biz-demo1 3 | 4 | -------------------------------------------------------------------------------- /biz/biz-demo2/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | biz-demo2 3 | 4 | -------------------------------------------------------------------------------- /commonlibs/libglin/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | libglin 3 | 4 | -------------------------------------------------------------------------------- /commonlibs/libmvp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | libmvp 3 | 4 | -------------------------------------------------------------------------------- /libsCenter/libvariants_bxn_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/libsCenter/libvariants_bxn_nation.aar -------------------------------------------------------------------------------- /libsCenter/libvariants_bxnt_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/libsCenter/libvariants_bxnt_nation.aar -------------------------------------------------------------------------------- /libsCenter/libvariants_bxny_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/libsCenter/libvariants_bxny_nation.aar -------------------------------------------------------------------------------- /otherjar/janalytics-android-1.2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherjar/janalytics-android-1.2.2.jar -------------------------------------------------------------------------------- /otherjar/jshare-sina-android-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherjar/jshare-sina-android-1.6.1.jar -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /otherlibs/slbapp-statistics/src/main/java/com/example/slbappstatistics/readme: -------------------------------------------------------------------------------- 1 | https://docs.jiguang.cn/janalytics/client/android_api/ -------------------------------------------------------------------------------- /sailubanone/slbapp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | slbapp 3 | 4 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 酒知道phone 3 | 4 | -------------------------------------------------------------------------------- /baselibrary/src/main/assets/demoapk.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/assets/demoapk.apk -------------------------------------------------------------------------------- /baselibrary/src/main/assets/img/demo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/assets/img/demo1.png -------------------------------------------------------------------------------- /baselibrary/src/main/assets/mp3/demo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/assets/mp3/demo.mp3 -------------------------------------------------------------------------------- /biz-libs/biz2-phone-demo1_bxn_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz2-phone-demo1_bxn_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz2-phone-demo1_bxnt_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz2-phone-demo1_bxnt_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz2-phone-demo1_bxny_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz2-phone-demo1_bxny_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz3-slbapp-demo1_bxn_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz3-slbapp-demo1_bxn_nation.aar -------------------------------------------------------------------------------- /biz/biz-pollorder/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | biz-pollorder 3 | 4 | -------------------------------------------------------------------------------- /commonlibs/libglide37/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | libglide37 3 | 4 | -------------------------------------------------------------------------------- /commonlibs/libutils/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | libutils 3 | 4 | -------------------------------------------------------------------------------- /commonlibs/libwebview/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | libwebview 3 | 4 | -------------------------------------------------------------------------------- /libsCenter/librararyforfileprovdider.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/libsCenter/librararyforfileprovdider.aar -------------------------------------------------------------------------------- /otherjar/jshare-twitter-android-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherjar/jshare-twitter-android-1.6.1.jar -------------------------------------------------------------------------------- /otherjar/jshare-wechat-android-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherjar/jshare-wechat-android-1.6.1.jar -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidaoapp/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 酒知道配送员APP 3 | 4 | -------------------------------------------------------------------------------- /biz-libs/biz-identification_bxn_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz-identification_bxn_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz-identification_bxnt_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz-identification_bxnt_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz-identification_bxny_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz-identification_bxny_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz-wine-management_bxn_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz-wine-management_bxn_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz2-phone-pay-wx2_bxn_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz2-phone-pay-wx2_bxn_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz2-phone-pay-wx2_bxnt_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz2-phone-pay-wx2_bxnt_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz2-phone-pay-wx2_bxny_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz2-phone-pay-wx2_bxny_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz3-slbapp-demo1_bxnt_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz3-slbapp-demo1_bxnt_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz3-slbapp-demo1_bxny_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz3-slbapp-demo1_bxny_nation.aar -------------------------------------------------------------------------------- /biz2/biz2-phone-demo1/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | biz-phone-demo1 3 | 4 | -------------------------------------------------------------------------------- /commonlibs/libretrofit/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | libretrofit 3 | 4 | -------------------------------------------------------------------------------- /commonlibs/libvariants/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | libvariants 3 | 4 | -------------------------------------------------------------------------------- /otherjar/jshare-facebook-android-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherjar/jshare-facebook-android-1.6.1.jar -------------------------------------------------------------------------------- /otherjar/jshare-jchatpro-android-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherjar/jshare-jchatpro-android-1.6.1.jar -------------------------------------------------------------------------------- /otherlibs/libgreendao/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | libgreendao 3 | 4 | -------------------------------------------------------------------------------- /otherlibs/slbapp-jpush/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | slbapp-jpush 3 | 4 | -------------------------------------------------------------------------------- /otherlibs/slbapp-share/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | slbapp-share 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-demo/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | jiuzhidao-demo 3 | 4 | -------------------------------------------------------------------------------- /baselibrary/src/main/assets/apks/demoapk.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/assets/apks/demoapk.apk -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/dwl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/dwl.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/mipmap-hdpi/bird.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/mipmap-hdpi/bird.jpg -------------------------------------------------------------------------------- /baselibrary/src/main/res/mipmap-hdpi/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/mipmap-hdpi/cat.jpg -------------------------------------------------------------------------------- /baselibrary/src/main/res/mipmap-hdpi/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/mipmap-hdpi/dog.jpg -------------------------------------------------------------------------------- /biz-libs/biz-wine-management_bxnt_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz-wine-management_bxnt_nation.aar -------------------------------------------------------------------------------- /biz-libs/biz-wine-management_bxny_nation.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/biz-libs/biz-wine-management_bxny_nation.aar -------------------------------------------------------------------------------- /biz/biz-identification/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | biz-identification 3 | 4 | -------------------------------------------------------------------------------- /biz2/biz2-phone-pay-wx2/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | biz2-phone-pay-wx 3 | 4 | -------------------------------------------------------------------------------- /biz3/biz3-slbapp-demo1/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | biz3-slbapp-demo1 3 | 4 | -------------------------------------------------------------------------------- /commonlibs/libupdateapputils/doc/flowsheet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/commonlibs/libupdateapputils/doc/flowsheet.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-dermo1/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | jiuzhidao-dermo1 3 | 4 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | jiuzhidaophone-pay 3 | 4 | -------------------------------------------------------------------------------- /baselibrary/src/main/assets/DINCond-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/assets/DINCond-Regular.ttf -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/clear.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/img00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/img00.jpg -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/img01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/img01.jpg -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/img02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/img02.jpg -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/img03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/img03.jpg -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/shop1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/shop1.jpg -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/shop2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/shop2.jpg -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/shop3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/shop3.jpg -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/shop4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/shop4.jpg -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/shop5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/shop5.jpg -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/shop6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/shop6.jpg -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/zwsj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/zwsj.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-nodpi/pisa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-nodpi/pisa.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-nodpi/rome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-nodpi/rome.png -------------------------------------------------------------------------------- /biz/biz-wine-management/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | biz-wine-management 3 | 4 | -------------------------------------------------------------------------------- /commonlibs/libupdateapputils/doc/._flowsheet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/commonlibs/libupdateapputils/doc/._flowsheet.jpg -------------------------------------------------------------------------------- /otherlibs/slbapp-statistics/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | slbapp-statistics 3 | 4 | -------------------------------------------------------------------------------- /sailubanone/slbapp-splash/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | jiuzhidaophone-splash 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-cart/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | jiuzhidaophone-cart 3 | 4 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-order/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | jiuzhidaophone-order 3 | 4 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/libs/UPPayAssistEx.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/libs/UPPayAssistEx.jar -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | jiuzhidaophone-share 3 | 4 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-splash/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | jiuzhidaophone-splash 3 | 4 | -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/add_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/add_icon.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/car_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/car_add.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/cloudy.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/heart_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/heart_on.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_right.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/m_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/m_img1.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/m_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/m_img2.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/rm_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/rm_icon.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/search.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/star_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/star_off.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/star_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/star_on.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/thumb_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/thumb_on.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/tuoyuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/tuoyuan.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-nodpi/london.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-nodpi/london.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-nodpi/paris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-nodpi/paris.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable/toast_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable/toast_frame.9.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/mipmap-hdpi/buy_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/mipmap-hdpi/buy_icon.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/mipmap-hdpi/drag_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/mipmap-hdpi/drag_icon.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/mipmap-hdpi/reset_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/mipmap-hdpi/reset_icon.png -------------------------------------------------------------------------------- /biz/biz-demo2/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /commonlibs/libwebview/src/main/assets/demo/web.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/commonlibs/libwebview/src/main/assets/demo/web.html -------------------------------------------------------------------------------- /otherlibs/slbapp-share/src/main/assets/apks/1.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/slbapp-share/src/main/assets/apks/1.apk -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/assets/mp4/a.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/assets/mp4/a.mp4 -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/assets/mp4/b.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/assets/mp4/b.mp4 -------------------------------------------------------------------------------- /sailubanone/slbapp/src/main/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp/src/main/res/drawable/icon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/libs/UPPayPluginExPro.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/libs/UPPayPluginExPro.jar -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/assets/data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/assets/data.bin -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/wine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/wine.jpg -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/yuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/yuan.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/heart_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/heart_off.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/reback_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/reback_top.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/thumb_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/thumb_off.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-nodpi/new_york.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-nodpi/new_york.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /biz/biz-mz/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-demo/src/main/res/raw/menling.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appjiuzhidao/jiuzhidao-demo/src/main/res/raw/menling.mp3 -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-demo/src/main/res/raw/order.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appjiuzhidao/jiuzhidao-demo/src/main/res/raw/order.mp3 -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-cart/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/raw/order.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/raw/order.mp3 -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-order/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/libs/alipaySdk-20180403.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/libs/alipaySdk-20180403.jar -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-shopcommon/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | jiuzhidaophone-shopcommon 3 | 4 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-usercenter/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | jiuzhidaophone-usercenter 3 | 4 | -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/iv_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/iv_bg.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/ligth_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/ligth_1.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/ligth_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/ligth_2.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/tuoyuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/tuoyuan.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/fm_close_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/fm_close_btn.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/fm_top_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/fm_top_icon.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_empty_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_empty_icon.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_fab_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_fab_done.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_ring_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_ring_alarm.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_ring_exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_ring_exit.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_ring_sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_ring_sound.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_zhaoliying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_zhaoliying.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/mostly_cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/mostly_cloudy.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/partly_cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/partly_cloudy.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/search_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/search_clear.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/toast_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/toast_frame.9.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-ldpi/toast_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-ldpi/toast_frame.9.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-mdpi/toast_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-mdpi/toast_frame.9.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-nodpi/washington.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-nodpi/washington.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable/ic_def_loading.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable/ic_def_loading.9.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/mipmap-hdpi/databinding_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/mipmap-hdpi/databinding_img.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/mipmap-hdpi/image_add_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/mipmap-hdpi/image_add_nor.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/mipmap-hdpi/image_add_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/mipmap-hdpi/image_add_sel.png -------------------------------------------------------------------------------- /biz/biz-demo1/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /biz/biz-pollorder/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /commonlibs/libmvp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /otherlibs/slbapp-share/src/main/assets/img/geek_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/slbapp-share/src/main/assets/img/geek_icon.png -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/src/main/assets/mp3/111.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbappreadbook/src/main/assets/mp3/111.mp3 -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/src/main/assets/mp3/222.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbappreadbook/src/main/assets/mp3/222.mp3 -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/src/main/assets/mp3/333.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbappreadbook/src/main/assets/mp3/333.mp3 -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/src/main/assets/mp3/444.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbappreadbook/src/main/assets/mp3/444.mp3 -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/src/main/assets/mp3/555.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbappreadbook/src/main/assets/mp3/555.mp3 -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/raw/menling.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/raw/menling.mp3 -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-search/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/icon_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/icon_back.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/iv_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/iv_circle.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/iv_locker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/iv_locker.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/jc66_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/jc66_wifi.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/open_eyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/open_eyes.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/wifi_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/wifi_icon.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/xiaxue_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/xiaxue_17.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/xiaxue_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/xiaxue_18.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/xiaxue_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/xiaxue_19.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/xiaxue_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/xiaxue_20.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/xiaxue_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/xiaxue_21.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/xiaxue_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/xiaxue_22.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/xiaxue_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/xiaxue_23.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/xiaxue_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/xiaxue_24.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/xiaxue_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/xiaxue_25.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/xiaxue_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/xiaxue_26.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/xiaxue_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/xiaxue_27.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/xiaxue_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/xiaxue_28.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/xiaxue_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/xiaxue_29.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/xiaxue_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/xiaxue_30.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/xiaxue_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/xiaxue_31.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/xiaxue_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/xiaxue_32.png -------------------------------------------------------------------------------- /baselibrary/src/main/java/com/haier/cellarette/baselibrary/recycleviewmultitype/readme: -------------------------------------------------------------------------------- 1 | recycleview的所有用法参考地址:https://github.com/drakeet/MultiType/wiki/Android-MultiType-3.0 -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/animation_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/animation_img1.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/animation_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/animation_img2.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/animation_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/animation_img3.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/evaluate_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/evaluate_normal.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/evaluate_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/evaluate_press.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/fm_main_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/fm_main_search.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_errnet_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_errnet_icon.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_web_title_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_web_title_bg.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/network_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/network_loading.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/periodic_clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/periodic_clouds.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-xhdpi/toast_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-xhdpi/toast_frame.9.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-xxhdpi/toast_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-xxhdpi/toast_frame.9.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /biz2/biz2-phone-demo1/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /biz3/biz3-slbapp-demo1/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /commonlibs/libglin/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /commonlibs/libutils/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-search/src/main/res/drawable/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-search/src/main/res/drawable/back.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-shopcommon/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/close_eyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/close_eyes.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/light_icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/light_icon1.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/light_icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/light_icon2.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/loop_icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/loop_icon1.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/loop_icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/loop_icon2.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/header_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/header_background.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_star_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_star_black_24dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/smartbar_back_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/smartbar_back_icon.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/smartbar_home_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/smartbar_home_icon.png -------------------------------------------------------------------------------- /biz/biz-wine-management/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /commonlibs/libglide37/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #33b5e5 4 | 5 | -------------------------------------------------------------------------------- /commonlibs/libretrofit/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /commonlibs/libvariants/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /sailubanone/slbapp-splash/src/main/res/drawable/starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-splash/src/main/res/drawable/starter.png -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/i1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/i1.jpg -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/i2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/i2.jpg -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/i5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/i5.jpg -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/i6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/i6.jpg -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-dermo1/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-search/src/main/res/drawable/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-search/src/main/res/drawable/search.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/jc66_bind_succ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/jc66_bind_succ.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/location_icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/location_icon1.png -------------------------------------------------------------------------------- /appphone/uplus-control/src/main/res/drawable/location_icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/uplus-control/src/main/res/drawable/location_icon2.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_check_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_check_white_48dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_clear_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_clear_white_48dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_close_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_close_black_24dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_01.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_02.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_03.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_04.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_05.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_06.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_07.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_08.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_09.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_10.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_11.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_loading_white1_12.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_share_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_share_white_24dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/network_loading_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/network_loading_new.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/splash_dot_press_but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/splash_dot_press_but.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-mdpi/ic_check_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-mdpi/ic_check_white_48dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-mdpi/ic_clear_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-mdpi/ic_clear_white_48dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-xhdpi/ic_check_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-xhdpi/ic_check_white_48dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-xhdpi/ic_clear_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-xhdpi/ic_clear_white_48dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-xhdpi/network_loading_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-xhdpi/network_loading_new.png -------------------------------------------------------------------------------- /commonlibs/libglide47/src/main/res/drawable/gif_robot_walk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/commonlibs/libglide47/src/main/res/drawable/gif_robot_walk.gif -------------------------------------------------------------------------------- /commonlibs/libglide47/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/commonlibs/libglide47/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /otherlibs/slbapp-share/src/main/res/drawable-hdpi/geek_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/slbapp-share/src/main/res/drawable-hdpi/geek_icon.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/starter.png -------------------------------------------------------------------------------- /sailubanone/slbapp-splash/src/main/res/drawable-hdpi/guid1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-splash/src/main/res/drawable-hdpi/guid1.png -------------------------------------------------------------------------------- /sailubanone/slbapp-splash/src/main/res/drawable-hdpi/guid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-splash/src/main/res/drawable-hdpi/guid2.png -------------------------------------------------------------------------------- /sailubanone/slbapp-splash/src/main/res/drawable-hdpi/guid3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-splash/src/main/res/drawable-hdpi/guid3.png -------------------------------------------------------------------------------- /sailubanone/slbapp-splash/src/main/res/drawable-hdpi/guid4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-splash/src/main/res/drawable-hdpi/guid4.png -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/img3.jpg -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/img5.jpg -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/img6.jpg -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/img7.jpg -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/iv_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/iv_bg.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/yuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/yuan.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable/puzzle_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable/puzzle_0.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/jniLibs/x86/libentryexpro.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/jniLibs/x86/libentryexpro.so -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/jniLibs/x86/libuptsmaddon.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/jniLibs/x86/libuptsmaddon.so -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-QQ-3.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-QQ-3.1.4.jar -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-splash/src/main/res/drawable/starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-splash/src/main/res/drawable/starter.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/common_search_right_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/common_search_right_pic.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_ring_notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_ring_notifications.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_shopping_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_shopping_black_24dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/menu_shop_car_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/menu_shop_car_selected.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/splash_dot_normal_but.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/splash_dot_normal_but.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-xhdpi/ic_warning_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-xhdpi/ic_warning_white_48dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-xxhdpi/ic_check_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-xxhdpi/ic_check_white_48dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-xxhdpi/ic_clear_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-xxhdpi/ic_clear_white_48dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-xxxhdpi/ic_check_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-xxxhdpi/ic_check_white_48dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-xxxhdpi/ic_clear_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-xxxhdpi/ic_clear_white_48dp.png -------------------------------------------------------------------------------- /biz2/biz2-phone-pay-wx2/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /commonlibs/libglide37/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/commonlibs/libglide37/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /commonlibs/libglide47/src/main/res/drawable/ic_def_loading.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/commonlibs/libglide47/src/main/res/drawable/ic_def_loading.9.png -------------------------------------------------------------------------------- /commonlibs/libwebview/src/main/res/drawable-xhdpi/ic_web_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/commonlibs/libwebview/src/main/res/drawable-xhdpi/ic_web_back.png -------------------------------------------------------------------------------- /commonlibs/libwebview/src/main/res/drawable-xhdpi/ic_web_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/commonlibs/libwebview/src/main/res/drawable-xhdpi/ic_web_close.png -------------------------------------------------------------------------------- /otherlibs/imagepicker/src/main/res/mipmap-xxhdpi/grid_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/imagepicker/src/main/res/mipmap-xxhdpi/grid_camera.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/icon_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/icon_arrow.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/icon_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/icon_back.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/slb_about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/slb_about.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/slb_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/slb_back.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/slb_fankui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/slb_fankui.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/slb_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/slb_icon.jpg -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/videoplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/videoplay.png -------------------------------------------------------------------------------- /sailubanone/slbapp-login/src/main/res/drawable-hdpi/checkbox1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-login/src/main/res/drawable-hdpi/checkbox1.png -------------------------------------------------------------------------------- /sailubanone/slbapp-login/src/main/res/drawable-hdpi/checkbox2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-login/src/main/res/drawable-hdpi/checkbox2.png -------------------------------------------------------------------------------- /sailubanone/slbapp-login/src/main/res/drawable-hdpi/wjmm_tel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-login/src/main/res/drawable-hdpi/wjmm_tel.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/starter.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/tuoyuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/tuoyuan.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable/common_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable/common_back.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/jniLibs/x86/libuptsmaddonmi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/jniLibs/x86/libuptsmaddonmi.so -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/jniLibs/x86_64/libentryexpro.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/jniLibs/x86_64/libentryexpro.so -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/jniLibs/x86_64/libuptsmaddon.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/jniLibs/x86_64/libuptsmaddon.so -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/res/drawable-hdpi/msp_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/res/drawable-hdpi/msp_icon.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-Core-3.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-Core-3.1.4.jar -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-Email-3.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-Email-3.1.4.jar -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-QZone-3.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-QZone-3.1.4.jar -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/guid1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/guid1.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/guid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/guid2.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/guid3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/guid3.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/guid4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/guid4.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_arrow_back_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_arrow_back_black_24dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_star_border_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_star_border_black_24dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-xhdpi/ic_warning_outline_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-xhdpi/ic_warning_outline_white.png -------------------------------------------------------------------------------- /commonlibs/libglide47/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/commonlibs/libglide47/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /commonlibs/libwebview/src/main/res/drawable-mdpi/ic_web_title_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/commonlibs/libwebview/src/main/res/drawable-mdpi/ic_web_title_bg.png -------------------------------------------------------------------------------- /otherlibs/imagepicker/src/main/res/mipmap-xxhdpi/checkbox_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/imagepicker/src/main/res/mipmap-xxhdpi/checkbox_normal.png -------------------------------------------------------------------------------- /otherlibs/imagepicker/src/main/res/mipmap-xxhdpi/text_indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/imagepicker/src/main/res/mipmap-xxhdpi/text_indicator.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable/jz_bottom_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable/jz_bottom_bg.9.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable/jz_title_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable/jz_title_bg.9.png -------------------------------------------------------------------------------- /otherlibs/libgreendao/src/main/java/com/haier/greendao/readme: -------------------------------------------------------------------------------- 1 | greendao用法:参考demogreendao写法 2 | DbManager:初始化数据库 3 | MigrationHelper:升级数据库时用于保存数据库信息的数据迁移 4 | GreenDaoHelper:数据库升级配置文件 5 | 6 | -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/slb_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/slb_setting.png -------------------------------------------------------------------------------- /sailubanone/slbapp-splash/src/main/res/drawable-hdpi/guid1_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-splash/src/main/res/drawable-hdpi/guid1_text.png -------------------------------------------------------------------------------- /sailubanone/slbapp-splash/src/main/res/drawable-hdpi/guid2_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-splash/src/main/res/drawable-hdpi/guid2_text.png -------------------------------------------------------------------------------- /sailubanone/slbapp-splash/src/main/res/drawable-hdpi/guid3_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-splash/src/main/res/drawable-hdpi/guid3_text.png -------------------------------------------------------------------------------- /sailubanone/slbapp-splash/src/main/res/drawable-hdpi/guid4_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-splash/src/main/res/drawable-hdpi/guid4_text.png -------------------------------------------------------------------------------- /sailubanone/slbapp-splash/src/main/res/drawable-hdpi/ic_web_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-splash/src/main/res/drawable-hdpi/ic_web_back.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-address/src/main/res/mipmap-hdpi/edit_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-address/src/main/res/mipmap-hdpi/edit_icon.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-address/src/main/res/mipmap-hdpi/icon_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-address/src/main/res/mipmap-hdpi/icon_arrow.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-address/src/main/res/mipmap-hdpi/icon_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-address/src/main/res/mipmap-hdpi/icon_back.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/icon_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/icon_arrow.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/icon_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/icon_back.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/iv_circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/iv_circle.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/iv_me_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/iv_me_top.jpg -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/jniLibs/arm64-v8a/libentryexpro.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/jniLibs/arm64-v8a/libentryexpro.so -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/jniLibs/arm64-v8a/libuptsmaddon.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/jniLibs/arm64-v8a/libuptsmaddon.so -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/jniLibs/armeabi/libentryexpro.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/jniLibs/armeabi/libentryexpro.so -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/jniLibs/armeabi/libuptsmaddon.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/jniLibs/armeabi/libuptsmaddon.so -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/jniLibs/armeabi/libuptsmaddonmi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/jniLibs/armeabi/libuptsmaddonmi.so -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/jniLibs/x86_64/libuptsmaddonmi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/jniLibs/x86_64/libuptsmaddonmi.so -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-search/src/main/res/drawable/search_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-search/src/main/res/drawable/search_clear.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/libs/MobTools-2018.0419.1211.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/libs/MobTools-2018.0419.1211.jar -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-Wechat-3.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-Wechat-3.1.4.jar -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_logo.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_error_outline_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_error_outline_white_48dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_info_outline_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_info_outline_white_48dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-mdpi/ic_error_outline_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-mdpi/ic_error_outline_white_48dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-mdpi/ic_info_outline_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-mdpi/ic_info_outline_white_48dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-xhdpi/ic_error_outline_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-xhdpi/ic_error_outline_white_48dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-xhdpi/ic_info_outline_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-xhdpi/ic_info_outline_white_48dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-xxhdpi/ic_info_outline_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-xxhdpi/ic_info_outline_white_48dp.png -------------------------------------------------------------------------------- /commonlibs/libupdateapputils/src/main/res/drawable-xxhdpi/update_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/commonlibs/libupdateapputils/src/main/res/drawable-xxhdpi/update_bg.png -------------------------------------------------------------------------------- /otherlibs/imagepicker/src/main/res/mipmap-xxhdpi/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/imagepicker/src/main/res/mipmap-xxhdpi/checkbox_checked.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_enlarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_enlarge.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_shrink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_shrink.png -------------------------------------------------------------------------------- /otherlibs/libraryglide37sinayulan/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | library 3 | %1$s/%2$s 4 | 5 | -------------------------------------------------------------------------------- /otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_test_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_test_img.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/fragment2_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/fragment2_edit.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/ic_index_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/ic_index_back.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/slb_left_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/slb_left_back.png -------------------------------------------------------------------------------- /sailubanone/slbapp-login/src/main/res/drawable-hdpi/eyes_icon_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-login/src/main/res/drawable-hdpi/eyes_icon_close.png -------------------------------------------------------------------------------- /sailubanone/slbapp-login/src/main/res/drawable-hdpi/eyes_icon_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-login/src/main/res/drawable-hdpi/eyes_icon_open.png -------------------------------------------------------------------------------- /sailubanone/slbapp-login/src/main/res/drawable-hdpi/ic_login_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-login/src/main/res/drawable-hdpi/ic_login_back.png -------------------------------------------------------------------------------- /sailubanone/slbapp-splash/src/main/res/drawable-hdpi/ic_web_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-splash/src/main/res/drawable-hdpi/ic_web_close.png -------------------------------------------------------------------------------- /sailubanone/slbapp-splash/src/main/res/drawable-hdpi/new_press_dian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-splash/src/main/res/drawable-hdpi/new_press_dian.png -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/huiben_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/huiben_back.png -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/huiben_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/huiben_play.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-address/src/main/res/mipmap-hdpi/delete_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-address/src/main/res/mipmap-hdpi/delete_icon.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-address/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-address/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-address/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-address/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-address/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-address/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable/common_back_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable/common_back_press.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/jniLibs/arm64-v8a/libuptsmaddonmi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/jniLibs/arm64-v8a/libuptsmaddonmi.so -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/jniLibs/armeabi-v7a/libentryexpro.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/jniLibs/armeabi-v7a/libentryexpro.so -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/jniLibs/armeabi-v7a/libuptsmaddon.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/jniLibs/armeabi-v7a/libuptsmaddon.so -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/res/drawable-hdpi/msp_demo_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/res/drawable-hdpi/msp_demo_title.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/libs/MobCommons-2018.0418.1102.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/libs/MobCommons-2018.0418.1102.jar -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-SinaWeibo-3.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-SinaWeibo-3.1.4.jar -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/guid1_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/guid1_text.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/guid2_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/guid2_text.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/guid3_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/guid3_text.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/guid4_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/guid4_text.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-xxhdpi/ic_error_outline_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-xxhdpi/ic_error_outline_white_48dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-xxxhdpi/ic_error_outline_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-xxxhdpi/ic_error_outline_white_48dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-xxxhdpi/ic_info_outline_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-xxxhdpi/ic_info_outline_white_48dp.png -------------------------------------------------------------------------------- /commonlibs/libglide37/src/main/res/drawable-hdpi/ic_clear_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/commonlibs/libglide37/src/main/res/drawable-hdpi/ic_clear_white_48dp.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_add_volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_add_volume.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_loading_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_loading_bg.png -------------------------------------------------------------------------------- /otherlibs/libraryglide37sinayulan/src/main/res/drawable/icon_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/libraryglide37sinayulan/src/main/res/drawable/icon_download.png -------------------------------------------------------------------------------- /sailubanone/slbapp-splash/src/main/res/drawable-hdpi/new_normal_dian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-splash/src/main/res/drawable-hdpi/new_normal_dian.png -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/huiben_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbappreadbook/src/main/res/drawable-xhdpi/huiben_loading.png -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-xhdpi/login_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-xhdpi/login_background.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-address/src/main/res/mipmap-hdpi/address_flush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-address/src/main/res/mipmap-hdpi/address_flush.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-address/src/main/res/mipmap-hdpi/address_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-address/src/main/res/mipmap-hdpi/address_group.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-address/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-address/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-address/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-address/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable/scan_icon_scanline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable/scan_icon_scanline.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/jniLibs/armeabi-v7a/libuptsmaddonmi.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/jniLibs/armeabi-v7a/libuptsmaddonmi.so -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/res/drawable-hdpi/msp_demo_title_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-pay/src/main/res/drawable-hdpi/msp_demo_title_bg.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-TencentWeibo-3.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-TencentWeibo-3.1.4.jar -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-Wechat-Core-3.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-Wechat-Core-3.1.4.jar -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_back_arr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_back_arr.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_title_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_title_div.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-shopcommon/src/main/res/drawable-xxhdpi/logoicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-shopcommon/src/main/res/drawable-xxhdpi/logoicon.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/new_press_dian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/new_press_dian.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_back_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_back_normal.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_back_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_back_pressed.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_backward_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_backward_icon.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_close_volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_close_volume.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_error_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_error_normal.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_error_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_error_pressed.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_forward_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_forward_icon.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_pause_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_pause_normal.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_pause_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_pause_pressed.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_play_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_play_normal.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_play_pressed.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_share_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_share_normal.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_share_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_share_pressed.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_volume_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_volume_icon.png -------------------------------------------------------------------------------- /otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_copy.png -------------------------------------------------------------------------------- /otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_qq.png -------------------------------------------------------------------------------- /otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_sina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_sina.png -------------------------------------------------------------------------------- /sailubanone/slbapp-login/src/main/res/drawable-hdpi/share_wechat_solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-login/src/main/res/drawable-hdpi/share_wechat_solid.png -------------------------------------------------------------------------------- /sailubanone/slbappreadbook/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | slbapp-readbook 3 | %1$d/%2$d 4 | 5 | -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-xhdpi/splash_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-xhdpi/splash_background.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-address/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-address/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-address/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-address/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-xhdpi/login_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-xhdpi/login_background.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-search/src/main/res/drawable/shop_search_back_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-search/src/main/res/drawable/shop_search_back_icon.jpg -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-Wechat-Favorite-3.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-Wechat-Favorite-3.1.4.jar -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-Wechat-Moments-3.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/libs/ShareSDK-Wechat-Moments-3.1.4.jar -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-hdpi/ssdk_oks_ptr_ptr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-hdpi/ssdk_oks_ptr_ptr.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-shopcommon/src/main/res/drawable-xxhdpi/dialogicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-shopcommon/src/main/res/drawable-xxhdpi/dialogicon.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-shopcommon/src/main/res/drawable-xxhdpi/zhideimai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-shopcommon/src/main/res/drawable-xxhdpi/zhideimai.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/new_normal_dian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-splash/src/main/res/drawable-hdpi/new_normal_dian.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_comment_text_outline_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_comment_text_outline_black_24dp.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable-hdpi/ic_weather_partlycloudy_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/baselibrary/src/main/res/drawable-hdpi/ic_weather_partlycloudy_black_24dp.png -------------------------------------------------------------------------------- /commonlibs/libutils/src/main/java/com/haier/cellarette/libutils/Test.java: -------------------------------------------------------------------------------- 1 | package com.haier.cellarette.libutils; 2 | 3 | /** 4 | * Created by shining on 2017/9/1. 5 | */ 6 | 7 | public class Test { 8 | } 9 | -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_restart_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_restart_normal.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_restart_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_restart_pressed.png -------------------------------------------------------------------------------- /otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_qzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_qzone.png -------------------------------------------------------------------------------- /otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_wechat.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/java/com/example/slbappindex/fragment/fragment2/fragmentliebiao/act.java: -------------------------------------------------------------------------------- 1 | package com.example.slbappindex.fragment.fragment2.fragmentliebiao; 2 | 3 | public class act { 4 | } 5 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-address/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-address/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-address/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-address/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-address/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-address/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-xhdpi/splash_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-xhdpi/splash_background.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable/qrcode_default_scan_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable/qrcode_default_scan_line.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_qq.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-shopcommon/src/main/res/drawable-xxhdpi/bimaiqingdan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-shopcommon/src/main/res/drawable-xxhdpi/bimaiqingdan.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-shopcommon/src/main/res/drawable-xxhdpi/renqiqianggou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-shopcommon/src/main/res/drawable-xxhdpi/renqiqianggou.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_back_tiny_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_back_tiny_normal.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_back_tiny_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_back_tiny_pressed.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_battery_level_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_battery_level_10.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_battery_level_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_battery_level_100.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_battery_level_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_battery_level_30.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_battery_level_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_battery_level_50.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_battery_level_70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_battery_level_70.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_battery_level_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_battery_level_90.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_brightness_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_brightness_video.png -------------------------------------------------------------------------------- /otherlibs/libraryglide37sinayulan/src/main/res/drawable-hdpi/ic_action_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/libraryglide37sinayulan/src/main/res/drawable-hdpi/ic_action_close.png -------------------------------------------------------------------------------- /otherlibs/libraryglide37sinayulan/src/main/res/drawable-mdpi/ic_action_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/libraryglide37sinayulan/src/main/res/drawable-mdpi/ic_action_close.png -------------------------------------------------------------------------------- /otherlibs/libraryglide37sinayulan/src/main/res/drawable-xhdpi/ic_action_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/libraryglide37sinayulan/src/main/res/drawable-xhdpi/ic_action_close.png -------------------------------------------------------------------------------- /otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_copyurl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_copyurl.png -------------------------------------------------------------------------------- /otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_cp_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_cp_link.png -------------------------------------------------------------------------------- /otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_facebook.png -------------------------------------------------------------------------------- /otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_messenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_messenger.png -------------------------------------------------------------------------------- /otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_twitter.png -------------------------------------------------------------------------------- /otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_wxcircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_wxcircle.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable/btn_white_transparent_nor.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable/btn_white_transparent_nor.9.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-search/src/main/java/com/haier/search/view/BackCallBack.java: -------------------------------------------------------------------------------- 1 | package com.haier.search.view; 2 | 3 | /** 4 | * 返回键回调 5 | */ 6 | public interface BackCallBack { 7 | void BackAciton(); 8 | } 9 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_auth_title_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_auth_title_back.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_input_bg_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_input_bg_focus.9.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_line.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-shopcommon/src/main/res/drawable-xxhdpi/zhengxiangtehui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-shopcommon/src/main/res/drawable-xxhdpi/zhengxiangtehui.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-shopcommon/src/main/res/drawable/cate_list_normal_star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-shopcommon/src/main/res/drawable/cate_list_normal_star.jpg -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-shopcommon/src/main/res/drawable/shop_search_back_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-shopcommon/src/main/res/drawable/shop_search_back_icon.jpg -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable/btn_cancle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /commonlibs/libglin/src/main/java/com/example/shining/libglin/Test.java: -------------------------------------------------------------------------------- 1 | //package com.example.shining.libglin; 2 | // 3 | ///** 4 | // * Created by shining on 2017/9/1. 5 | // */ 6 | // 7 | //public class Test { 8 | //} 9 | -------------------------------------------------------------------------------- /commonlibs/libutils/src/main/java/com/haier/cellarette/libutils/utilslib/jiami.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/commonlibs/libutils/src/main/java/com/haier/cellarette/libutils/utilslib/jiami.zip -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 45dp 3 | 62dp 4 | 5 | -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /otherlibs/libraryglide37sinayulan/src/main/res/drawable-hdpi/icon_download_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/libraryglide37sinayulan/src/main/res/drawable-hdpi/icon_download_new.png -------------------------------------------------------------------------------- /otherlibs/libraryglide37sinayulan/src/main/res/drawable-mdpi/icon_download_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/libraryglide37sinayulan/src/main/res/drawable-mdpi/icon_download_new.png -------------------------------------------------------------------------------- /otherlibs/libraryglide37sinayulan/src/main/res/drawable-xhdpi/icon_download_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/libraryglide37sinayulan/src/main/res/drawable-xhdpi/icon_download_new.png -------------------------------------------------------------------------------- /otherlibs/libraryglide37sinayulan/src/main/res/drawable-xxhdpi/ic_action_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/libraryglide37sinayulan/src/main/res/drawable-xxhdpi/ic_action_close.png -------------------------------------------------------------------------------- /otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_wxfavorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_wxfavorite.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_mofen_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_mofen_normal.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_mofen_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_mofen_select.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_reyin_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_reyin_normal.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_reyin_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_reyin_select.png -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_mofen_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_mofen_normal.png -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_mofen_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_mofen_select.png -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_reyin_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_reyin_normal.png -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_reyin_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_reyin_select.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/icon_celleartte_unbound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/icon_celleartte_unbound.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable/qrcode_default_grid_scan_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable/qrcode_default_grid_scan_line.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_country_back_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_country_back_arrow.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_country_cl_divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_country_cl_divider.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_country_search_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_country_search_icon.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_alipay.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_douban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_douban.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_dropbox.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_email.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_flickr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_flickr.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_kaixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_kaixin.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_laiwang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_laiwang.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_meipai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_meipai.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_mingdao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_mingdao.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_pocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_pocket.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_qzone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_qzone.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_renren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_renren.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_tumblr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_tumblr.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_twitter.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_wechat.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_yixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_yixin.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_youdao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_youdao.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_youtube.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_weibo_empty_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_weibo_empty_failed.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-shopcommon/src/main/res/drawable/cate_list_selected_star.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-shopcommon/src/main/res/drawable/cate_list_selected_star.jpg -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable/btn_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /commonlibs/libmvp/src/main/java/com/haier/cellarette/libmvp/readme.java: -------------------------------------------------------------------------------- 1 | //package com.haier.cellarette.libmvp; 2 | // 3 | ///** 4 | // * Created by shining on 2017/11/29. 5 | // */ 6 | // 7 | //public class readme { 8 | //} 9 | -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_clarity_popwindow_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xhdpi/jz_clarity_popwindow_bg.9.png -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/res/drawable-xxhdpi/jz_clarity_popwindow_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/jiaozivideoplayer/src/main/res/drawable-xxhdpi/jz_clarity_popwindow_bg.9.png -------------------------------------------------------------------------------- /otherlibs/libraryglide37sinayulan/src/main/res/drawable-xxhdpi/icon_download_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/libraryglide37sinayulan/src/main/res/drawable-xxhdpi/icon_download_new.png -------------------------------------------------------------------------------- /otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_menu_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/otherlibs/slbapp-share/src/main/res/drawable-hdpi/jiguang_socialize_menu_default.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_guoshu_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_guoshu_normal.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_guoshu_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_guoshu_select.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_lengyin_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_lengyin_normal.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_lengyin_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_lengyin_select.png -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_guoshu_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_guoshu_normal.png -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_guoshu_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_guoshu_select.png -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_lengyin_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_lengyin_normal.png -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_lengyin_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_lengyin_select.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_mofen_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_mofen_normal.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_mofen_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_mofen_select.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_reyin_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_reyin_normal.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_reyin_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_reyin_select.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-pay/src/main/java/com/haier/pay/Pay.java: -------------------------------------------------------------------------------- 1 | package com.haier.pay; 2 | 3 | public interface Pay { 4 | void pay(); 5 | 6 | void success(T t); 7 | 8 | void error(String s); 9 | } 10 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_country_clear_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_country_clear_search.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_country_sharesdk_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_country_sharesdk_icon.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_bluetooth.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_dingding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_dingding.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_evernote.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_facebook.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_instagram.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_kakaotalk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_kakaotalk.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_linkedin.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_pinterest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_pinterest.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_sinaweibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_sinaweibo.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_telegram.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_vkontakte.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_vkontakte.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_whatsapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_whatsapp.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_jiangliao_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_jiangliao_normal.png -------------------------------------------------------------------------------- /sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_jiangliao_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/sailubanone/slbapp-index/src/main/res/drawable-hdpi/control_pobiji_jiangliao_select.png -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_jiangliao_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_jiangliao_normal.png -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_jiangliao_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appjiuzhidao/jiuzhidao-demo/src/main/res/drawable-hdpi/control_pobiji_jiangliao_select.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_guoshu_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_guoshu_normal.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_guoshu_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_guoshu_select.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_lengyin_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_lengyin_normal.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_lengyin_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_lengyin_select.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-search/src/main/java/com/haier/search/view/ICallBack.java: -------------------------------------------------------------------------------- 1 | package com.haier.search.view; 2 | 3 | /** 4 | * 有查询行为时的回调接口 5 | */ 6 | public interface ICallBack { 7 | void SearchAciton(String string); 8 | } 9 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_foursquare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_foursquare.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_googleplus.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_instapaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_instapaper.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_kakaostory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_kakaostory.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_shortmessage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_shortmessage.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_tencentweibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_tencentweibo.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_yixinmoments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_yixinmoments.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-shopcommon/src/main/res/drawable/shop_cate_cotent_rwine_arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-shopcommon/src/main/res/drawable/shop_cate_cotent_rwine_arrow.jpg -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable/ok_tanchuang_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /otherlibs/imagepicker/src/main/res/xml/provider_paths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_jiangliao_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_jiangliao_normal.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_jiangliao_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-index/src/main/res/drawable-hdpi/control_pobiji_jiangliao_select.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_alipaymoments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_alipaymoments.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_check_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_check_checked.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_check_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_check_default.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_laiwangmoments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_laiwangmoments.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_wechatfavorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_wechatfavorite.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_wechatmoments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_wechatmoments.png -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_weibo_common_shadow_top.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_weibo_common_shadow_top.9.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable/ok_tanchuang_press.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_facebookmessenger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geeklx/newappproject/HEAD/appphone/jiuzhidaophone-share/src/main/res/drawable-xhdpi/ssdk_oks_classic_facebookmessenger.png -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable/ok_fillet_shape_button_normal.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /otherlibs/libraryglide37sinayulan/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | .idea/ 12 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-shopcommon/src/main/res/drawable/shop_cate_list_place_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /baselibrary/src/main/java/com/haier/cellarette/baselibrary/loading/OnkeyBackDestoryLoadingListener.java: -------------------------------------------------------------------------------- 1 | package com.haier.cellarette.baselibrary.loading; 2 | 3 | public interface OnkeyBackDestoryLoadingListener { 4 | void onKeyBack(); 5 | } 6 | -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable/ok_fillet_shape_button_press.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-demo/src/main/java/com/haier/cellarette/jiuzhidao_demo/glinbufen/readme.java: -------------------------------------------------------------------------------- 1 | package com.haier.cellarette.jiuzhidao_demo.glinbufen; 2 | 3 | /** 4 | * Created by shining on 2017/12/1. 5 | */ 6 | 7 | public class readme { 8 | } 9 | -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-shopcommon/src/main/res/drawable/test_test_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable/shape_alert_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /otherlibs/imagepicker/src/main/res/drawable/bg_btn_dis.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /otherlibs/imagepicker/src/main/res/drawable/bg_btn_pre.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /otherlibs/jiaozivideoplayer/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /baselibrary/src/main/java/com/haier/cellarette/baselibrary/recycleviewalluses/readme: -------------------------------------------------------------------------------- 1 | recycleview的所有用法参考: 2 | 3 | 官方WIKI地址:https://www.jianshu.com/p/b343fcff51b0 4 | github:https://github.com/CymChad/BaseRecyclerViewAdapterHelper 5 | 官网地址:http://www.recyclerview.org/ -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable/my_cursor.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /commonlibs/libglide47/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | libglide47 3 | the image of transition 4 | %1$d/%2$d 5 | 6 | -------------------------------------------------------------------------------- /appjiuzhidao/jiuzhidao-demo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea 5 | /.idea/caches 6 | /.idea/libraries 7 | /.idea/misc.xml 8 | /.idea/modules.xml 9 | /.idea/workspace.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild -------------------------------------------------------------------------------- /appphone/jiuzhidaophone-shopcommon/src/main/java/com/haier/shopcommon/jeffery/view/searchview/BackCallBack.java: -------------------------------------------------------------------------------- 1 | package com.haier.shopcommon.jeffery.view.searchview; 2 | 3 | /** 4 | * 返回键回调 5 | */ 6 | public interface BackCallBack { 7 | void BackAciton(); 8 | } 9 | -------------------------------------------------------------------------------- /biz/biz-pollorder/src/main/java/com/haier/biz/pollorder/ReadMe.java: -------------------------------------------------------------------------------- 1 | package com.haier.biz.pollorder; 2 | 3 | /** 4 | * Author:sunnyhack 5 | * E-mail:sunnyhack@live.com 6 | * Date:on 18/5/11. 7 | * Description: 8 | */ 9 | public class ReadMe { 10 | } 11 | -------------------------------------------------------------------------------- /otherlibs/imagepicker/src/main/res/anim/top_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable/download_shape_dialog_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /baselibrary/src/main/res/drawable/notice_dialog_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | --------------------------------------------------------------------------------