├── .gradle └── 2.4 │ └── taskArtifacts │ ├── cache.properties │ ├── cache.properties.lock │ ├── fileHashes.bin │ ├── fileSnapshots.bin │ ├── outputFileStates.bin │ └── taskArtifacts.bin ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── gradle.xml ├── libraries │ ├── appcompat_v7_22_2_0.xml │ ├── butterknife_6_1_0.xml │ ├── cardview_v7_22_2_0.xml │ ├── core_1_2_1.xml │ ├── design_22_2_0.xml │ ├── eventbus_2_4_0.xml │ ├── library_2_1_4.xml │ ├── library_2_4_0.xml │ ├── materialpreference_1_3.xml │ ├── recyclerview_v7_22_2_0.xml │ ├── support_annotations_22_2_0.xml │ └── support_v4_22_2_0.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── Notes-master.iml ├── Notes.iml ├── README.md ├── evernote ├── build.gradle ├── build │ ├── generated │ │ └── source │ │ │ ├── buildConfig │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── com │ │ │ │ │ └── liaobb │ │ │ │ │ └── evernote │ │ │ │ │ └── test │ │ │ │ │ └── BuildConfig.java │ │ │ └── debug │ │ │ │ └── com │ │ │ │ └── liaobb │ │ │ │ └── evernote │ │ │ │ └── BuildConfig.java │ │ │ └── r │ │ │ └── debug │ │ │ ├── android │ │ │ └── support │ │ │ │ ├── design │ │ │ │ └── R.java │ │ │ │ └── v7 │ │ │ │ ├── appcompat │ │ │ │ └── R.java │ │ │ │ ├── cardview │ │ │ │ └── R.java │ │ │ │ └── recyclerview │ │ │ │ └── R.java │ │ │ ├── com │ │ │ ├── jenzz │ │ │ │ └── materialpreference │ │ │ │ │ └── R.java │ │ │ ├── liaobb │ │ │ │ └── evernote │ │ │ │ │ └── R.java │ │ │ └── rengwuxian │ │ │ │ └── materialedittext │ │ │ │ └── R.java │ │ │ └── org │ │ │ └── litepal │ │ │ └── R.java │ ├── intermediates │ │ ├── assets │ │ │ └── debug │ │ │ │ ├── fonts │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ └── Roboto-Regular.ttf │ │ │ │ └── litepal.xml │ │ ├── classes │ │ │ └── debug │ │ │ │ ├── android │ │ │ │ └── support │ │ │ │ │ ├── design │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ └── v7 │ │ │ │ │ ├── appcompat │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ ├── cardview │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ │ └── recyclerview │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ ├── com │ │ │ │ ├── jenzz │ │ │ │ │ └── materialpreference │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ └── R.class │ │ │ │ ├── liaobb │ │ │ │ │ └── evernote │ │ │ │ │ │ ├── BuildConfig.class │ │ │ │ │ │ ├── R$anim.class │ │ │ │ │ │ ├── R$array.class │ │ │ │ │ │ ├── R$attr.class │ │ │ │ │ │ ├── R$bool.class │ │ │ │ │ │ ├── R$color.class │ │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ │ ├── R$id.class │ │ │ │ │ │ ├── R$integer.class │ │ │ │ │ │ ├── R$layout.class │ │ │ │ │ │ ├── R$menu.class │ │ │ │ │ │ ├── R$mipmap.class │ │ │ │ │ │ ├── R$string.class │ │ │ │ │ │ ├── R$style.class │ │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ │ ├── R$xml.class │ │ │ │ │ │ ├── R.class │ │ │ │ │ │ ├── adapter │ │ │ │ │ │ ├── DrawerListAdapter$Holder.class │ │ │ │ │ │ ├── DrawerListAdapter.class │ │ │ │ │ │ ├── NoteListAdapter$1.class │ │ │ │ │ │ ├── NoteListAdapter$2$1.class │ │ │ │ │ │ ├── NoteListAdapter$2.class │ │ │ │ │ │ ├── NoteListAdapter$3.class │ │ │ │ │ │ ├── NoteListAdapter$4.class │ │ │ │ │ │ ├── NoteListAdapter$5.class │ │ │ │ │ │ ├── NoteListAdapter$NoteFilter.class │ │ │ │ │ │ ├── NoteListAdapter$NoteListViewHolder.class │ │ │ │ │ │ └── NoteListAdapter.class │ │ │ │ │ │ ├── bean │ │ │ │ │ │ ├── Note.class │ │ │ │ │ │ └── NoteType.class │ │ │ │ │ │ ├── common │ │ │ │ │ │ ├── App.class │ │ │ │ │ │ ├── DoubleClickExitHelper$1.class │ │ │ │ │ │ ├── DoubleClickExitHelper.class │ │ │ │ │ │ └── NoteUtils.class │ │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── EditNoteActivity$$ViewInjector.class │ │ │ │ │ │ ├── EditNoteActivity$$ViewInjector.java │ │ │ │ │ │ ├── EditNoteActivity$1.class │ │ │ │ │ │ ├── EditNoteActivity$2.class │ │ │ │ │ │ ├── EditNoteActivity$SimpleTextWatcher.class │ │ │ │ │ │ ├── EditNoteActivity.class │ │ │ │ │ │ ├── EditNoteTypeActivity$$ViewInjector.class │ │ │ │ │ │ ├── EditNoteTypeActivity$$ViewInjector.java │ │ │ │ │ │ ├── EditNoteTypeActivity$SimpleTextWatcher.class │ │ │ │ │ │ ├── EditNoteTypeActivity.class │ │ │ │ │ │ ├── MainActivity$$ViewInjector$1.class │ │ │ │ │ │ ├── MainActivity$$ViewInjector$2.class │ │ │ │ │ │ ├── MainActivity$$ViewInjector.class │ │ │ │ │ │ ├── MainActivity$$ViewInjector.java │ │ │ │ │ │ ├── MainActivity$1.class │ │ │ │ │ │ ├── MainActivity$2.class │ │ │ │ │ │ ├── MainActivity$3.class │ │ │ │ │ │ ├── MainActivity$4.class │ │ │ │ │ │ ├── MainActivity$5.class │ │ │ │ │ │ ├── MainActivity$6.class │ │ │ │ │ │ ├── MainActivity$7.class │ │ │ │ │ │ ├── MainActivity$8.class │ │ │ │ │ │ ├── MainActivity.class │ │ │ │ │ │ ├── NoteListFragment$1.class │ │ │ │ │ │ ├── NoteListFragment.class │ │ │ │ │ │ ├── SettingActivity.class │ │ │ │ │ │ ├── SettingFragment$1.class │ │ │ │ │ │ ├── SettingFragment.class │ │ │ │ │ │ ├── ToolbarActivity$$ViewInjector.class │ │ │ │ │ │ ├── ToolbarActivity$$ViewInjector.java │ │ │ │ │ │ └── ToolbarActivity.class │ │ │ │ │ │ └── utils │ │ │ │ │ │ └── Utils.class │ │ │ │ └── rengwuxian │ │ │ │ │ └── materialedittext │ │ │ │ │ ├── R$anim.class │ │ │ │ │ ├── R$attr.class │ │ │ │ │ ├── R$bool.class │ │ │ │ │ ├── R$color.class │ │ │ │ │ ├── R$dimen.class │ │ │ │ │ ├── R$drawable.class │ │ │ │ │ ├── R$id.class │ │ │ │ │ ├── R$integer.class │ │ │ │ │ ├── R$layout.class │ │ │ │ │ ├── R$string.class │ │ │ │ │ ├── R$style.class │ │ │ │ │ ├── R$styleable.class │ │ │ │ │ └── R.class │ │ │ │ └── org │ │ │ │ └── litepal │ │ │ │ ├── R$anim.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$bool.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$integer.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ ├── R$styleable.class │ │ │ │ └── R.class │ │ ├── dex │ │ │ └── debug │ │ │ │ └── classes.dex │ │ ├── exploded-aar │ │ │ ├── com.android.support │ │ │ │ ├── appcompat-v7 │ │ │ │ │ └── 22.2.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── abc_fade_in.xml │ │ │ │ │ │ ├── abc_fade_out.xml │ │ │ │ │ │ ├── abc_grow_fade_in_from_bottom.xml │ │ │ │ │ │ ├── abc_popup_enter.xml │ │ │ │ │ │ ├── abc_popup_exit.xml │ │ │ │ │ │ ├── abc_shrink_fade_out_from_bottom.xml │ │ │ │ │ │ ├── abc_slide_in_bottom.xml │ │ │ │ │ │ ├── abc_slide_in_top.xml │ │ │ │ │ │ ├── abc_slide_out_bottom.xml │ │ │ │ │ │ └── abc_slide_out_top.xml │ │ │ │ │ │ ├── color-v11 │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ │ │ └── abc_background_cache_hint_selector_material_light.xml │ │ │ │ │ │ ├── color │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_light.xml │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_dark.xml │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_light.xml │ │ │ │ │ │ ├── abc_primary_text_material_dark.xml │ │ │ │ │ │ ├── abc_primary_text_material_light.xml │ │ │ │ │ │ ├── abc_search_url_text.xml │ │ │ │ │ │ ├── abc_secondary_text_material_dark.xml │ │ │ │ │ │ ├── abc_secondary_text_material_light.xml │ │ │ │ │ │ ├── switch_thumb_material_dark.xml │ │ │ │ │ │ └── switch_thumb_material_light.xml │ │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_text_cursor_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-hdpi │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-mdpi │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xhdpi │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xxhdpi │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_text_cursor_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_text_cursor_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_text_cursor_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ └── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── abc_btn_borderless_material.xml │ │ │ │ │ │ ├── abc_btn_check_material.xml │ │ │ │ │ │ ├── abc_btn_default_mtrl_shape.xml │ │ │ │ │ │ ├── abc_btn_radio_material.xml │ │ │ │ │ │ ├── abc_cab_background_internal_bg.xml │ │ │ │ │ │ ├── abc_cab_background_top_material.xml │ │ │ │ │ │ ├── abc_dialog_material_background_dark.xml │ │ │ │ │ │ ├── abc_dialog_material_background_light.xml │ │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ │ ├── abc_item_background_holo_dark.xml │ │ │ │ │ │ ├── abc_item_background_holo_light.xml │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ │ │ │ │ ├── abc_list_selector_holo_dark.xml │ │ │ │ │ │ ├── abc_list_selector_holo_light.xml │ │ │ │ │ │ ├── abc_ratingbar_full_material.xml │ │ │ │ │ │ ├── abc_spinner_textfield_background_material.xml │ │ │ │ │ │ ├── abc_switch_thumb_material.xml │ │ │ │ │ │ ├── abc_tab_indicator_material.xml │ │ │ │ │ │ └── abc_textfield_search_material.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── abc_action_bar_title_item.xml │ │ │ │ │ │ ├── abc_action_bar_up_container.xml │ │ │ │ │ │ ├── abc_action_bar_view_list_nav_layout.xml │ │ │ │ │ │ ├── abc_action_menu_item_layout.xml │ │ │ │ │ │ ├── abc_action_menu_layout.xml │ │ │ │ │ │ ├── abc_action_mode_bar.xml │ │ │ │ │ │ ├── abc_action_mode_close_item_material.xml │ │ │ │ │ │ ├── abc_activity_chooser_view.xml │ │ │ │ │ │ ├── abc_activity_chooser_view_list_item.xml │ │ │ │ │ │ ├── abc_alert_dialog_material.xml │ │ │ │ │ │ ├── abc_dialog_title_material.xml │ │ │ │ │ │ ├── abc_expanded_menu_layout.xml │ │ │ │ │ │ ├── abc_list_menu_item_checkbox.xml │ │ │ │ │ │ ├── abc_list_menu_item_icon.xml │ │ │ │ │ │ ├── abc_list_menu_item_layout.xml │ │ │ │ │ │ ├── abc_list_menu_item_radio.xml │ │ │ │ │ │ ├── abc_popup_menu_item_layout.xml │ │ │ │ │ │ ├── abc_screen_content_include.xml │ │ │ │ │ │ ├── abc_screen_simple.xml │ │ │ │ │ │ ├── abc_screen_simple_overlay_action_mode.xml │ │ │ │ │ │ ├── abc_screen_toolbar.xml │ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ │ │ │ │ ├── abc_search_view.xml │ │ │ │ │ │ ├── abc_select_dialog_material.xml │ │ │ │ │ │ ├── abc_simple_dropdown_hint.xml │ │ │ │ │ │ ├── notification_media_action.xml │ │ │ │ │ │ ├── notification_media_cancel_action.xml │ │ │ │ │ │ ├── notification_template_big_media.xml │ │ │ │ │ │ ├── notification_template_big_media_narrow.xml │ │ │ │ │ │ ├── notification_template_lines.xml │ │ │ │ │ │ ├── notification_template_media.xml │ │ │ │ │ │ ├── notification_template_part_chronometer.xml │ │ │ │ │ │ ├── notification_template_part_time.xml │ │ │ │ │ │ ├── select_dialog_item_material.xml │ │ │ │ │ │ ├── select_dialog_multichoice_material.xml │ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml │ │ │ │ │ │ └── support_simple_spinner_dropdown_item.xml │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ │ ├── values-bn-rBD │ │ │ │ │ │ └── values-bn-rBD.xml │ │ │ │ │ │ ├── values-ca │ │ │ │ │ │ └── values-ca.xml │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ │ ├── values-da │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ │ ├── values-el │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ ├── values-et-rEE │ │ │ │ │ │ └── values-et-rEE.xml │ │ │ │ │ │ ├── values-eu-rES │ │ │ │ │ │ └── values-eu-rES.xml │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ ├── values-gl-rES │ │ │ │ │ │ └── values-gl-rES.xml │ │ │ │ │ │ ├── values-h720dp │ │ │ │ │ │ └── values-h720dp.xml │ │ │ │ │ │ ├── values-hdpi │ │ │ │ │ │ └── values-hdpi.xml │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ ├── values-hy-rAM │ │ │ │ │ │ └── values-hy-rAM.xml │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ ├── values-is-rIS │ │ │ │ │ │ └── values-is-rIS.xml │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ ├── values-ka-rGE │ │ │ │ │ │ └── values-ka-rGE.xml │ │ │ │ │ │ ├── values-kk-rKZ │ │ │ │ │ │ └── values-kk-rKZ.xml │ │ │ │ │ │ ├── values-km-rKH │ │ │ │ │ │ └── values-km-rKH.xml │ │ │ │ │ │ ├── values-kn-rIN │ │ │ │ │ │ └── values-kn-rIN.xml │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ ├── values-ky-rKG │ │ │ │ │ │ └── values-ky-rKG.xml │ │ │ │ │ │ ├── values-land │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ │ ├── values-large │ │ │ │ │ │ └── values-large.xml │ │ │ │ │ │ ├── values-lo-rLA │ │ │ │ │ │ └── values-lo-rLA.xml │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ ├── values-mk-rMK │ │ │ │ │ │ └── values-mk-rMK.xml │ │ │ │ │ │ ├── values-ml-rIN │ │ │ │ │ │ └── values-ml-rIN.xml │ │ │ │ │ │ ├── values-mn-rMN │ │ │ │ │ │ └── values-mn-rMN.xml │ │ │ │ │ │ ├── values-mr-rIN │ │ │ │ │ │ └── values-mr-rIN.xml │ │ │ │ │ │ ├── values-ms-rMY │ │ │ │ │ │ └── values-ms-rMY.xml │ │ │ │ │ │ ├── values-my-rMM │ │ │ │ │ │ └── values-my-rMM.xml │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ ├── values-ne-rNP │ │ │ │ │ │ └── values-ne-rNP.xml │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ ├── values-port │ │ │ │ │ │ └── values-port.xml │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ ├── values-si-rLK │ │ │ │ │ │ └── values-si-rLK.xml │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ │ ├── values-sw600dp │ │ │ │ │ │ └── values-sw600dp.xml │ │ │ │ │ │ ├── values-ta-rIN │ │ │ │ │ │ └── values-ta-rIN.xml │ │ │ │ │ │ ├── values-te-rIN │ │ │ │ │ │ └── values-te-rIN.xml │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ ├── values-tl │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ ├── values-ur-rPK │ │ │ │ │ │ └── values-ur-rPK.xml │ │ │ │ │ │ ├── values-uz-rUZ │ │ │ │ │ │ └── values-uz-rUZ.xml │ │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── values-v11.xml │ │ │ │ │ │ ├── values-v12 │ │ │ │ │ │ └── values-v12.xml │ │ │ │ │ │ ├── values-v14 │ │ │ │ │ │ └── values-v14.xml │ │ │ │ │ │ ├── values-v17 │ │ │ │ │ │ └── values-v17.xml │ │ │ │ │ │ ├── values-v18 │ │ │ │ │ │ └── values-v18.xml │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ ├── values-vi │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ ├── values-w360dp │ │ │ │ │ │ └── values-w360dp.xml │ │ │ │ │ │ ├── values-w480dp │ │ │ │ │ │ └── values-w480dp.xml │ │ │ │ │ │ ├── values-w500dp │ │ │ │ │ │ └── values-w500dp.xml │ │ │ │ │ │ ├── values-w600dp │ │ │ │ │ │ └── values-w600dp.xml │ │ │ │ │ │ ├── values-w720dp │ │ │ │ │ │ └── values-w720dp.xml │ │ │ │ │ │ ├── values-xlarge-land │ │ │ │ │ │ └── values-xlarge-land.xml │ │ │ │ │ │ ├── values-xlarge │ │ │ │ │ │ └── values-xlarge.xml │ │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ │ ├── values-zu │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── cardview-v7 │ │ │ │ │ └── 22.2.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── design │ │ │ │ │ └── 22.2.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ ├── annotations.zip │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── res │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── fab_in.xml │ │ │ │ │ │ ├── fab_out.xml │ │ │ │ │ │ ├── snackbar_in.xml │ │ │ │ │ │ └── snackbar_out.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── fab_background.xml │ │ │ │ │ │ └── snackbar_background.xml │ │ │ │ │ │ ├── layout-sw600dp │ │ │ │ │ │ └── layout_snackbar.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── design_navigation_item.xml │ │ │ │ │ │ ├── design_navigation_item_header.xml │ │ │ │ │ │ ├── design_navigation_item_separator.xml │ │ │ │ │ │ ├── design_navigation_item_subheader.xml │ │ │ │ │ │ ├── design_navigation_menu.xml │ │ │ │ │ │ ├── layout_snackbar.xml │ │ │ │ │ │ └── layout_snackbar_include.xml │ │ │ │ │ │ ├── values-land │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ │ ├── values-sw600dp │ │ │ │ │ │ └── values-sw600dp.xml │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ ├── recyclerview-v7 │ │ │ │ │ └── 22.2.0 │ │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ │ ├── R.txt │ │ │ │ │ │ ├── aapt │ │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ │ ├── jars │ │ │ │ │ │ └── classes.jar │ │ │ │ │ │ └── res │ │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ └── support-v4 │ │ │ │ │ └── 22.2.0 │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── aapt │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── aidl │ │ │ │ │ └── android │ │ │ │ │ │ └── support │ │ │ │ │ │ └── v4 │ │ │ │ │ │ └── media │ │ │ │ │ │ ├── MediaMetadataCompat.aidl │ │ │ │ │ │ ├── RatingCompat.aidl │ │ │ │ │ │ └── session │ │ │ │ │ │ ├── MediaSessionCompat.aidl │ │ │ │ │ │ ├── ParcelableVolumeInfo.aidl │ │ │ │ │ │ └── PlaybackStateCompat.aidl │ │ │ │ │ ├── annotations.zip │ │ │ │ │ └── jars │ │ │ │ │ ├── classes.jar │ │ │ │ │ └── libs │ │ │ │ │ └── internal_impl-22.2.0.jar │ │ │ ├── com.github.navasmdc │ │ │ │ └── MaterialDesign │ │ │ │ │ └── 1.5 │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ ├── aapt │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── assets │ │ │ │ │ └── sprite_check.png │ │ │ │ │ ├── jars │ │ │ │ │ └── classes.jar │ │ │ │ │ └── res │ │ │ │ │ ├── anim │ │ │ │ │ ├── dialog_main_hide_amination.xml │ │ │ │ │ ├── dialog_main_show_amination.xml │ │ │ │ │ ├── dialog_root_hide_amin.xml │ │ │ │ │ ├── dialog_root_show_amin.xml │ │ │ │ │ ├── progress_indeterminate_animation.xml │ │ │ │ │ ├── snackbar_hide_animation.xml │ │ │ │ │ └── snackbar_show_animation.xml │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── sprite_check.png │ │ │ │ │ ├── drawable-ldpi-v4 │ │ │ │ │ └── sprite_check.png │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── sprite_check.png │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ ├── dialog_background.9.png │ │ │ │ │ ├── float_button1_shadowp.png │ │ │ │ │ ├── float_button_shadow1.png │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ ├── ic_reloj_max.png │ │ │ │ │ └── sprite_check.png │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ └── sprite_check.png │ │ │ │ │ ├── drawable │ │ │ │ │ ├── background_button.9.png │ │ │ │ │ ├── background_button_float.xml │ │ │ │ │ ├── background_button_rectangle.xml │ │ │ │ │ ├── background_checkbox.xml │ │ │ │ │ ├── background_checkbox_check.xml │ │ │ │ │ ├── background_checkbox_uncheck.xml │ │ │ │ │ ├── background_progress.xml │ │ │ │ │ ├── background_switch_ball_uncheck.xml │ │ │ │ │ ├── background_transparent.xml │ │ │ │ │ ├── shadow_down.xml │ │ │ │ │ └── shadow_right.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── color_selector.xml │ │ │ │ │ ├── dialog.xml │ │ │ │ │ ├── number_indicator_spinner.xml │ │ │ │ │ ├── progress_dialog.xml │ │ │ │ │ └── snackbar.xml │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ ├── com.jenzz │ │ │ │ └── materialpreference │ │ │ │ │ └── 1.3 │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ ├── aapt │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── assets │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ │ │ └── Roboto-Regular.ttf │ │ │ │ │ ├── jars │ │ │ │ │ └── classes.jar │ │ │ │ │ └── res │ │ │ │ │ ├── layout │ │ │ │ │ ├── mp_checkbox_preference.xml │ │ │ │ │ ├── mp_preference.xml │ │ │ │ │ ├── mp_preference_category.xml │ │ │ │ │ └── mp_switch_preference.xml │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ ├── com.rengwuxian.materialedittext │ │ │ │ └── library │ │ │ │ │ └── 2.1.4 │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ ├── aapt │ │ │ │ │ └── AndroidManifest.xml │ │ │ │ │ ├── annotations.zip │ │ │ │ │ ├── jars │ │ │ │ │ └── classes.jar │ │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── met_ic_clear.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── met_ic_clear.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── met_ic_clear.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── met_ic_clear.png │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ └── met_ic_clear.png │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ ├── me.drakeet.materialdialog │ │ │ │ └── library │ │ │ │ │ └── 1.2.2 │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── R.txt │ │ │ │ │ ├── jars │ │ │ │ │ └── classes.jar │ │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ ├── button.xml │ │ │ │ │ ├── material_card.xml │ │ │ │ │ ├── material_card_nos.xml │ │ │ │ │ ├── material_card_nos_pressed.xml │ │ │ │ │ └── material_dialog_window.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── layout_materialdialog.xml │ │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ └── org.litepal.android │ │ │ │ └── core │ │ │ │ └── 1.2.1 │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── R.txt │ │ │ │ ├── aapt │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── jars │ │ │ │ └── classes.jar │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── values.xml │ │ ├── incremental │ │ │ ├── aidl │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── dependency.store │ │ │ │ └── debug │ │ │ │ │ └── dependency.store │ │ │ ├── mergeAssets │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── merger.xml │ │ │ │ └── debug │ │ │ │ │ └── merger.xml │ │ │ └── mergeResources │ │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── merger.xml │ │ │ │ └── debug │ │ │ │ └── merger.xml │ │ ├── manifests │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ └── full │ │ │ │ └── debug │ │ │ │ └── AndroidManifest.xml │ │ ├── pre-dexed │ │ │ └── debug │ │ │ │ ├── butterknife-6.1.0-ee11d329b9e18a8a5f7d31a7df0b05e26921f8c7.jar │ │ │ │ ├── classes-18baa50650228e671db2adad9723e10d08aee0da.jar │ │ │ │ ├── classes-30d0024ff3d36dfe4f3c99d2f116591e7b32fc43.jar │ │ │ │ ├── classes-3aa0275b8cc9ab96f5c030b32a0a6184ed6a03f4.jar │ │ │ │ ├── classes-4310695e0695e144dac096e297c7495a92fa4862.jar │ │ │ │ ├── classes-47a52e2e763800a63ca9ca3167932f794f36ad83.jar │ │ │ │ ├── classes-9114cd8b574ae88c5e7e875f45d6e54650cf8b99.jar │ │ │ │ ├── classes-998879ab540f53f42fbfb58aa76a9eba161c750a.jar │ │ │ │ ├── classes-c7d25e52d4153163eb818ce35e025e92158a50bf.jar │ │ │ │ ├── eventbus-2.4.0-211eccbef6dfd5c9566bf145f2159e390495e4f2.jar │ │ │ │ ├── internal_impl-22.2.0-f4d4fd8d610bcf839533e10b57f32b176f600688.jar │ │ │ │ ├── library-2.4.0-c55062a5d1a034e2e5bd5b1fdff2aed186ec5832.jar │ │ │ │ └── support-annotations-22.2.0-30451dcc80cdf940df3884542b58afce5fbf3f2e.jar │ │ ├── res │ │ │ └── debug │ │ │ │ ├── anim │ │ │ │ ├── abc_fade_in.xml │ │ │ │ ├── abc_fade_out.xml │ │ │ │ ├── abc_grow_fade_in_from_bottom.xml │ │ │ │ ├── abc_popup_enter.xml │ │ │ │ ├── abc_popup_exit.xml │ │ │ │ ├── abc_shrink_fade_out_from_bottom.xml │ │ │ │ ├── abc_slide_in_bottom.xml │ │ │ │ ├── abc_slide_in_top.xml │ │ │ │ ├── abc_slide_out_bottom.xml │ │ │ │ ├── abc_slide_out_top.xml │ │ │ │ ├── fab_in.xml │ │ │ │ ├── fab_out.xml │ │ │ │ ├── snackbar_in.xml │ │ │ │ └── snackbar_out.xml │ │ │ │ ├── color-v11 │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ └── abc_background_cache_hint_selector_material_light.xml │ │ │ │ ├── color │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ ├── abc_background_cache_hint_selector_material_light.xml │ │ │ │ ├── abc_primary_text_disable_only_material_dark.xml │ │ │ │ ├── abc_primary_text_disable_only_material_light.xml │ │ │ │ ├── abc_primary_text_material_dark.xml │ │ │ │ ├── abc_primary_text_material_light.xml │ │ │ │ ├── abc_search_url_text.xml │ │ │ │ ├── abc_secondary_text_material_dark.xml │ │ │ │ ├── abc_secondary_text_material_light.xml │ │ │ │ ├── switch_thumb_material_dark.xml │ │ │ │ └── switch_thumb_material_light.xml │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ ├── abc_text_cursor_mtrl_alpha.9.png │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ └── met_ic_clear.png │ │ │ │ ├── drawable-ldrtl-hdpi │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ ├── drawable-ldrtl-mdpi │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ ├── drawable-ldrtl-xhdpi │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ ├── drawable-ldrtl-xxhdpi │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ ├── drawable-ldrtl-xxxhdpi │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ ├── abc_text_cursor_mtrl_alpha.9.png │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ └── met_ic_clear.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ ├── abc_text_cursor_mtrl_alpha.9.png │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ └── met_ic_clear.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ ├── abc_btn_rating_star_off_mtrl_alpha.png │ │ │ │ ├── abc_btn_rating_star_on_mtrl_alpha.png │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ ├── abc_ic_go_search_api_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ ├── abc_text_cursor_mtrl_alpha.9.png │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ └── met_ic_clear.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ ├── abc_ic_ab_back_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_clear_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_moreoverflow_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ ├── abc_ic_search_api_mtrl_alpha.png │ │ │ │ ├── abc_ic_voice_search_api_mtrl_alpha.png │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ └── met_ic_clear.png │ │ │ │ ├── drawable │ │ │ │ ├── abc_btn_borderless_material.xml │ │ │ │ ├── abc_btn_check_material.xml │ │ │ │ ├── abc_btn_default_mtrl_shape.xml │ │ │ │ ├── abc_btn_radio_material.xml │ │ │ │ ├── abc_cab_background_internal_bg.xml │ │ │ │ ├── abc_cab_background_top_material.xml │ │ │ │ ├── abc_dialog_material_background_dark.xml │ │ │ │ ├── abc_dialog_material_background_light.xml │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ ├── abc_item_background_holo_dark.xml │ │ │ │ ├── abc_item_background_holo_light.xml │ │ │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ │ │ ├── abc_list_selector_holo_dark.xml │ │ │ │ ├── abc_list_selector_holo_light.xml │ │ │ │ ├── abc_ratingbar_full_material.xml │ │ │ │ ├── abc_spinner_textfield_background_material.xml │ │ │ │ ├── abc_switch_thumb_material.xml │ │ │ │ ├── abc_tab_indicator_material.xml │ │ │ │ ├── abc_textfield_search_material.xml │ │ │ │ ├── activated_background.xml │ │ │ │ ├── fab_background.xml │ │ │ │ ├── ic_done_white.png │ │ │ │ ├── ic_edit_white.png │ │ │ │ └── snackbar_background.xml │ │ │ │ ├── layout-sw600dp │ │ │ │ └── layout_snackbar.xml │ │ │ │ ├── layout │ │ │ │ ├── abc_action_bar_title_item.xml │ │ │ │ ├── abc_action_bar_up_container.xml │ │ │ │ ├── abc_action_bar_view_list_nav_layout.xml │ │ │ │ ├── abc_action_menu_item_layout.xml │ │ │ │ ├── abc_action_menu_layout.xml │ │ │ │ ├── abc_action_mode_bar.xml │ │ │ │ ├── abc_action_mode_close_item_material.xml │ │ │ │ ├── abc_activity_chooser_view.xml │ │ │ │ ├── abc_activity_chooser_view_list_item.xml │ │ │ │ ├── abc_alert_dialog_material.xml │ │ │ │ ├── abc_dialog_title_material.xml │ │ │ │ ├── abc_expanded_menu_layout.xml │ │ │ │ ├── abc_list_menu_item_checkbox.xml │ │ │ │ ├── abc_list_menu_item_icon.xml │ │ │ │ ├── abc_list_menu_item_layout.xml │ │ │ │ ├── abc_list_menu_item_radio.xml │ │ │ │ ├── abc_popup_menu_item_layout.xml │ │ │ │ ├── abc_screen_content_include.xml │ │ │ │ ├── abc_screen_simple.xml │ │ │ │ ├── abc_screen_simple_overlay_action_mode.xml │ │ │ │ ├── abc_screen_toolbar.xml │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ │ │ ├── abc_search_view.xml │ │ │ │ ├── abc_select_dialog_material.xml │ │ │ │ ├── abc_simple_dropdown_hint.xml │ │ │ │ ├── activity_edit_note.xml │ │ │ │ ├── activity_edit_note_type.xml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_setting.xml │ │ │ │ ├── design_navigation_item.xml │ │ │ │ ├── design_navigation_item_header.xml │ │ │ │ ├── design_navigation_item_separator.xml │ │ │ │ ├── design_navigation_item_subheader.xml │ │ │ │ ├── design_navigation_menu.xml │ │ │ │ ├── drawer_list_item_layout.xml │ │ │ │ ├── edit_layout.xml │ │ │ │ ├── layout_snackbar.xml │ │ │ │ ├── layout_snackbar_include.xml │ │ │ │ ├── mp_checkbox_preference.xml │ │ │ │ ├── mp_preference.xml │ │ │ │ ├── mp_preference_category.xml │ │ │ │ ├── mp_switch_preference.xml │ │ │ │ ├── note_list_all.xml │ │ │ │ ├── notes_item_layout.xml │ │ │ │ ├── notification_media_action.xml │ │ │ │ ├── notification_media_cancel_action.xml │ │ │ │ ├── notification_template_big_media.xml │ │ │ │ ├── notification_template_big_media_narrow.xml │ │ │ │ ├── notification_template_lines.xml │ │ │ │ ├── notification_template_media.xml │ │ │ │ ├── notification_template_part_chronometer.xml │ │ │ │ ├── notification_template_part_time.xml │ │ │ │ ├── select_dialog_item_material.xml │ │ │ │ ├── select_dialog_multichoice_material.xml │ │ │ │ ├── select_dialog_singlechoice_material.xml │ │ │ │ ├── simple_spinner_item.xml │ │ │ │ ├── support_simple_spinner_dropdown_item.xml │ │ │ │ └── toolbar.xml │ │ │ │ ├── menu │ │ │ │ ├── menu_edit_note.xml │ │ │ │ ├── menu_edit_note_type.xml │ │ │ │ └── menu_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-af │ │ │ │ └── values-af.xml │ │ │ │ ├── values-am │ │ │ │ └── values-am.xml │ │ │ │ ├── values-ar │ │ │ │ └── values-ar.xml │ │ │ │ ├── values-bg │ │ │ │ └── values-bg.xml │ │ │ │ ├── values-bn-rBD │ │ │ │ └── values-bn-rBD.xml │ │ │ │ ├── values-ca │ │ │ │ └── values-ca.xml │ │ │ │ ├── values-cs │ │ │ │ └── values-cs.xml │ │ │ │ ├── values-da │ │ │ │ └── values-da.xml │ │ │ │ ├── values-de │ │ │ │ └── values-de.xml │ │ │ │ ├── values-el │ │ │ │ └── values-el.xml │ │ │ │ ├── values-en-rGB │ │ │ │ └── values-en-rGB.xml │ │ │ │ ├── values-en-rIN │ │ │ │ └── values-en-rIN.xml │ │ │ │ ├── values-es-rUS │ │ │ │ └── values-es-rUS.xml │ │ │ │ ├── values-es │ │ │ │ └── values-es.xml │ │ │ │ ├── values-et-rEE │ │ │ │ └── values-et-rEE.xml │ │ │ │ ├── values-eu-rES │ │ │ │ └── values-eu-rES.xml │ │ │ │ ├── values-fa │ │ │ │ └── values-fa.xml │ │ │ │ ├── values-fi │ │ │ │ └── values-fi.xml │ │ │ │ ├── values-fr-rCA │ │ │ │ └── values-fr-rCA.xml │ │ │ │ ├── values-fr │ │ │ │ └── values-fr.xml │ │ │ │ ├── values-gl-rES │ │ │ │ └── values-gl-rES.xml │ │ │ │ ├── values-h720dp │ │ │ │ └── values-h720dp.xml │ │ │ │ ├── values-hdpi │ │ │ │ └── values-hdpi.xml │ │ │ │ ├── values-hi │ │ │ │ └── values-hi.xml │ │ │ │ ├── values-hr │ │ │ │ └── values-hr.xml │ │ │ │ ├── values-hu │ │ │ │ └── values-hu.xml │ │ │ │ ├── values-hy-rAM │ │ │ │ └── values-hy-rAM.xml │ │ │ │ ├── values-in │ │ │ │ └── values-in.xml │ │ │ │ ├── values-is-rIS │ │ │ │ └── values-is-rIS.xml │ │ │ │ ├── values-it │ │ │ │ └── values-it.xml │ │ │ │ ├── values-iw │ │ │ │ └── values-iw.xml │ │ │ │ ├── values-ja │ │ │ │ └── values-ja.xml │ │ │ │ ├── values-ka-rGE │ │ │ │ └── values-ka-rGE.xml │ │ │ │ ├── values-kk-rKZ │ │ │ │ └── values-kk-rKZ.xml │ │ │ │ ├── values-km-rKH │ │ │ │ └── values-km-rKH.xml │ │ │ │ ├── values-kn-rIN │ │ │ │ └── values-kn-rIN.xml │ │ │ │ ├── values-ko │ │ │ │ └── values-ko.xml │ │ │ │ ├── values-ky-rKG │ │ │ │ └── values-ky-rKG.xml │ │ │ │ ├── values-land │ │ │ │ └── values-land.xml │ │ │ │ ├── values-large │ │ │ │ └── values-large.xml │ │ │ │ ├── values-lo-rLA │ │ │ │ └── values-lo-rLA.xml │ │ │ │ ├── values-lt │ │ │ │ └── values-lt.xml │ │ │ │ ├── values-lv │ │ │ │ └── values-lv.xml │ │ │ │ ├── values-mk-rMK │ │ │ │ └── values-mk-rMK.xml │ │ │ │ ├── values-ml-rIN │ │ │ │ └── values-ml-rIN.xml │ │ │ │ ├── values-mn-rMN │ │ │ │ └── values-mn-rMN.xml │ │ │ │ ├── values-mr-rIN │ │ │ │ └── values-mr-rIN.xml │ │ │ │ ├── values-ms-rMY │ │ │ │ └── values-ms-rMY.xml │ │ │ │ ├── values-my-rMM │ │ │ │ └── values-my-rMM.xml │ │ │ │ ├── values-nb │ │ │ │ └── values-nb.xml │ │ │ │ ├── values-ne-rNP │ │ │ │ └── values-ne-rNP.xml │ │ │ │ ├── values-nl │ │ │ │ └── values-nl.xml │ │ │ │ ├── values-pl │ │ │ │ └── values-pl.xml │ │ │ │ ├── values-port │ │ │ │ └── values-port.xml │ │ │ │ ├── values-pt-rPT │ │ │ │ └── values-pt-rPT.xml │ │ │ │ ├── values-pt │ │ │ │ └── values-pt.xml │ │ │ │ ├── values-ro │ │ │ │ └── values-ro.xml │ │ │ │ ├── values-ru │ │ │ │ └── values-ru.xml │ │ │ │ ├── values-si-rLK │ │ │ │ └── values-si-rLK.xml │ │ │ │ ├── values-sk │ │ │ │ └── values-sk.xml │ │ │ │ ├── values-sl │ │ │ │ └── values-sl.xml │ │ │ │ ├── values-sr │ │ │ │ └── values-sr.xml │ │ │ │ ├── values-sv │ │ │ │ └── values-sv.xml │ │ │ │ ├── values-sw │ │ │ │ └── values-sw.xml │ │ │ │ ├── values-sw600dp │ │ │ │ └── values-sw600dp.xml │ │ │ │ ├── values-ta-rIN │ │ │ │ └── values-ta-rIN.xml │ │ │ │ ├── values-te-rIN │ │ │ │ └── values-te-rIN.xml │ │ │ │ ├── values-th │ │ │ │ └── values-th.xml │ │ │ │ ├── values-tl │ │ │ │ └── values-tl.xml │ │ │ │ ├── values-tr │ │ │ │ └── values-tr.xml │ │ │ │ ├── values-uk │ │ │ │ └── values-uk.xml │ │ │ │ ├── values-ur-rPK │ │ │ │ └── values-ur-rPK.xml │ │ │ │ ├── values-uz-rUZ │ │ │ │ └── values-uz-rUZ.xml │ │ │ │ ├── values-v11 │ │ │ │ └── values-v11.xml │ │ │ │ ├── values-v12 │ │ │ │ └── values-v12.xml │ │ │ │ ├── values-v14 │ │ │ │ └── values-v14.xml │ │ │ │ ├── values-v17 │ │ │ │ └── values-v17.xml │ │ │ │ ├── values-v18 │ │ │ │ └── values-v18.xml │ │ │ │ ├── values-v19 │ │ │ │ └── values-v19.xml │ │ │ │ ├── values-v21 │ │ │ │ └── values-v21.xml │ │ │ │ ├── values-vi │ │ │ │ └── values-vi.xml │ │ │ │ ├── values-w360dp │ │ │ │ └── values-w360dp.xml │ │ │ │ ├── values-w480dp │ │ │ │ └── values-w480dp.xml │ │ │ │ ├── values-w500dp │ │ │ │ └── values-w500dp.xml │ │ │ │ ├── values-w600dp │ │ │ │ └── values-w600dp.xml │ │ │ │ ├── values-w720dp │ │ │ │ └── values-w720dp.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── values-w820dp.xml │ │ │ │ ├── values-xlarge-land │ │ │ │ └── values-xlarge-land.xml │ │ │ │ ├── values-xlarge │ │ │ │ └── values-xlarge.xml │ │ │ │ ├── values-zh-rCN │ │ │ │ └── values-zh-rCN.xml │ │ │ │ ├── values-zh-rHK │ │ │ │ └── values-zh-rHK.xml │ │ │ │ ├── values-zh-rTW │ │ │ │ └── values-zh-rTW.xml │ │ │ │ ├── values-zu │ │ │ │ └── values-zu.xml │ │ │ │ ├── values │ │ │ │ └── values.xml │ │ │ │ └── xml │ │ │ │ ├── prefs.xml │ │ │ │ └── searchable.xml │ │ ├── resources │ │ │ ├── resources-debug-androidTest.ap_ │ │ │ └── resources-debug.ap_ │ │ └── symbols │ │ │ └── debug │ │ │ └── R.txt │ └── outputs │ │ ├── apk │ │ ├── evernote-debug-unaligned.apk │ │ └── evernote-debug.apk │ │ └── logs │ │ └── manifest-merger-debug-report.txt ├── evernote.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── liaobb │ │ └── evernote │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── litepal.xml │ ├── java │ └── com │ │ └── liaobb │ │ └── evernote │ │ ├── adapter │ │ ├── DrawerListAdapter.java │ │ └── NoteListAdapter.java │ │ ├── bean │ │ ├── Note.java │ │ └── NoteType.java │ │ ├── common │ │ ├── App.java │ │ ├── DoubleClickExitHelper.java │ │ └── NoteUtils.java │ │ ├── ui │ │ ├── EditNoteActivity.java │ │ ├── EditNoteTypeActivity.java │ │ ├── MainActivity.java │ │ ├── NoteListFragment.java │ │ ├── SettingActivity.java │ │ ├── SettingFragment.java │ │ └── ToolbarActivity.java │ │ └── utils │ │ └── Utils.java │ └── res │ ├── drawable │ ├── activated_background.xml │ ├── ic_done_white.png │ └── ic_edit_white.png │ ├── layout │ ├── activity_edit_note.xml │ ├── activity_edit_note_type.xml │ ├── activity_main.xml │ ├── activity_setting.xml │ ├── drawer_list_item_layout.xml │ ├── edit_layout.xml │ ├── note_list_all.xml │ ├── notes_item_layout.xml │ ├── simple_spinner_item.xml │ └── toolbar.xml │ ├── menu │ ├── menu_edit_note.xml │ ├── menu_edit_note_type.xml │ └── menu_main.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── values-v19 │ └── styles.xml │ ├── values-w820dp │ └── dimens.xml │ ├── values │ ├── arrays.xml │ ├── color.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ ├── prefs.xml │ └── searchable.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── local.properties ├── screenshot ├── 1.jpeg ├── 2.jpeg ├── 3.jpeg ├── 4.jpeg ├── 5.jpeg └── 6.jpeg └── settings.gradle /.gradle/2.4/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Wed Jul 08 10:16:23 CST 2015 2 | -------------------------------------------------------------------------------- /.gradle/2.4/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.gradle/2.4/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /.gradle/2.4/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.gradle/2.4/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /.gradle/2.4/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.gradle/2.4/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /.gradle/2.4/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.gradle/2.4/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /.gradle/2.4/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.gradle/2.4/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Notes-master -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/libraries/appcompat_v7_22_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/libraries/appcompat_v7_22_2_0.xml -------------------------------------------------------------------------------- /.idea/libraries/butterknife_6_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/libraries/butterknife_6_1_0.xml -------------------------------------------------------------------------------- /.idea/libraries/cardview_v7_22_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/libraries/cardview_v7_22_2_0.xml -------------------------------------------------------------------------------- /.idea/libraries/core_1_2_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/libraries/core_1_2_1.xml -------------------------------------------------------------------------------- /.idea/libraries/design_22_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/libraries/design_22_2_0.xml -------------------------------------------------------------------------------- /.idea/libraries/eventbus_2_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/libraries/eventbus_2_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/library_2_1_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/libraries/library_2_1_4.xml -------------------------------------------------------------------------------- /.idea/libraries/library_2_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/libraries/library_2_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/materialpreference_1_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/libraries/materialpreference_1_3.xml -------------------------------------------------------------------------------- /.idea/libraries/recyclerview_v7_22_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/libraries/recyclerview_v7_22_2_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_annotations_22_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/libraries/support_annotations_22_2_0.xml -------------------------------------------------------------------------------- /.idea/libraries/support_v4_22_2_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/libraries/support_v4_22_2_0.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Notes-master.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/Notes-master.iml -------------------------------------------------------------------------------- /Notes.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/Notes.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/README.md -------------------------------------------------------------------------------- /evernote/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build.gradle -------------------------------------------------------------------------------- /evernote/build/generated/source/buildConfig/debug/com/liaobb/evernote/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/generated/source/buildConfig/debug/com/liaobb/evernote/BuildConfig.java -------------------------------------------------------------------------------- /evernote/build/generated/source/r/debug/android/support/design/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/generated/source/r/debug/android/support/design/R.java -------------------------------------------------------------------------------- /evernote/build/generated/source/r/debug/android/support/v7/appcompat/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/generated/source/r/debug/android/support/v7/appcompat/R.java -------------------------------------------------------------------------------- /evernote/build/generated/source/r/debug/android/support/v7/cardview/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/generated/source/r/debug/android/support/v7/cardview/R.java -------------------------------------------------------------------------------- /evernote/build/generated/source/r/debug/android/support/v7/recyclerview/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/generated/source/r/debug/android/support/v7/recyclerview/R.java -------------------------------------------------------------------------------- /evernote/build/generated/source/r/debug/com/jenzz/materialpreference/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/generated/source/r/debug/com/jenzz/materialpreference/R.java -------------------------------------------------------------------------------- /evernote/build/generated/source/r/debug/com/liaobb/evernote/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/generated/source/r/debug/com/liaobb/evernote/R.java -------------------------------------------------------------------------------- /evernote/build/generated/source/r/debug/com/rengwuxian/materialedittext/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/generated/source/r/debug/com/rengwuxian/materialedittext/R.java -------------------------------------------------------------------------------- /evernote/build/generated/source/r/debug/org/litepal/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/generated/source/r/debug/org/litepal/R.java -------------------------------------------------------------------------------- /evernote/build/intermediates/assets/debug/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/assets/debug/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /evernote/build/intermediates/assets/debug/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/assets/debug/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /evernote/build/intermediates/assets/debug/litepal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/assets/debug/litepal.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/design/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/design/R$anim.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/design/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/design/R$attr.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/design/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/design/R$bool.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/design/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/design/R$color.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/design/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/design/R$dimen.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/design/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/design/R$drawable.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/design/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/design/R$id.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/design/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/design/R$integer.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/design/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/design/R$layout.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/design/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/design/R$string.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/design/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/design/R$style.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/design/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/design/R$styleable.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/design/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/design/R.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/cardview/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/cardview/R$attr.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/cardview/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/cardview/R$color.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/cardview/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/cardview/R$dimen.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/cardview/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/cardview/R$style.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/cardview/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/cardview/R$styleable.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/cardview/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/cardview/R.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/recyclerview/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/recyclerview/R$attr.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/recyclerview/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/recyclerview/R$dimen.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/recyclerview/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/recyclerview/R$id.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/recyclerview/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/recyclerview/R$styleable.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/android/support/v7/recyclerview/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/android/support/v7/recyclerview/R.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$anim.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$attr.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$bool.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$color.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$dimen.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$drawable.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$id.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$integer.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$layout.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$string.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$style.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R$styleable.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/jenzz/materialpreference/R.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/BuildConfig.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$anim.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$array.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$array.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$attr.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$bool.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$color.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$dimen.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$drawable.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$id.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$integer.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$layout.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$menu.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$mipmap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$mipmap.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$string.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$style.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$styleable.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$xml.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/R$xml.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/R.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/adapter/DrawerListAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/adapter/DrawerListAdapter.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/adapter/NoteListAdapter$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/adapter/NoteListAdapter$1.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/adapter/NoteListAdapter$2$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/adapter/NoteListAdapter$2$1.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/adapter/NoteListAdapter$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/adapter/NoteListAdapter$2.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/adapter/NoteListAdapter$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/adapter/NoteListAdapter$3.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/adapter/NoteListAdapter$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/adapter/NoteListAdapter$4.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/adapter/NoteListAdapter$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/adapter/NoteListAdapter$5.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/adapter/NoteListAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/adapter/NoteListAdapter.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/bean/Note.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/bean/Note.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/bean/NoteType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/bean/NoteType.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/common/App.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/common/App.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/common/DoubleClickExitHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/common/DoubleClickExitHelper.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/common/NoteUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/common/NoteUtils.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/EditNoteActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/EditNoteActivity$1.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/EditNoteActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/EditNoteActivity$2.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/EditNoteActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/EditNoteActivity.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/EditNoteTypeActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/EditNoteTypeActivity.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity$$ViewInjector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity$$ViewInjector.java -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity$1.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity$2.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity$3.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity$4.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity$5.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity$6.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity$7.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity$7.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity$8.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity$8.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/MainActivity.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/NoteListFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/NoteListFragment$1.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/NoteListFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/NoteListFragment.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/SettingActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/SettingActivity.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/SettingFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/SettingFragment$1.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/SettingFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/SettingFragment.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/ToolbarActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/ui/ToolbarActivity.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/liaobb/evernote/utils/Utils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/liaobb/evernote/utils/Utils.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$anim.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$attr.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$bool.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$color.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$dimen.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$drawable.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$id.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$integer.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$layout.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$string.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$style.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R$styleable.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/com/rengwuxian/materialedittext/R.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/org/litepal/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/org/litepal/R$anim.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/org/litepal/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/org/litepal/R$attr.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/org/litepal/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/org/litepal/R$bool.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/org/litepal/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/org/litepal/R$color.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/org/litepal/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/org/litepal/R$dimen.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/org/litepal/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/org/litepal/R$drawable.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/org/litepal/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/org/litepal/R$id.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/org/litepal/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/org/litepal/R$integer.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/org/litepal/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/org/litepal/R$layout.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/org/litepal/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/org/litepal/R$string.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/org/litepal/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/org/litepal/R$style.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/org/litepal/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/org/litepal/R$styleable.class -------------------------------------------------------------------------------- /evernote/build/intermediates/classes/debug/org/litepal/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/classes/debug/org/litepal/R.class -------------------------------------------------------------------------------- /evernote/build/intermediates/dex/debug/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/dex/debug/classes.dex -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/R.txt -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/annotations.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.android.support/appcompat-v7/22.2.0/annotations.zip -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.android.support/cardview-v7/22.2.0/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.android.support/cardview-v7/22.2.0/R.txt -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.android.support/cardview-v7/22.2.0/jars/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.android.support/cardview-v7/22.2.0/jars/classes.jar -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.android.support/design/22.2.0/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.android.support/design/22.2.0/AndroidManifest.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.android.support/design/22.2.0/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.android.support/design/22.2.0/R.txt -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.android.support/design/22.2.0/annotations.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.android.support/design/22.2.0/annotations.zip -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.android.support/design/22.2.0/jars/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.android.support/design/22.2.0/jars/classes.jar -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.android.support/design/22.2.0/res/anim/fab_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.android.support/design/22.2.0/res/anim/fab_in.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.android.support/design/22.2.0/res/anim/fab_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.android.support/design/22.2.0/res/anim/fab_out.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.android.support/design/22.2.0/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.android.support/design/22.2.0/res/values/values.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/22.2.0/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.android.support/recyclerview-v7/22.2.0/R.txt -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/annotations.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/annotations.zip -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/jars/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.android.support/support-v4/22.2.0/jars/classes.jar -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.github.navasmdc/MaterialDesign/1.5/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.github.navasmdc/MaterialDesign/1.5/R.txt -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.github.navasmdc/MaterialDesign/1.5/jars/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.github.navasmdc/MaterialDesign/1.5/jars/classes.jar -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.jenzz/materialpreference/1.3/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.jenzz/materialpreference/1.3/AndroidManifest.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.jenzz/materialpreference/1.3/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.jenzz/materialpreference/1.3/R.txt -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.jenzz/materialpreference/1.3/jars/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.jenzz/materialpreference/1.3/jars/classes.jar -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.jenzz/materialpreference/1.3/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.jenzz/materialpreference/1.3/res/values/values.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/com.rengwuxian.materialedittext/library/2.1.4/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/com.rengwuxian.materialedittext/library/2.1.4/R.txt -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/me.drakeet.materialdialog/library/1.2.2/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/me.drakeet.materialdialog/library/1.2.2/R.txt -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/org.litepal.android/core/1.2.1/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/org.litepal.android/core/1.2.1/AndroidManifest.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/org.litepal.android/core/1.2.1/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/org.litepal.android/core/1.2.1/R.txt -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/org.litepal.android/core/1.2.1/aapt/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/org.litepal.android/core/1.2.1/aapt/AndroidManifest.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/org.litepal.android/core/1.2.1/jars/classes.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/org.litepal.android/core/1.2.1/jars/classes.jar -------------------------------------------------------------------------------- /evernote/build/intermediates/exploded-aar/org.litepal.android/core/1.2.1/res/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/exploded-aar/org.litepal.android/core/1.2.1/res/values/values.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/incremental/aidl/androidTest/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /evernote/build/intermediates/incremental/aidl/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /evernote/build/intermediates/incremental/mergeAssets/androidTest/debug/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/incremental/mergeAssets/androidTest/debug/merger.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/incremental/mergeAssets/debug/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/incremental/mergeAssets/debug/merger.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/incremental/mergeResources/androidTest/debug/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/incremental/mergeResources/androidTest/debug/merger.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/incremental/mergeResources/debug/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/incremental/mergeResources/debug/merger.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/manifests/androidTest/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/manifests/androidTest/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/manifests/full/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/manifests/full/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/pre-dexed/debug/classes-18baa50650228e671db2adad9723e10d08aee0da.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/pre-dexed/debug/classes-18baa50650228e671db2adad9723e10d08aee0da.jar -------------------------------------------------------------------------------- /evernote/build/intermediates/pre-dexed/debug/classes-30d0024ff3d36dfe4f3c99d2f116591e7b32fc43.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/pre-dexed/debug/classes-30d0024ff3d36dfe4f3c99d2f116591e7b32fc43.jar -------------------------------------------------------------------------------- /evernote/build/intermediates/pre-dexed/debug/classes-3aa0275b8cc9ab96f5c030b32a0a6184ed6a03f4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/pre-dexed/debug/classes-3aa0275b8cc9ab96f5c030b32a0a6184ed6a03f4.jar -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/anim/abc_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/anim/abc_fade_in.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/anim/abc_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/anim/abc_fade_out.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/anim/abc_grow_fade_in_from_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/anim/abc_grow_fade_in_from_bottom.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/anim/abc_popup_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/anim/abc_popup_enter.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/anim/abc_popup_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/anim/abc_popup_exit.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/anim/abc_shrink_fade_out_from_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/anim/abc_shrink_fade_out_from_bottom.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/anim/abc_slide_in_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/anim/abc_slide_in_bottom.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/anim/abc_slide_in_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/anim/abc_slide_in_top.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/anim/abc_slide_out_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/anim/abc_slide_out_bottom.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/anim/abc_slide_out_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/anim/abc_slide_out_top.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/anim/fab_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/anim/fab_in.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/anim/fab_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/anim/fab_out.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/anim/snackbar_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/anim/snackbar_in.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/anim/snackbar_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/anim/snackbar_out.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/color/abc_primary_text_disable_only_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/color/abc_primary_text_disable_only_material_dark.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/color/abc_primary_text_disable_only_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/color/abc_primary_text_disable_only_material_light.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/color/abc_primary_text_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/color/abc_primary_text_material_dark.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/color/abc_primary_text_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/color/abc_primary_text_material_light.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/color/abc_search_url_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/color/abc_search_url_text.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/color/abc_secondary_text_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/color/abc_secondary_text_material_dark.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/color/abc_secondary_text_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/color/abc_secondary_text_material_light.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/color/switch_thumb_material_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/color/switch_thumb_material_dark.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/color/switch_thumb_material_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/color/switch_thumb_material_light.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_text_cursor_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_text_cursor_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-hdpi/met_ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-hdpi/met_ic_clear.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_text_cursor_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_text_cursor_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-mdpi/met_ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-mdpi/met_ic_clear.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_text_cursor_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_text_cursor_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xhdpi/met_ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xhdpi/met_ic_clear.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_list_focused_holo.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_list_longpressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_list_longpressed_holo.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_list_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_list_pressed_holo_light.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_text_cursor_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_text_cursor_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxhdpi/met_ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxhdpi/met_ic_clear.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable-xxxhdpi/met_ic_clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable-xxxhdpi/met_ic_clear.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/abc_btn_borderless_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/abc_btn_borderless_material.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/abc_btn_check_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/abc_btn_check_material.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/abc_btn_default_mtrl_shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/abc_btn_default_mtrl_shape.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/abc_btn_radio_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/abc_btn_radio_material.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/abc_cab_background_internal_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/abc_cab_background_internal_bg.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/abc_cab_background_top_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/abc_cab_background_top_material.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/abc_dialog_material_background_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/abc_dialog_material_background_dark.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/abc_dialog_material_background_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/abc_dialog_material_background_light.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/abc_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/abc_edit_text_material.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/abc_item_background_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/abc_item_background_holo_dark.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/abc_item_background_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/abc_item_background_holo_light.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/abc_list_selector_holo_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/abc_list_selector_holo_dark.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/abc_list_selector_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/abc_list_selector_holo_light.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/abc_ratingbar_full_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/abc_ratingbar_full_material.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/abc_spinner_textfield_background_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/abc_spinner_textfield_background_material.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/abc_switch_thumb_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/abc_switch_thumb_material.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/abc_tab_indicator_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/abc_tab_indicator_material.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/abc_textfield_search_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/abc_textfield_search_material.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/activated_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/activated_background.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/fab_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/fab_background.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/ic_done_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/ic_done_white.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/ic_edit_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/ic_edit_white.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/drawable/snackbar_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/drawable/snackbar_background.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout-sw600dp/layout_snackbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout-sw600dp/layout_snackbar.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_action_bar_title_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_action_bar_title_item.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_action_bar_up_container.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_action_bar_up_container.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_action_bar_view_list_nav_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_action_bar_view_list_nav_layout.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_action_menu_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_action_menu_item_layout.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_action_menu_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_action_menu_layout.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_action_mode_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_action_mode_bar.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_action_mode_close_item_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_action_mode_close_item_material.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_activity_chooser_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_activity_chooser_view.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_activity_chooser_view_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_activity_chooser_view_list_item.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_alert_dialog_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_alert_dialog_material.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_dialog_title_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_dialog_title_material.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_expanded_menu_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_expanded_menu_layout.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_list_menu_item_checkbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_list_menu_item_checkbox.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_list_menu_item_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_list_menu_item_icon.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_list_menu_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_list_menu_item_layout.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_list_menu_item_radio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_list_menu_item_radio.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_popup_menu_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_popup_menu_item_layout.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_screen_content_include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_screen_content_include.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_screen_simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_screen_simple.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_screen_simple_overlay_action_mode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_screen_simple_overlay_action_mode.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_screen_toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_screen_toolbar.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_search_dropdown_item_icons_2line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_search_dropdown_item_icons_2line.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_search_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_search_view.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_select_dialog_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_select_dialog_material.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/abc_simple_dropdown_hint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/abc_simple_dropdown_hint.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/activity_edit_note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/activity_edit_note.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/activity_edit_note_type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/activity_edit_note_type.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/activity_main.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/activity_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/activity_setting.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/design_navigation_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/design_navigation_item.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/design_navigation_item_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/design_navigation_item_header.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/design_navigation_item_separator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/design_navigation_item_separator.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/design_navigation_item_subheader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/design_navigation_item_subheader.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/design_navigation_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/design_navigation_menu.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/drawer_list_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/drawer_list_item_layout.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/edit_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/edit_layout.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/layout_snackbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/layout_snackbar.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/layout_snackbar_include.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/layout_snackbar_include.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/mp_checkbox_preference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/mp_checkbox_preference.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/mp_preference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/mp_preference.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/mp_preference_category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/mp_preference_category.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/mp_switch_preference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/mp_switch_preference.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/note_list_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/note_list_all.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/notes_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/notes_item_layout.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/notification_media_action.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/notification_media_action.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/notification_media_cancel_action.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/notification_media_cancel_action.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/notification_template_big_media.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/notification_template_big_media.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/notification_template_big_media_narrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/notification_template_big_media_narrow.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/notification_template_lines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/notification_template_lines.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/notification_template_media.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/notification_template_media.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/notification_template_part_chronometer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/notification_template_part_chronometer.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/notification_template_part_time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/notification_template_part_time.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/select_dialog_item_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/select_dialog_item_material.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/select_dialog_multichoice_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/select_dialog_multichoice_material.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/select_dialog_singlechoice_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/select_dialog_singlechoice_material.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/simple_spinner_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/simple_spinner_item.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/support_simple_spinner_dropdown_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/support_simple_spinner_dropdown_item.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/layout/toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/layout/toolbar.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/menu/menu_edit_note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/menu/menu_edit_note.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/menu/menu_edit_note_type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/menu/menu_edit_note_type.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/menu/menu_main.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-af/values-af.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-af/values-af.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-am/values-am.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-am/values-am.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-ar/values-ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-ar/values-ar.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-bg/values-bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-bg/values-bg.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-bn-rBD/values-bn-rBD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-bn-rBD/values-bn-rBD.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-ca/values-ca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-ca/values-ca.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-cs/values-cs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-cs/values-cs.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-da/values-da.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-da/values-da.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-de/values-de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-de/values-de.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-el/values-el.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-el/values-el.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-en-rGB/values-en-rGB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-en-rGB/values-en-rGB.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-en-rIN/values-en-rIN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-en-rIN/values-en-rIN.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-es-rUS/values-es-rUS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-es-rUS/values-es-rUS.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-es/values-es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-es/values-es.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-et-rEE/values-et-rEE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-et-rEE/values-et-rEE.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-eu-rES/values-eu-rES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-eu-rES/values-eu-rES.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-fa/values-fa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-fa/values-fa.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-fi/values-fi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-fi/values-fi.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-fr-rCA/values-fr-rCA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-fr-rCA/values-fr-rCA.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-fr/values-fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-fr/values-fr.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-gl-rES/values-gl-rES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-gl-rES/values-gl-rES.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-h720dp/values-h720dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-h720dp/values-h720dp.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-hdpi/values-hdpi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-hdpi/values-hdpi.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-hi/values-hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-hi/values-hi.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-hr/values-hr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-hr/values-hr.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-hu/values-hu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-hu/values-hu.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-hy-rAM/values-hy-rAM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-hy-rAM/values-hy-rAM.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-in/values-in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-in/values-in.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-is-rIS/values-is-rIS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-is-rIS/values-is-rIS.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-it/values-it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-it/values-it.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-iw/values-iw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-iw/values-iw.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-ja/values-ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-ja/values-ja.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-ka-rGE/values-ka-rGE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-ka-rGE/values-ka-rGE.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-kk-rKZ/values-kk-rKZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-kk-rKZ/values-kk-rKZ.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-km-rKH/values-km-rKH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-km-rKH/values-km-rKH.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-kn-rIN/values-kn-rIN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-kn-rIN/values-kn-rIN.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-ko/values-ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-ko/values-ko.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-ky-rKG/values-ky-rKG.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-ky-rKG/values-ky-rKG.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-land/values-land.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-land/values-land.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-large/values-large.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-large/values-large.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-lo-rLA/values-lo-rLA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-lo-rLA/values-lo-rLA.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-lt/values-lt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-lt/values-lt.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-lv/values-lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-lv/values-lv.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-mk-rMK/values-mk-rMK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-mk-rMK/values-mk-rMK.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-ml-rIN/values-ml-rIN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-ml-rIN/values-ml-rIN.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-mn-rMN/values-mn-rMN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-mn-rMN/values-mn-rMN.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-mr-rIN/values-mr-rIN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-mr-rIN/values-mr-rIN.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-ms-rMY/values-ms-rMY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-ms-rMY/values-ms-rMY.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-my-rMM/values-my-rMM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-my-rMM/values-my-rMM.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-nb/values-nb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-nb/values-nb.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-ne-rNP/values-ne-rNP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-ne-rNP/values-ne-rNP.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-nl/values-nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-nl/values-nl.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-pl/values-pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-pl/values-pl.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-port/values-port.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-port/values-port.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-pt-rPT/values-pt-rPT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-pt-rPT/values-pt-rPT.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-pt/values-pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-pt/values-pt.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-ro/values-ro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-ro/values-ro.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-ru/values-ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-ru/values-ru.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-si-rLK/values-si-rLK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-si-rLK/values-si-rLK.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-sk/values-sk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-sk/values-sk.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-sl/values-sl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-sl/values-sl.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-sr/values-sr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-sr/values-sr.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-sv/values-sv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-sv/values-sv.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-sw/values-sw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-sw/values-sw.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-sw600dp/values-sw600dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-sw600dp/values-sw600dp.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-ta-rIN/values-ta-rIN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-ta-rIN/values-ta-rIN.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-te-rIN/values-te-rIN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-te-rIN/values-te-rIN.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-th/values-th.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-th/values-th.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-tl/values-tl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-tl/values-tl.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-tr/values-tr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-tr/values-tr.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-uk/values-uk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-uk/values-uk.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-ur-rPK/values-ur-rPK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-ur-rPK/values-ur-rPK.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-uz-rUZ/values-uz-rUZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-uz-rUZ/values-uz-rUZ.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-v11/values-v11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-v11/values-v11.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-v12/values-v12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-v12/values-v12.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-v14/values-v14.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-v14/values-v14.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-v17/values-v17.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-v17/values-v17.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-v18/values-v18.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-v18/values-v18.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-v19/values-v19.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-v19/values-v19.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-v21/values-v21.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-v21/values-v21.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-vi/values-vi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-vi/values-vi.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-w360dp/values-w360dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-w360dp/values-w360dp.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-w480dp/values-w480dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-w480dp/values-w480dp.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-w500dp/values-w500dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-w500dp/values-w500dp.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-w600dp/values-w600dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-w600dp/values-w600dp.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-w720dp/values-w720dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-w720dp/values-w720dp.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-w820dp/values-w820dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-w820dp/values-w820dp.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-xlarge-land/values-xlarge-land.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-xlarge-land/values-xlarge-land.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-xlarge/values-xlarge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-xlarge/values-xlarge.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-zh-rCN/values-zh-rCN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-zh-rCN/values-zh-rCN.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-zh-rHK/values-zh-rHK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-zh-rHK/values-zh-rHK.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-zh-rTW/values-zh-rTW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-zh-rTW/values-zh-rTW.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values-zu/values-zu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values-zu/values-zu.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/values/values.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/xml/prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/xml/prefs.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/res/debug/xml/searchable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/res/debug/xml/searchable.xml -------------------------------------------------------------------------------- /evernote/build/intermediates/resources/resources-debug-androidTest.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/resources/resources-debug-androidTest.ap_ -------------------------------------------------------------------------------- /evernote/build/intermediates/resources/resources-debug.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/resources/resources-debug.ap_ -------------------------------------------------------------------------------- /evernote/build/intermediates/symbols/debug/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/intermediates/symbols/debug/R.txt -------------------------------------------------------------------------------- /evernote/build/outputs/apk/evernote-debug-unaligned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/outputs/apk/evernote-debug-unaligned.apk -------------------------------------------------------------------------------- /evernote/build/outputs/apk/evernote-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/outputs/apk/evernote-debug.apk -------------------------------------------------------------------------------- /evernote/build/outputs/logs/manifest-merger-debug-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/build/outputs/logs/manifest-merger-debug-report.txt -------------------------------------------------------------------------------- /evernote/evernote.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/evernote.iml -------------------------------------------------------------------------------- /evernote/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/proguard-rules.pro -------------------------------------------------------------------------------- /evernote/src/androidTest/java/com/liaobb/evernote/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/androidTest/java/com/liaobb/evernote/ApplicationTest.java -------------------------------------------------------------------------------- /evernote/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /evernote/src/main/assets/litepal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/assets/litepal.xml -------------------------------------------------------------------------------- /evernote/src/main/java/com/liaobb/evernote/adapter/DrawerListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/java/com/liaobb/evernote/adapter/DrawerListAdapter.java -------------------------------------------------------------------------------- /evernote/src/main/java/com/liaobb/evernote/adapter/NoteListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/java/com/liaobb/evernote/adapter/NoteListAdapter.java -------------------------------------------------------------------------------- /evernote/src/main/java/com/liaobb/evernote/bean/Note.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/java/com/liaobb/evernote/bean/Note.java -------------------------------------------------------------------------------- /evernote/src/main/java/com/liaobb/evernote/bean/NoteType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/java/com/liaobb/evernote/bean/NoteType.java -------------------------------------------------------------------------------- /evernote/src/main/java/com/liaobb/evernote/common/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/java/com/liaobb/evernote/common/App.java -------------------------------------------------------------------------------- /evernote/src/main/java/com/liaobb/evernote/common/DoubleClickExitHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/java/com/liaobb/evernote/common/DoubleClickExitHelper.java -------------------------------------------------------------------------------- /evernote/src/main/java/com/liaobb/evernote/common/NoteUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/java/com/liaobb/evernote/common/NoteUtils.java -------------------------------------------------------------------------------- /evernote/src/main/java/com/liaobb/evernote/ui/EditNoteActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/java/com/liaobb/evernote/ui/EditNoteActivity.java -------------------------------------------------------------------------------- /evernote/src/main/java/com/liaobb/evernote/ui/EditNoteTypeActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/java/com/liaobb/evernote/ui/EditNoteTypeActivity.java -------------------------------------------------------------------------------- /evernote/src/main/java/com/liaobb/evernote/ui/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/java/com/liaobb/evernote/ui/MainActivity.java -------------------------------------------------------------------------------- /evernote/src/main/java/com/liaobb/evernote/ui/NoteListFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/java/com/liaobb/evernote/ui/NoteListFragment.java -------------------------------------------------------------------------------- /evernote/src/main/java/com/liaobb/evernote/ui/SettingActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/java/com/liaobb/evernote/ui/SettingActivity.java -------------------------------------------------------------------------------- /evernote/src/main/java/com/liaobb/evernote/ui/SettingFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/java/com/liaobb/evernote/ui/SettingFragment.java -------------------------------------------------------------------------------- /evernote/src/main/java/com/liaobb/evernote/ui/ToolbarActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/java/com/liaobb/evernote/ui/ToolbarActivity.java -------------------------------------------------------------------------------- /evernote/src/main/java/com/liaobb/evernote/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/java/com/liaobb/evernote/utils/Utils.java -------------------------------------------------------------------------------- /evernote/src/main/res/drawable/activated_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/drawable/activated_background.xml -------------------------------------------------------------------------------- /evernote/src/main/res/drawable/ic_done_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/drawable/ic_done_white.png -------------------------------------------------------------------------------- /evernote/src/main/res/drawable/ic_edit_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/drawable/ic_edit_white.png -------------------------------------------------------------------------------- /evernote/src/main/res/layout/activity_edit_note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/layout/activity_edit_note.xml -------------------------------------------------------------------------------- /evernote/src/main/res/layout/activity_edit_note_type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/layout/activity_edit_note_type.xml -------------------------------------------------------------------------------- /evernote/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /evernote/src/main/res/layout/activity_setting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/layout/activity_setting.xml -------------------------------------------------------------------------------- /evernote/src/main/res/layout/drawer_list_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/layout/drawer_list_item_layout.xml -------------------------------------------------------------------------------- /evernote/src/main/res/layout/edit_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/layout/edit_layout.xml -------------------------------------------------------------------------------- /evernote/src/main/res/layout/note_list_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/layout/note_list_all.xml -------------------------------------------------------------------------------- /evernote/src/main/res/layout/notes_item_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/layout/notes_item_layout.xml -------------------------------------------------------------------------------- /evernote/src/main/res/layout/simple_spinner_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/layout/simple_spinner_item.xml -------------------------------------------------------------------------------- /evernote/src/main/res/layout/toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/layout/toolbar.xml -------------------------------------------------------------------------------- /evernote/src/main/res/menu/menu_edit_note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/menu/menu_edit_note.xml -------------------------------------------------------------------------------- /evernote/src/main/res/menu/menu_edit_note_type.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/menu/menu_edit_note_type.xml -------------------------------------------------------------------------------- /evernote/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /evernote/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /evernote/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /evernote/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /evernote/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /evernote/src/main/res/values-v19/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/values-v19/styles.xml -------------------------------------------------------------------------------- /evernote/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /evernote/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /evernote/src/main/res/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/values/color.xml -------------------------------------------------------------------------------- /evernote/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /evernote/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /evernote/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /evernote/src/main/res/xml/prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/xml/prefs.xml -------------------------------------------------------------------------------- /evernote/src/main/res/xml/searchable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/evernote/src/main/res/xml/searchable.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/gradlew.bat -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/local.properties -------------------------------------------------------------------------------- /screenshot/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/screenshot/1.jpeg -------------------------------------------------------------------------------- /screenshot/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/screenshot/2.jpeg -------------------------------------------------------------------------------- /screenshot/3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/screenshot/3.jpeg -------------------------------------------------------------------------------- /screenshot/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/screenshot/4.jpeg -------------------------------------------------------------------------------- /screenshot/5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/screenshot/5.jpeg -------------------------------------------------------------------------------- /screenshot/6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dfwyt2011/EverNote/HEAD/screenshot/6.jpeg -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':evernote' 2 | --------------------------------------------------------------------------------