├── .classpath ├── .gitignore ├── .gitmodules ├── Android.mk ├── AndroidManifest.xml ├── CleanSpec.mk ├── MODULE_LICENSE_APACHE2 ├── NOTICE ├── README.md ├── Resources ├── big_icon.png ├── screenshot1.png ├── screenshot2.png └── screenshot3.png ├── assets ├── backward ├── dummy └── zone.tab ├── extensions_src └── com │ └── android │ └── calendar │ └── extensions │ └── AllInOneMenuExtensions.java ├── fix_strings_and_import.py ├── libs └── android-support-v4.jar ├── mkprojectfile ├── proguard.flags ├── project.properties ├── res ├── anim │ ├── slide_left_in.xml │ ├── slide_left_out.xml │ ├── slide_right_in.xml │ └── slide_right_out.xml ├── color │ ├── recurrence_bubble_text_color.xml │ └── recurrence_spinner_text_color.xml ├── drawable-hdpi │ ├── bg_event_cal_widget_holo.9.png │ ├── cal_widget_bg.9.png │ ├── cal_widget_date_bg.9.png │ ├── calendar_widget_preview.png │ ├── calname_bottom_select_underselect_holo_light.9.png │ ├── calname_bottom_select_underselect_pressed_holo_light.9.png │ ├── calname_bottom_select_underunselected_holo_light.9.png │ ├── calname_bottom_select_underunselected_pressed_holo_light.9.png │ ├── calname_bottom_unselected_holo_light.9.png │ ├── calname_bottom_unselected_pressed_holo_light.9.png │ ├── calname_bottom_unselected_underselect_holo_light.9.png │ ├── calname_bottom_unselected_underselect_pressed_holo_light.9.png │ ├── calname_select_underselect_holo_light.9.png │ ├── calname_select_underselect_pressed_holo_light.9.png │ ├── calname_select_underunselected_holo_light.9.png │ ├── calname_select_underunselected_pressed_holo_light.9.png │ ├── calname_unselected_holo_light.9.png │ ├── calname_unselected_pressed_holo_light.9.png │ ├── calname_unselected_underselect_holo_light.9.png │ ├── calname_unselected_underselect_pressed_holo_light.9.png │ ├── dayline_minical_holo_light.9.png │ ├── frame_event_color_cal_widget_holo.png │ ├── header_bg_cal_widget_focused_holo.9.png │ ├── header_bg_cal_widget_normal_holo.9.png │ ├── header_bg_cal_widget_pressed_holo.9.png │ ├── ic_alarm_dark.png │ ├── ic_alarm_holo_dark.png │ ├── ic_alarm_white.png │ ├── ic_call.png │ ├── ic_collapse_large_holo_light.png │ ├── ic_collapse_small_holo_light.png │ ├── ic_contact_picture.png │ ├── ic_expand_large_holo_light.png │ ├── ic_expand_small_holo_light.png │ ├── ic_history_holo_light.png │ ├── ic_map.png │ ├── ic_menu_add_event_holo_light.png │ ├── ic_menu_add_field_holo_light.png │ ├── ic_menu_cancel_holo_light.png │ ├── ic_menu_colorpicker_holo_dark.png │ ├── ic_menu_colorpicker_holo_light.png │ ├── ic_menu_compose_holo_dark.png │ ├── ic_menu_compose_holo_light.png │ ├── ic_menu_done_holo_light.png │ ├── ic_menu_email_holo_dark.png │ ├── ic_menu_email_holo_light.png │ ├── ic_menu_refresh_holo_light.png │ ├── ic_menu_remove_field_holo_light.png │ ├── ic_menu_search_holo_light.png │ ├── ic_menu_select_visible_calendars_holo_light.png │ ├── ic_menu_settings_holo_light.png │ ├── ic_menu_today_holo_light.png │ ├── ic_menu_today_no_date_holo_light.png │ ├── ic_menu_today_no_date_holo_light_disabled.png │ ├── ic_menu_trash_holo_dark.png │ ├── ic_menu_trash_holo_light.png │ ├── ic_recurrence_bubble_disabled.png │ ├── ic_recurrence_bubble_fill.png │ ├── ic_recurrence_bubble_outline.png │ ├── ic_recurrence_bubble_outline_disabled.png │ ├── ic_repeat_dark.png │ ├── ic_repeat_white.png │ ├── list_focused_holo.9.png │ ├── list_multi_left_activated_holo.9.png │ ├── list_multi_left_focused_holo.9.png │ ├── list_multi_left_pressed_holo.9.png │ ├── list_multi_left_primary_holo.9.png │ ├── list_multi_left_secondary_holo.9.png │ ├── list_pressed_holo.9.png │ ├── list_primary_holo.9.png │ ├── list_secondary_holo.9.png │ ├── mini_calendar.png │ ├── minical_bg_shadow_holo_light.9.png │ ├── panel_month_event_holo_light.9.png │ ├── snooze.png │ ├── stat_notify_calendar.png │ ├── stat_notify_calendar_multiple.png │ ├── switch_thumb_activated_holo_light.9.png │ ├── switch_thumb_disabled_holo_light.9.png │ ├── switch_thumb_holo_light_v2.9.png │ ├── switch_thumb_pressed_holo_light.9.png │ ├── timeline_indicator_activated_holo_light.9.png │ ├── timeline_indicator_holo_light.9.png │ ├── today_blue_week_holo_light.9.png │ ├── toggle_underline_activated.9.png │ ├── toggle_underline_normal.9.png │ ├── widget_chip_not_responded_bg.9.png │ ├── widget_chip_responded_bg.9.png │ └── widget_show.png ├── drawable-mdpi │ ├── bg_event_cal_widget_holo.9.png │ ├── cal_widget_bg.9.png │ ├── cal_widget_date_bg.9.png │ ├── calendar_widget_preview.png │ ├── calname_bottom_select_underselect_holo_light.9.png │ ├── calname_bottom_select_underselect_pressed_holo_light.9.png │ ├── calname_bottom_select_underunselected_holo_light.9.png │ ├── calname_bottom_select_underunselected_pressed_holo_light.9.png │ ├── calname_bottom_unselected_holo_light.9.png │ ├── calname_bottom_unselected_pressed_holo_light.9.png │ ├── calname_bottom_unselected_underselect_holo_light.9.png │ ├── calname_bottom_unselected_underselect_pressed_holo_light.9.png │ ├── calname_select_underselect_holo_light.9.png │ ├── calname_select_underselect_pressed_holo_light.9.png │ ├── calname_select_underunselected_holo_light.9.png │ ├── calname_select_underunselected_pressed_holo_light.9.png │ ├── calname_unselected_holo_light.9.png │ ├── calname_unselected_pressed_holo_light.9.png │ ├── calname_unselected_underselect_holo_light.9.png │ ├── calname_unselected_underselect_pressed_holo_light.9.png │ ├── dayline_minical_holo_light.9.png │ ├── frame_event_color_cal_widget_holo.png │ ├── header_bg_cal_widget_focused_holo.9.png │ ├── header_bg_cal_widget_normal_holo.9.png │ ├── header_bg_cal_widget_pressed_holo.9.png │ ├── ic_alarm_dark.png │ ├── ic_alarm_holo_dark.png │ ├── ic_alarm_white.png │ ├── ic_call.png │ ├── ic_collapse_large_holo_light.png │ ├── ic_collapse_small_holo_light.png │ ├── ic_contact_picture.png │ ├── ic_expand_large_holo_light.png │ ├── ic_expand_small_holo_light.png │ ├── ic_history_holo_light.png │ ├── ic_map.png │ ├── ic_menu_add_event_holo_light.png │ ├── ic_menu_add_field_holo_light.png │ ├── ic_menu_cancel_holo_light.png │ ├── ic_menu_colorpicker_holo_dark.png │ ├── ic_menu_colorpicker_holo_light.png │ ├── ic_menu_compose_holo_dark.png │ ├── ic_menu_compose_holo_light.png │ ├── ic_menu_done_holo_light.png │ ├── ic_menu_email_holo_dark.png │ ├── ic_menu_email_holo_light.png │ ├── ic_menu_refresh_holo_light.png │ ├── ic_menu_remove_field_holo_light.png │ ├── ic_menu_search_holo_light.png │ ├── ic_menu_select_visible_calendars_holo_light.png │ ├── ic_menu_settings_holo_light.png │ ├── ic_menu_today_holo_light.png │ ├── ic_menu_today_no_date_holo_light.png │ ├── ic_menu_today_no_date_holo_light_disabled.png │ ├── ic_menu_trash_holo_dark.png │ ├── ic_menu_trash_holo_light.png │ ├── ic_recurrence_bubble_disabled.png │ ├── ic_recurrence_bubble_fill.png │ ├── ic_recurrence_bubble_outline.png │ ├── ic_recurrence_bubble_outline_disabled.png │ ├── ic_repeat_dark.png │ ├── ic_repeat_white.png │ ├── list_focused_holo.9.png │ ├── list_multi_left_activated_holo.9.png │ ├── list_multi_left_focused_holo.9.png │ ├── list_multi_left_pressed_holo.9.png │ ├── list_multi_left_primary_holo.9.png │ ├── list_multi_left_secondary_holo.9.png │ ├── list_pressed_holo.9.png │ ├── list_primary_holo.9.png │ ├── list_secondary_holo.9.png │ ├── mini_calendar.png │ ├── minical_bg_shadow_holo_light.9.png │ ├── panel_month_event_holo_light.9.png │ ├── snooze.png │ ├── stat_notify_calendar.png │ ├── stat_notify_calendar_multiple.png │ ├── switch_thumb_activated_holo_light.9.png │ ├── switch_thumb_disabled_holo_light.9.png │ ├── switch_thumb_holo_light_v2.9.png │ ├── switch_thumb_pressed_holo_light.9.png │ ├── timeline_indicator_activated_holo_light.9.png │ ├── timeline_indicator_holo_light.9.png │ ├── today_blue_week_holo_light.9.png │ ├── toggle_underline_activated.9.png │ ├── toggle_underline_normal.9.png │ ├── widget_chip_not_responded_bg.9.png │ ├── widget_chip_responded_bg.9.png │ └── widget_show.png ├── drawable-sw600dp │ ├── agenda_item_bg_primary.xml │ ├── agenda_item_bg_secondary.xml │ ├── ic_collapse_holo_light.xml │ ├── ic_expand_holo_light.xml │ ├── ic_menu_compose_holo_dark.png │ ├── ic_menu_today_holo_light.png │ ├── ic_menu_today_no_date_holo_light.png │ └── ic_menu_trash_holo_dark.png ├── drawable-xhdpi │ ├── .directory │ ├── bg_event_cal_widget_holo.9.png │ ├── cal_widget_bg.9.png │ ├── cal_widget_date_bg.9.png │ ├── calendar_widget_preview.png │ ├── calname_bottom_select_underselect_holo_light.9.png │ ├── calname_bottom_select_underselect_pressed_holo_light.9.png │ ├── calname_bottom_select_underunselected_holo_light.9.png │ ├── calname_bottom_select_underunselected_pressed_holo_light.9.png │ ├── calname_bottom_unselected_holo_light.9.png │ ├── calname_bottom_unselected_pressed_holo_light.9.png │ ├── calname_bottom_unselected_underselect_holo_light.9.png │ ├── calname_bottom_unselected_underselect_pressed_holo_light.9.png │ ├── calname_select_underselect_holo_light.9.png │ ├── calname_select_underselect_pressed_holo_light.9.png │ ├── calname_select_underunselected_holo_light.9.png │ ├── calname_select_underunselected_pressed_holo_light.9.png │ ├── calname_unselected_holo_light.9.png │ ├── calname_unselected_pressed_holo_light.9.png │ ├── calname_unselected_underselect_holo_light.9.png │ ├── calname_unselected_underselect_pressed_holo_light.9.png │ ├── dayline_minical_holo_light.9.png │ ├── frame_event_color_cal_widget_holo.png │ ├── header_bg_cal_widget_focused_holo.9.png │ ├── header_bg_cal_widget_normal_holo.9.png │ ├── header_bg_cal_widget_pressed_holo.9.png │ ├── ic_alarm_dark.png │ ├── ic_alarm_holo_dark.png │ ├── ic_alarm_white.png │ ├── ic_call.png │ ├── ic_collapse_large_holo_light.png │ ├── ic_collapse_small_holo_light.png │ ├── ic_contact_picture.png │ ├── ic_expand_large_holo_light.png │ ├── ic_expand_small_holo_light.png │ ├── ic_history_holo_light.png │ ├── ic_map.png │ ├── ic_menu_add_event_holo_light.png │ ├── ic_menu_add_field_holo_light.png │ ├── ic_menu_cancel_holo_light.png │ ├── ic_menu_colorpicker_holo_dark.png │ ├── ic_menu_colorpicker_holo_light.png │ ├── ic_menu_compose_holo_dark.png │ ├── ic_menu_compose_holo_light.png │ ├── ic_menu_done_holo_light.png │ ├── ic_menu_email_holo_dark.png │ ├── ic_menu_email_holo_light.png │ ├── ic_menu_refresh_holo_light.png │ ├── ic_menu_remove_field_holo_light.png │ ├── ic_menu_search_holo_light.png │ ├── ic_menu_settings_holo_light.png │ ├── ic_menu_today_holo_light.png │ ├── ic_menu_today_no_date_holo_light.png │ ├── ic_menu_today_no_date_holo_light_disabled.png │ ├── ic_menu_trash_holo_dark.png │ ├── ic_menu_trash_holo_light.png │ ├── ic_recurrence_bubble_disabled.png │ ├── ic_recurrence_bubble_fill.png │ ├── ic_recurrence_bubble_outline.png │ ├── ic_recurrence_bubble_outline_disabled.png │ ├── ic_repeat_dark.png │ ├── ic_repeat_white.png │ ├── list_focused_holo.9.png │ ├── list_multi_left_activated_holo.9.png │ ├── list_multi_left_focused_holo.9.png │ ├── list_multi_left_pressed_holo.9.png │ ├── list_multi_left_primary_holo.9.png │ ├── list_multi_left_secondary_holo.9.png │ ├── list_pressed_holo.9.png │ ├── list_primary_holo.9.png │ ├── list_secondary_holo.9.png │ ├── mini_calendar.png │ ├── minical_bg_shadow_holo_light.9.png │ ├── panel_month_event_holo_light.9.png │ ├── snooze.png │ ├── stat_notify_calendar.png │ ├── stat_notify_calendar_multiple.png │ ├── switch_thumb_activated_holo_light.9.png │ ├── switch_thumb_disabled_holo_light.9.png │ ├── switch_thumb_holo_light_v2.9.png │ ├── switch_thumb_pressed_holo_light.9.png │ ├── timeline_indicator_activated_holo_light.9.png │ ├── timeline_indicator_holo_light.9.png │ ├── today_blue_week_holo_light.9.png │ ├── toggle_underline_activated.9.png │ ├── toggle_underline_normal.9.png │ └── widget_show.png ├── drawable │ ├── agenda_item_bg_primary.xml │ ├── agenda_item_bg_secondary.xml │ ├── appwidget_header_selector.xml │ ├── calendar_color_square.xml │ ├── calendars_item.xml │ ├── calname_bottom_select_underselect.xml │ ├── calname_bottom_select_underunselected.xml │ ├── calname_bottom_unselected.xml │ ├── calname_bottom_unselected_underselect.xml │ ├── calname_select_underselect.xml │ ├── calname_select_underunselected.xml │ ├── calname_unselected.xml │ ├── calname_unselected_underselect.xml │ ├── event_info_mail_button.xml │ ├── ic_collapse_holo_light.xml │ ├── ic_expand_holo_light.xml │ ├── ic_launch_date_picker.xml │ ├── recurrence_bubble_fill.xml │ ├── switch_thumb.xml │ └── today_icon.xml ├── layout-land │ ├── all_in_one.xml │ └── search.xml ├── layout-sw600dp-w960dp-h527dp-land │ └── all_in_one.xml ├── layout-sw600dp │ ├── agenda_day.xml │ ├── agenda_fragment.xml │ ├── agenda_item.xml │ ├── all_in_one.xml │ ├── contact_item.xml │ ├── edit_event.xml │ ├── edit_event_1.xml │ ├── edit_event_single_column.xml │ ├── event_info_label.xml │ ├── full_month_by_week.xml │ └── full_month_header.xml ├── layout │ ├── account_calendars.xml │ ├── account_item.xml │ ├── actionbar_pulldown_menu_button.xml │ ├── actionbar_pulldown_menu_top_button.xml │ ├── actionbar_pulldown_menu_top_button_no_date.xml │ ├── agenda_day.xml │ ├── agenda_fragment.xml │ ├── agenda_header_footer.xml │ ├── agenda_item.xml │ ├── agenda_reminder_item.xml │ ├── alert_activity.xml │ ├── alert_item.xml │ ├── all_in_one.xml │ ├── appwidget.xml │ ├── appwidget_day.xml │ ├── appwidget_loading.xml │ ├── appwidget_no_events.xml │ ├── bubble_event.xml │ ├── calendar_sync_item.xml │ ├── calendars_dropdown_item.xml │ ├── calendars_spinner_item.xml │ ├── contact_item.xml │ ├── create_event_dialog.xml │ ├── date_range_title.xml │ ├── day_activity.xml │ ├── edit_event.xml │ ├── edit_event_1.xml │ ├── edit_event_2.xml │ ├── edit_event_custom_actionbar.xml │ ├── edit_event_single_column.xml │ ├── edit_reminder_item.xml │ ├── email_autocomplete_item.xml │ ├── email_autocomplete_item_loading.xml │ ├── event_info.xml │ ├── event_info_dialog.xml │ ├── event_info_headline.xml │ ├── event_info_label.xml │ ├── expandable_textview.xml │ ├── full_month_by_week.xml │ ├── full_month_header.xml │ ├── location_dropdown_item.xml │ ├── mini_calendar_item.xml │ ├── mini_month_header.xml │ ├── month_by_week.xml │ ├── notification.xml │ ├── quick_response_item.xml │ ├── recurrencepicker.xml │ ├── recurrencepicker_end_text.xml │ ├── recurrencepicker_freq_item.xml │ ├── search.xml │ ├── select_calendars_fragment.xml │ ├── select_calendars_multi_accounts_fragment.xml │ ├── simple_frame_layout.xml │ ├── timezone_footer.xml │ ├── widget_all_day_item.xml │ └── widget_item.xml ├── menu-land │ └── all_in_one_title_bar.xml ├── menu-sw600dp-land │ └── all_in_one_title_bar.xml ├── menu-sw600dp │ └── all_in_one_title_bar.xml ├── menu │ ├── all_in_one_title_bar.xml │ ├── edit_event_title_bar.xml │ ├── event_info_title_bar.xml │ ├── search_title_bar.xml │ └── settings_title_bar.xml ├── mipmap-hdpi │ └── ic_launcher_calendar.png ├── mipmap-mdpi │ └── ic_launcher_calendar.png ├── mipmap-xhdpi │ └── ic_launcher_calendar.png ├── mipmap-xxhdpi │ └── ic_launcher_calendar.png ├── values-af │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-am │ ├── arrays.xml │ └── strings.xml ├── values-ar │ ├── arrays.xml │ └── strings.xml ├── values-be │ ├── arrays.xml │ └── strings.xml ├── values-bg │ ├── arrays.xml │ └── strings.xml ├── values-ca │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-cs │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-da │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-de │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-el │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-en-rGB │ ├── arrays.xml │ └── strings.xml ├── values-es-rUS │ ├── arrays.xml │ └── strings.xml ├── values-es │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-et │ ├── arrays.xml │ └── strings.xml ├── values-fa │ ├── arrays.xml │ └── strings.xml ├── values-fi │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-fr │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-hi │ ├── arrays.xml │ └── strings.xml ├── values-hr │ ├── arrays.xml │ └── strings.xml ├── values-hu │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-in │ ├── arrays.xml │ └── strings.xml ├── values-it │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-iw │ ├── arrays.xml │ └── strings.xml ├── values-ja │ ├── arrays.xml │ ├── cm_strings.xml │ ├── colors.xml │ └── strings.xml ├── values-ko │ ├── arrays.xml │ └── strings.xml ├── values-land │ └── dimens.xml ├── values-lt │ ├── arrays.xml │ └── strings.xml ├── values-lv │ ├── arrays.xml │ └── strings.xml ├── values-mcc262 │ └── strings.xml ├── values-ms │ ├── arrays.xml │ └── strings.xml ├── values-nb │ ├── arrays.xml │ └── strings.xml ├── values-nl │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-pl │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-pt-rPT │ ├── arrays.xml │ └── strings.xml ├── values-pt │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-ro │ ├── arrays.xml │ └── strings.xml ├── values-ru │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-sk │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-sl │ ├── arrays.xml │ └── strings.xml ├── values-sr │ ├── arrays.xml │ └── strings.xml ├── values-sv │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-sw │ ├── arrays.xml │ └── strings.xml ├── values-sw600dp-land │ └── dimens.xml ├── values-sw600dp │ └── dimens.xml ├── values-th │ ├── arrays.xml │ └── strings.xml ├── values-tl │ ├── arrays.xml │ └── strings.xml ├── values-tr │ ├── arrays.xml │ └── strings.xml ├── values-ug │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-uk │ ├── arrays.xml │ └── strings.xml ├── values-vi │ ├── arrays.xml │ └── strings.xml ├── values-w1280dp-h752dp │ └── dimens.xml ├── values-w600dp-h879dp │ ├── config.xml │ ├── dimens.xml │ └── integers.xml ├── values-w800dp-h1232dp │ ├── config.xml │ └── dimens.xml ├── values-w960dp-h527dp │ ├── config.xml │ ├── dimens.xml │ └── integers.xml ├── values-zh-rCN │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-zh-rTW │ ├── arrays.xml │ ├── cm_strings.xml │ └── strings.xml ├── values-zu │ ├── arrays.xml │ └── strings.xml ├── values │ ├── arrays.xml │ ├── attrs.xml │ ├── cm_arrays.xml │ ├── cm_strings.xml │ ├── colors.xml │ ├── config.xml │ ├── dimens.xml │ ├── integers.xml │ ├── standalone_strings.xml │ ├── strings.xml │ └── styles.xml └── xml │ ├── about_preferences.xml │ ├── appwidget_info.xml │ ├── calendar_settings_headers.xml │ ├── general_preferences.xml │ ├── other_preferences.xml │ └── searchable.xml ├── settings.gradle ├── src └── com │ └── android │ └── calendar │ ├── AboutPreferences.java │ ├── AbstractCalendarActivity.java │ ├── AllInOneActivity.java │ ├── AllInOneMenuExtensionsInterface.java │ ├── AsyncQueryService.java │ ├── AsyncQueryServiceHelper.java │ ├── CalendarApplication.java │ ├── CalendarBackupAgent.java │ ├── CalendarColorPickerDialog.java │ ├── CalendarController.java │ ├── CalendarData.java │ ├── CalendarEventModel.java │ ├── CalendarRecentSuggestionsProvider.java │ ├── CalendarSettingsActivity.java │ ├── CalendarUtils.java │ ├── CalendarViewAdapter.java │ ├── CloudNotificationBackplane.java │ ├── ColorChipView.java │ ├── ContactsAsyncHelper.java │ ├── DayFragment.java │ ├── DayOfMonthCursor.java │ ├── DayOfMonthDrawable.java │ ├── DayView.java │ ├── DeleteEventHelper.java │ ├── EditResponseHelper.java │ ├── EmailAddressAdapter.java │ ├── Event.java │ ├── EventGeometry.java │ ├── EventInfoActivity.java │ ├── EventInfoFragment.java │ ├── EventLoader.java │ ├── EventRecurrenceFormatter.java │ ├── ExpandableTextView.java │ ├── ExtensionsFactory.java │ ├── GeneralPreferences.java │ ├── GoogleCalendarUriIntentFilter.java │ ├── MultiStateButton.java │ ├── OtherPreferences.java │ ├── QuickResponseSettings.java │ ├── RecipientAdapter.java │ ├── SearchActivity.java │ ├── StickyHeaderListView.java │ ├── Utils.java │ ├── agenda │ ├── AgendaAdapter.java │ ├── AgendaByDayAdapter.java │ ├── AgendaFragment.java │ ├── AgendaListView.java │ └── AgendaWindowAdapter.java │ ├── alerts │ ├── AlarmManagerInterface.java │ ├── AlarmScheduler.java │ ├── AlertActivity.java │ ├── AlertAdapter.java │ ├── AlertReceiver.java │ ├── AlertService.java │ ├── AlertUtils.java │ ├── DismissAlarmsService.java │ ├── GlobalDismissManager.java │ ├── InitAlarmsService.java │ ├── NotificationMgr.java │ ├── QuickResponseActivity.java │ ├── SnoozeAlarmsService.java │ └── SnoozeDelayActivity.java │ ├── event │ ├── AttendeesView.java │ ├── CreateEventDialogFragment.java │ ├── EditEventActivity.java │ ├── EditEventFragment.java │ ├── EditEventHelper.java │ ├── EditEventView.java │ ├── EventColorCache.java │ ├── EventColorPickerDialog.java │ ├── EventLocationAdapter.java │ └── EventViewUtils.java │ ├── month │ ├── MonthByWeekAdapter.java │ ├── MonthByWeekFragment.java │ ├── MonthListView.java │ ├── MonthWeekEventsView.java │ ├── SimpleDayPickerFragment.java │ ├── SimpleWeekView.java │ └── SimpleWeeksAdapter.java │ ├── recurrencepicker │ ├── LinearLayoutWithMaxWidth.java │ ├── RecurrencePickerDialog.java │ └── WeekButton.java │ ├── selectcalendars │ ├── CalendarColorCache.java │ ├── CalendarColorSquare.java │ ├── SelectCalendarsSimpleAdapter.java │ ├── SelectCalendarsSyncAdapter.java │ ├── SelectCalendarsSyncFragment.java │ ├── SelectSyncedCalendarsMultiAccountActivity.java │ ├── SelectSyncedCalendarsMultiAccountAdapter.java │ ├── SelectVisibleCalendarsActivity.java │ └── SelectVisibleCalendarsFragment.java │ └── widget │ ├── CalendarAppWidgetModel.java │ ├── CalendarAppWidgetProvider.java │ └── CalendarAppWidgetService.java └── tests ├── Android.mk ├── AndroidManifest.xml └── src └── com └── android └── calendar ├── AsyncQueryServiceTest.java ├── DbTestUtils.java ├── FakeSharedPreferences.java ├── FormatDateRangeTest.java ├── UtilsTests.java ├── WeekNumberTest.java ├── alerts ├── AlarmSchedulerTest.java ├── AlertServiceTest.java ├── MockAlarmManager.java └── Utils.java ├── event └── EditEventHelperTest.java └── widget └── CalendarAppWidgetServiceTest.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/.gitmodules -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/Android.mk -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/CleanSpec.mk -------------------------------------------------------------------------------- /MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/README.md -------------------------------------------------------------------------------- /Resources/big_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/Resources/big_icon.png -------------------------------------------------------------------------------- /Resources/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/Resources/screenshot1.png -------------------------------------------------------------------------------- /Resources/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/Resources/screenshot2.png -------------------------------------------------------------------------------- /Resources/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/Resources/screenshot3.png -------------------------------------------------------------------------------- /assets/backward: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/assets/backward -------------------------------------------------------------------------------- /assets/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/zone.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/assets/zone.tab -------------------------------------------------------------------------------- /extensions_src/com/android/calendar/extensions/AllInOneMenuExtensions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/extensions_src/com/android/calendar/extensions/AllInOneMenuExtensions.java -------------------------------------------------------------------------------- /fix_strings_and_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/fix_strings_and_import.py -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /mkprojectfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/mkprojectfile -------------------------------------------------------------------------------- /proguard.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/proguard.flags -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/project.properties -------------------------------------------------------------------------------- /res/anim/slide_left_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/anim/slide_left_in.xml -------------------------------------------------------------------------------- /res/anim/slide_left_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/anim/slide_left_out.xml -------------------------------------------------------------------------------- /res/anim/slide_right_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/anim/slide_right_in.xml -------------------------------------------------------------------------------- /res/anim/slide_right_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/anim/slide_right_out.xml -------------------------------------------------------------------------------- /res/color/recurrence_bubble_text_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/color/recurrence_bubble_text_color.xml -------------------------------------------------------------------------------- /res/color/recurrence_spinner_text_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/color/recurrence_spinner_text_color.xml -------------------------------------------------------------------------------- /res/drawable-hdpi/bg_event_cal_widget_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/bg_event_cal_widget_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/cal_widget_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/cal_widget_bg.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/cal_widget_date_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/cal_widget_date_bg.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calendar_widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/calendar_widget_preview.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calname_bottom_select_underselect_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/calname_bottom_select_underselect_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calname_bottom_select_underselect_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/calname_bottom_select_underselect_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calname_bottom_select_underunselected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/calname_bottom_select_underunselected_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calname_bottom_unselected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/calname_bottom_unselected_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calname_bottom_unselected_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/calname_bottom_unselected_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calname_bottom_unselected_underselect_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/calname_bottom_unselected_underselect_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calname_select_underselect_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/calname_select_underselect_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calname_select_underselect_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/calname_select_underselect_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calname_select_underunselected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/calname_select_underunselected_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calname_select_underunselected_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/calname_select_underunselected_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calname_unselected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/calname_unselected_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calname_unselected_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/calname_unselected_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calname_unselected_underselect_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/calname_unselected_underselect_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/calname_unselected_underselect_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/calname_unselected_underselect_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/dayline_minical_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/dayline_minical_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/frame_event_color_cal_widget_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/frame_event_color_cal_widget_holo.png -------------------------------------------------------------------------------- /res/drawable-hdpi/header_bg_cal_widget_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/header_bg_cal_widget_focused_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/header_bg_cal_widget_normal_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/header_bg_cal_widget_normal_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/header_bg_cal_widget_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/header_bg_cal_widget_pressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_alarm_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_alarm_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_alarm_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_alarm_holo_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_alarm_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_alarm_white.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_call.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_collapse_large_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_collapse_large_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_collapse_small_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_collapse_small_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_contact_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_contact_picture.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_expand_large_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_expand_large_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_expand_small_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_expand_small_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_history_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_history_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_map.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_add_event_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_add_event_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_add_field_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_add_field_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_cancel_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_cancel_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_colorpicker_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_colorpicker_holo_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_colorpicker_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_colorpicker_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_compose_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_compose_holo_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_compose_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_compose_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_done_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_done_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_email_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_email_holo_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_email_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_email_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_refresh_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_refresh_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_remove_field_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_remove_field_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_search_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_search_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_select_visible_calendars_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_select_visible_calendars_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_settings_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_settings_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_today_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_today_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_today_no_date_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_today_no_date_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_today_no_date_holo_light_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_today_no_date_holo_light_disabled.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_trash_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_trash_holo_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_trash_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_menu_trash_holo_light.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_recurrence_bubble_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_recurrence_bubble_disabled.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_recurrence_bubble_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_recurrence_bubble_fill.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_recurrence_bubble_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_recurrence_bubble_outline.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_recurrence_bubble_outline_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_recurrence_bubble_outline_disabled.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_repeat_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_repeat_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_repeat_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/ic_repeat_white.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/list_focused_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_multi_left_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/list_multi_left_activated_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_multi_left_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/list_multi_left_focused_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_multi_left_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/list_multi_left_pressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_multi_left_primary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/list_multi_left_primary_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_multi_left_secondary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/list_multi_left_secondary_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/list_pressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_primary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/list_primary_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_secondary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/list_secondary_holo.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/mini_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/mini_calendar.png -------------------------------------------------------------------------------- /res/drawable-hdpi/minical_bg_shadow_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/minical_bg_shadow_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/panel_month_event_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/panel_month_event_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/snooze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/snooze.png -------------------------------------------------------------------------------- /res/drawable-hdpi/stat_notify_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/stat_notify_calendar.png -------------------------------------------------------------------------------- /res/drawable-hdpi/stat_notify_calendar_multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/stat_notify_calendar_multiple.png -------------------------------------------------------------------------------- /res/drawable-hdpi/switch_thumb_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/switch_thumb_activated_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/switch_thumb_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/switch_thumb_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/switch_thumb_holo_light_v2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/switch_thumb_holo_light_v2.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/switch_thumb_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/switch_thumb_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/timeline_indicator_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/timeline_indicator_activated_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/timeline_indicator_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/timeline_indicator_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/today_blue_week_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/today_blue_week_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/toggle_underline_activated.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/toggle_underline_activated.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/toggle_underline_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/toggle_underline_normal.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/widget_chip_not_responded_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/widget_chip_not_responded_bg.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/widget_chip_responded_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/widget_chip_responded_bg.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/widget_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-hdpi/widget_show.png -------------------------------------------------------------------------------- /res/drawable-mdpi/bg_event_cal_widget_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/bg_event_cal_widget_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/cal_widget_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/cal_widget_bg.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/cal_widget_date_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/cal_widget_date_bg.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calendar_widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/calendar_widget_preview.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calname_bottom_select_underselect_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/calname_bottom_select_underselect_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calname_bottom_select_underselect_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/calname_bottom_select_underselect_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calname_bottom_select_underunselected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/calname_bottom_select_underunselected_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calname_bottom_unselected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/calname_bottom_unselected_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calname_bottom_unselected_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/calname_bottom_unselected_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calname_bottom_unselected_underselect_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/calname_bottom_unselected_underselect_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calname_select_underselect_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/calname_select_underselect_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calname_select_underselect_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/calname_select_underselect_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calname_select_underunselected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/calname_select_underunselected_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calname_select_underunselected_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/calname_select_underunselected_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calname_unselected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/calname_unselected_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calname_unselected_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/calname_unselected_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calname_unselected_underselect_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/calname_unselected_underselect_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/calname_unselected_underselect_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/calname_unselected_underselect_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/dayline_minical_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/dayline_minical_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/frame_event_color_cal_widget_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/frame_event_color_cal_widget_holo.png -------------------------------------------------------------------------------- /res/drawable-mdpi/header_bg_cal_widget_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/header_bg_cal_widget_focused_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/header_bg_cal_widget_normal_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/header_bg_cal_widget_normal_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/header_bg_cal_widget_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/header_bg_cal_widget_pressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_alarm_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_alarm_dark.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_alarm_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_alarm_holo_dark.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_alarm_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_alarm_white.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_call.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_collapse_large_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_collapse_large_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_collapse_small_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_collapse_small_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_contact_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_contact_picture.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_expand_large_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_expand_large_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_expand_small_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_expand_small_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_history_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_history_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_map.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_add_event_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_add_event_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_add_field_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_add_field_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_cancel_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_cancel_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_colorpicker_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_colorpicker_holo_dark.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_colorpicker_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_colorpicker_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_compose_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_compose_holo_dark.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_compose_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_compose_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_done_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_done_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_email_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_email_holo_dark.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_email_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_email_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_refresh_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_refresh_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_remove_field_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_remove_field_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_search_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_search_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_select_visible_calendars_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_select_visible_calendars_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_settings_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_settings_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_today_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_today_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_today_no_date_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_today_no_date_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_today_no_date_holo_light_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_today_no_date_holo_light_disabled.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_trash_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_trash_holo_dark.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_trash_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_menu_trash_holo_light.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_recurrence_bubble_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_recurrence_bubble_disabled.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_recurrence_bubble_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_recurrence_bubble_fill.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_recurrence_bubble_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_recurrence_bubble_outline.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_recurrence_bubble_outline_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_recurrence_bubble_outline_disabled.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_repeat_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_repeat_dark.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_repeat_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/ic_repeat_white.png -------------------------------------------------------------------------------- /res/drawable-mdpi/list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/list_focused_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/list_multi_left_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/list_multi_left_activated_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/list_multi_left_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/list_multi_left_focused_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/list_multi_left_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/list_multi_left_pressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/list_multi_left_primary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/list_multi_left_primary_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/list_multi_left_secondary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/list_multi_left_secondary_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/list_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/list_pressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/list_primary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/list_primary_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/list_secondary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/list_secondary_holo.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/mini_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/mini_calendar.png -------------------------------------------------------------------------------- /res/drawable-mdpi/minical_bg_shadow_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/minical_bg_shadow_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/panel_month_event_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/panel_month_event_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/snooze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/snooze.png -------------------------------------------------------------------------------- /res/drawable-mdpi/stat_notify_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/stat_notify_calendar.png -------------------------------------------------------------------------------- /res/drawable-mdpi/stat_notify_calendar_multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/stat_notify_calendar_multiple.png -------------------------------------------------------------------------------- /res/drawable-mdpi/switch_thumb_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/switch_thumb_activated_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/switch_thumb_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/switch_thumb_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/switch_thumb_holo_light_v2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/switch_thumb_holo_light_v2.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/switch_thumb_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/switch_thumb_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/timeline_indicator_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/timeline_indicator_activated_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/timeline_indicator_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/timeline_indicator_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/today_blue_week_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/today_blue_week_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/toggle_underline_activated.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/toggle_underline_activated.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/toggle_underline_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/toggle_underline_normal.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/widget_chip_not_responded_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/widget_chip_not_responded_bg.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/widget_chip_responded_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/widget_chip_responded_bg.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/widget_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-mdpi/widget_show.png -------------------------------------------------------------------------------- /res/drawable-sw600dp/agenda_item_bg_primary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-sw600dp/agenda_item_bg_primary.xml -------------------------------------------------------------------------------- /res/drawable-sw600dp/agenda_item_bg_secondary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-sw600dp/agenda_item_bg_secondary.xml -------------------------------------------------------------------------------- /res/drawable-sw600dp/ic_collapse_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-sw600dp/ic_collapse_holo_light.xml -------------------------------------------------------------------------------- /res/drawable-sw600dp/ic_expand_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-sw600dp/ic_expand_holo_light.xml -------------------------------------------------------------------------------- /res/drawable-sw600dp/ic_menu_compose_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-sw600dp/ic_menu_compose_holo_dark.png -------------------------------------------------------------------------------- /res/drawable-sw600dp/ic_menu_today_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-sw600dp/ic_menu_today_holo_light.png -------------------------------------------------------------------------------- /res/drawable-sw600dp/ic_menu_today_no_date_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-sw600dp/ic_menu_today_no_date_holo_light.png -------------------------------------------------------------------------------- /res/drawable-sw600dp/ic_menu_trash_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-sw600dp/ic_menu_trash_holo_dark.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/.directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/.directory -------------------------------------------------------------------------------- /res/drawable-xhdpi/bg_event_cal_widget_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/bg_event_cal_widget_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/cal_widget_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/cal_widget_bg.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/cal_widget_date_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/cal_widget_date_bg.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calendar_widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/calendar_widget_preview.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calname_bottom_select_underselect_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/calname_bottom_select_underselect_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calname_bottom_select_underselect_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/calname_bottom_select_underselect_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calname_bottom_select_underunselected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/calname_bottom_select_underunselected_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/calname_bottom_select_underunselected_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calname_bottom_unselected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/calname_bottom_unselected_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calname_bottom_unselected_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/calname_bottom_unselected_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calname_bottom_unselected_underselect_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/calname_bottom_unselected_underselect_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/calname_bottom_unselected_underselect_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calname_select_underselect_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/calname_select_underselect_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calname_select_underselect_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/calname_select_underselect_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calname_select_underunselected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/calname_select_underunselected_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calname_select_underunselected_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/calname_select_underunselected_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calname_unselected_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/calname_unselected_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calname_unselected_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/calname_unselected_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calname_unselected_underselect_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/calname_unselected_underselect_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/calname_unselected_underselect_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/calname_unselected_underselect_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/dayline_minical_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/dayline_minical_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/frame_event_color_cal_widget_holo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/frame_event_color_cal_widget_holo.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/header_bg_cal_widget_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/header_bg_cal_widget_focused_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/header_bg_cal_widget_normal_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/header_bg_cal_widget_normal_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/header_bg_cal_widget_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/header_bg_cal_widget_pressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_alarm_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_alarm_dark.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_alarm_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_alarm_holo_dark.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_alarm_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_alarm_white.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_call.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_collapse_large_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_collapse_large_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_collapse_small_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_collapse_small_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_contact_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_contact_picture.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_expand_large_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_expand_large_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_expand_small_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_expand_small_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_history_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_history_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_map.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_add_event_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_add_event_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_add_field_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_add_field_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_cancel_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_cancel_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_colorpicker_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_colorpicker_holo_dark.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_colorpicker_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_colorpicker_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_compose_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_compose_holo_dark.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_compose_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_compose_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_done_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_done_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_email_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_email_holo_dark.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_email_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_email_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_refresh_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_refresh_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_remove_field_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_remove_field_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_search_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_search_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_settings_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_settings_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_today_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_today_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_today_no_date_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_today_no_date_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_today_no_date_holo_light_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_today_no_date_holo_light_disabled.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_trash_holo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_trash_holo_dark.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_menu_trash_holo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_menu_trash_holo_light.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_recurrence_bubble_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_recurrence_bubble_disabled.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_recurrence_bubble_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_recurrence_bubble_fill.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_recurrence_bubble_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_recurrence_bubble_outline.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_recurrence_bubble_outline_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_recurrence_bubble_outline_disabled.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_repeat_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_repeat_dark.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_repeat_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/ic_repeat_white.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/list_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/list_focused_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/list_multi_left_activated_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/list_multi_left_activated_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/list_multi_left_focused_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/list_multi_left_focused_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/list_multi_left_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/list_multi_left_pressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/list_multi_left_primary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/list_multi_left_primary_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/list_multi_left_secondary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/list_multi_left_secondary_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/list_pressed_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/list_pressed_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/list_primary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/list_primary_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/list_secondary_holo.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/list_secondary_holo.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/mini_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/mini_calendar.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/minical_bg_shadow_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/minical_bg_shadow_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/panel_month_event_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/panel_month_event_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/snooze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/snooze.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/stat_notify_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/stat_notify_calendar.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/stat_notify_calendar_multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/stat_notify_calendar_multiple.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/switch_thumb_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/switch_thumb_activated_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/switch_thumb_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/switch_thumb_disabled_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/switch_thumb_holo_light_v2.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/switch_thumb_holo_light_v2.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/switch_thumb_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/switch_thumb_pressed_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/timeline_indicator_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/timeline_indicator_activated_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/timeline_indicator_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/timeline_indicator_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/today_blue_week_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/today_blue_week_holo_light.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/toggle_underline_activated.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/toggle_underline_activated.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/toggle_underline_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/toggle_underline_normal.9.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/widget_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable-xhdpi/widget_show.png -------------------------------------------------------------------------------- /res/drawable/agenda_item_bg_primary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/agenda_item_bg_primary.xml -------------------------------------------------------------------------------- /res/drawable/agenda_item_bg_secondary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/agenda_item_bg_secondary.xml -------------------------------------------------------------------------------- /res/drawable/appwidget_header_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/appwidget_header_selector.xml -------------------------------------------------------------------------------- /res/drawable/calendar_color_square.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/calendar_color_square.xml -------------------------------------------------------------------------------- /res/drawable/calendars_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/calendars_item.xml -------------------------------------------------------------------------------- /res/drawable/calname_bottom_select_underselect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/calname_bottom_select_underselect.xml -------------------------------------------------------------------------------- /res/drawable/calname_bottom_select_underunselected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/calname_bottom_select_underunselected.xml -------------------------------------------------------------------------------- /res/drawable/calname_bottom_unselected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/calname_bottom_unselected.xml -------------------------------------------------------------------------------- /res/drawable/calname_bottom_unselected_underselect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/calname_bottom_unselected_underselect.xml -------------------------------------------------------------------------------- /res/drawable/calname_select_underselect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/calname_select_underselect.xml -------------------------------------------------------------------------------- /res/drawable/calname_select_underunselected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/calname_select_underunselected.xml -------------------------------------------------------------------------------- /res/drawable/calname_unselected.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/calname_unselected.xml -------------------------------------------------------------------------------- /res/drawable/calname_unselected_underselect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/calname_unselected_underselect.xml -------------------------------------------------------------------------------- /res/drawable/event_info_mail_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/event_info_mail_button.xml -------------------------------------------------------------------------------- /res/drawable/ic_collapse_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/ic_collapse_holo_light.xml -------------------------------------------------------------------------------- /res/drawable/ic_expand_holo_light.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/ic_expand_holo_light.xml -------------------------------------------------------------------------------- /res/drawable/ic_launch_date_picker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/ic_launch_date_picker.xml -------------------------------------------------------------------------------- /res/drawable/recurrence_bubble_fill.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/recurrence_bubble_fill.xml -------------------------------------------------------------------------------- /res/drawable/switch_thumb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/switch_thumb.xml -------------------------------------------------------------------------------- /res/drawable/today_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/drawable/today_icon.xml -------------------------------------------------------------------------------- /res/layout-land/all_in_one.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout-land/all_in_one.xml -------------------------------------------------------------------------------- /res/layout-land/search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout-land/search.xml -------------------------------------------------------------------------------- /res/layout-sw600dp-w960dp-h527dp-land/all_in_one.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout-sw600dp-w960dp-h527dp-land/all_in_one.xml -------------------------------------------------------------------------------- /res/layout-sw600dp/agenda_day.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout-sw600dp/agenda_day.xml -------------------------------------------------------------------------------- /res/layout-sw600dp/agenda_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout-sw600dp/agenda_fragment.xml -------------------------------------------------------------------------------- /res/layout-sw600dp/agenda_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout-sw600dp/agenda_item.xml -------------------------------------------------------------------------------- /res/layout-sw600dp/all_in_one.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout-sw600dp/all_in_one.xml -------------------------------------------------------------------------------- /res/layout-sw600dp/contact_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout-sw600dp/contact_item.xml -------------------------------------------------------------------------------- /res/layout-sw600dp/edit_event.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout-sw600dp/edit_event.xml -------------------------------------------------------------------------------- /res/layout-sw600dp/edit_event_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout-sw600dp/edit_event_1.xml -------------------------------------------------------------------------------- /res/layout-sw600dp/edit_event_single_column.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout-sw600dp/edit_event_single_column.xml -------------------------------------------------------------------------------- /res/layout-sw600dp/event_info_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout-sw600dp/event_info_label.xml -------------------------------------------------------------------------------- /res/layout-sw600dp/full_month_by_week.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout-sw600dp/full_month_by_week.xml -------------------------------------------------------------------------------- /res/layout-sw600dp/full_month_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout-sw600dp/full_month_header.xml -------------------------------------------------------------------------------- /res/layout/account_calendars.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/account_calendars.xml -------------------------------------------------------------------------------- /res/layout/account_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/account_item.xml -------------------------------------------------------------------------------- /res/layout/actionbar_pulldown_menu_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/actionbar_pulldown_menu_button.xml -------------------------------------------------------------------------------- /res/layout/actionbar_pulldown_menu_top_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/actionbar_pulldown_menu_top_button.xml -------------------------------------------------------------------------------- /res/layout/actionbar_pulldown_menu_top_button_no_date.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/actionbar_pulldown_menu_top_button_no_date.xml -------------------------------------------------------------------------------- /res/layout/agenda_day.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/agenda_day.xml -------------------------------------------------------------------------------- /res/layout/agenda_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/agenda_fragment.xml -------------------------------------------------------------------------------- /res/layout/agenda_header_footer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/agenda_header_footer.xml -------------------------------------------------------------------------------- /res/layout/agenda_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/agenda_item.xml -------------------------------------------------------------------------------- /res/layout/agenda_reminder_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/agenda_reminder_item.xml -------------------------------------------------------------------------------- /res/layout/alert_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/alert_activity.xml -------------------------------------------------------------------------------- /res/layout/alert_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/alert_item.xml -------------------------------------------------------------------------------- /res/layout/all_in_one.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/all_in_one.xml -------------------------------------------------------------------------------- /res/layout/appwidget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/appwidget.xml -------------------------------------------------------------------------------- /res/layout/appwidget_day.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/appwidget_day.xml -------------------------------------------------------------------------------- /res/layout/appwidget_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/appwidget_loading.xml -------------------------------------------------------------------------------- /res/layout/appwidget_no_events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/appwidget_no_events.xml -------------------------------------------------------------------------------- /res/layout/bubble_event.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/bubble_event.xml -------------------------------------------------------------------------------- /res/layout/calendar_sync_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/calendar_sync_item.xml -------------------------------------------------------------------------------- /res/layout/calendars_dropdown_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/calendars_dropdown_item.xml -------------------------------------------------------------------------------- /res/layout/calendars_spinner_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/calendars_spinner_item.xml -------------------------------------------------------------------------------- /res/layout/contact_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/contact_item.xml -------------------------------------------------------------------------------- /res/layout/create_event_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/create_event_dialog.xml -------------------------------------------------------------------------------- /res/layout/date_range_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/date_range_title.xml -------------------------------------------------------------------------------- /res/layout/day_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/day_activity.xml -------------------------------------------------------------------------------- /res/layout/edit_event.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/edit_event.xml -------------------------------------------------------------------------------- /res/layout/edit_event_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/edit_event_1.xml -------------------------------------------------------------------------------- /res/layout/edit_event_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/edit_event_2.xml -------------------------------------------------------------------------------- /res/layout/edit_event_custom_actionbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/edit_event_custom_actionbar.xml -------------------------------------------------------------------------------- /res/layout/edit_event_single_column.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/edit_event_single_column.xml -------------------------------------------------------------------------------- /res/layout/edit_reminder_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/edit_reminder_item.xml -------------------------------------------------------------------------------- /res/layout/email_autocomplete_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/email_autocomplete_item.xml -------------------------------------------------------------------------------- /res/layout/email_autocomplete_item_loading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/email_autocomplete_item_loading.xml -------------------------------------------------------------------------------- /res/layout/event_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/event_info.xml -------------------------------------------------------------------------------- /res/layout/event_info_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/event_info_dialog.xml -------------------------------------------------------------------------------- /res/layout/event_info_headline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/event_info_headline.xml -------------------------------------------------------------------------------- /res/layout/event_info_label.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/event_info_label.xml -------------------------------------------------------------------------------- /res/layout/expandable_textview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/expandable_textview.xml -------------------------------------------------------------------------------- /res/layout/full_month_by_week.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/full_month_by_week.xml -------------------------------------------------------------------------------- /res/layout/full_month_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/full_month_header.xml -------------------------------------------------------------------------------- /res/layout/location_dropdown_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/location_dropdown_item.xml -------------------------------------------------------------------------------- /res/layout/mini_calendar_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/mini_calendar_item.xml -------------------------------------------------------------------------------- /res/layout/mini_month_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/mini_month_header.xml -------------------------------------------------------------------------------- /res/layout/month_by_week.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/month_by_week.xml -------------------------------------------------------------------------------- /res/layout/notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/notification.xml -------------------------------------------------------------------------------- /res/layout/quick_response_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/quick_response_item.xml -------------------------------------------------------------------------------- /res/layout/recurrencepicker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/recurrencepicker.xml -------------------------------------------------------------------------------- /res/layout/recurrencepicker_end_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/recurrencepicker_end_text.xml -------------------------------------------------------------------------------- /res/layout/recurrencepicker_freq_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/recurrencepicker_freq_item.xml -------------------------------------------------------------------------------- /res/layout/search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/search.xml -------------------------------------------------------------------------------- /res/layout/select_calendars_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/select_calendars_fragment.xml -------------------------------------------------------------------------------- /res/layout/select_calendars_multi_accounts_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/select_calendars_multi_accounts_fragment.xml -------------------------------------------------------------------------------- /res/layout/simple_frame_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/simple_frame_layout.xml -------------------------------------------------------------------------------- /res/layout/timezone_footer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/timezone_footer.xml -------------------------------------------------------------------------------- /res/layout/widget_all_day_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/widget_all_day_item.xml -------------------------------------------------------------------------------- /res/layout/widget_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/layout/widget_item.xml -------------------------------------------------------------------------------- /res/menu-land/all_in_one_title_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/menu-land/all_in_one_title_bar.xml -------------------------------------------------------------------------------- /res/menu-sw600dp-land/all_in_one_title_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/menu-sw600dp-land/all_in_one_title_bar.xml -------------------------------------------------------------------------------- /res/menu-sw600dp/all_in_one_title_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/menu-sw600dp/all_in_one_title_bar.xml -------------------------------------------------------------------------------- /res/menu/all_in_one_title_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/menu/all_in_one_title_bar.xml -------------------------------------------------------------------------------- /res/menu/edit_event_title_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/menu/edit_event_title_bar.xml -------------------------------------------------------------------------------- /res/menu/event_info_title_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/menu/event_info_title_bar.xml -------------------------------------------------------------------------------- /res/menu/search_title_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/menu/search_title_bar.xml -------------------------------------------------------------------------------- /res/menu/settings_title_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/menu/settings_title_bar.xml -------------------------------------------------------------------------------- /res/mipmap-hdpi/ic_launcher_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/mipmap-hdpi/ic_launcher_calendar.png -------------------------------------------------------------------------------- /res/mipmap-mdpi/ic_launcher_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/mipmap-mdpi/ic_launcher_calendar.png -------------------------------------------------------------------------------- /res/mipmap-xhdpi/ic_launcher_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/mipmap-xhdpi/ic_launcher_calendar.png -------------------------------------------------------------------------------- /res/mipmap-xxhdpi/ic_launcher_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/mipmap-xxhdpi/ic_launcher_calendar.png -------------------------------------------------------------------------------- /res/values-af/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-af/arrays.xml -------------------------------------------------------------------------------- /res/values-af/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-af/cm_strings.xml -------------------------------------------------------------------------------- /res/values-af/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-af/strings.xml -------------------------------------------------------------------------------- /res/values-am/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-am/arrays.xml -------------------------------------------------------------------------------- /res/values-am/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-am/strings.xml -------------------------------------------------------------------------------- /res/values-ar/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ar/arrays.xml -------------------------------------------------------------------------------- /res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ar/strings.xml -------------------------------------------------------------------------------- /res/values-be/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-be/arrays.xml -------------------------------------------------------------------------------- /res/values-be/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-be/strings.xml -------------------------------------------------------------------------------- /res/values-bg/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-bg/arrays.xml -------------------------------------------------------------------------------- /res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-bg/strings.xml -------------------------------------------------------------------------------- /res/values-ca/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ca/arrays.xml -------------------------------------------------------------------------------- /res/values-ca/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ca/cm_strings.xml -------------------------------------------------------------------------------- /res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ca/strings.xml -------------------------------------------------------------------------------- /res/values-cs/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-cs/arrays.xml -------------------------------------------------------------------------------- /res/values-cs/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-cs/cm_strings.xml -------------------------------------------------------------------------------- /res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-cs/strings.xml -------------------------------------------------------------------------------- /res/values-da/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-da/arrays.xml -------------------------------------------------------------------------------- /res/values-da/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-da/cm_strings.xml -------------------------------------------------------------------------------- /res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-da/strings.xml -------------------------------------------------------------------------------- /res/values-de/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-de/arrays.xml -------------------------------------------------------------------------------- /res/values-de/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-de/cm_strings.xml -------------------------------------------------------------------------------- /res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-de/strings.xml -------------------------------------------------------------------------------- /res/values-el/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-el/arrays.xml -------------------------------------------------------------------------------- /res/values-el/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-el/cm_strings.xml -------------------------------------------------------------------------------- /res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-el/strings.xml -------------------------------------------------------------------------------- /res/values-en-rGB/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-en-rGB/arrays.xml -------------------------------------------------------------------------------- /res/values-en-rGB/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-en-rGB/strings.xml -------------------------------------------------------------------------------- /res/values-es-rUS/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-es-rUS/arrays.xml -------------------------------------------------------------------------------- /res/values-es-rUS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-es-rUS/strings.xml -------------------------------------------------------------------------------- /res/values-es/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-es/arrays.xml -------------------------------------------------------------------------------- /res/values-es/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-es/cm_strings.xml -------------------------------------------------------------------------------- /res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-es/strings.xml -------------------------------------------------------------------------------- /res/values-et/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-et/arrays.xml -------------------------------------------------------------------------------- /res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-et/strings.xml -------------------------------------------------------------------------------- /res/values-fa/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-fa/arrays.xml -------------------------------------------------------------------------------- /res/values-fa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-fa/strings.xml -------------------------------------------------------------------------------- /res/values-fi/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-fi/arrays.xml -------------------------------------------------------------------------------- /res/values-fi/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-fi/cm_strings.xml -------------------------------------------------------------------------------- /res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-fi/strings.xml -------------------------------------------------------------------------------- /res/values-fr/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-fr/arrays.xml -------------------------------------------------------------------------------- /res/values-fr/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-fr/cm_strings.xml -------------------------------------------------------------------------------- /res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-fr/strings.xml -------------------------------------------------------------------------------- /res/values-hi/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-hi/arrays.xml -------------------------------------------------------------------------------- /res/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-hi/strings.xml -------------------------------------------------------------------------------- /res/values-hr/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-hr/arrays.xml -------------------------------------------------------------------------------- /res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-hr/strings.xml -------------------------------------------------------------------------------- /res/values-hu/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-hu/arrays.xml -------------------------------------------------------------------------------- /res/values-hu/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-hu/cm_strings.xml -------------------------------------------------------------------------------- /res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-hu/strings.xml -------------------------------------------------------------------------------- /res/values-in/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-in/arrays.xml -------------------------------------------------------------------------------- /res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-in/strings.xml -------------------------------------------------------------------------------- /res/values-it/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-it/arrays.xml -------------------------------------------------------------------------------- /res/values-it/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-it/cm_strings.xml -------------------------------------------------------------------------------- /res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-it/strings.xml -------------------------------------------------------------------------------- /res/values-iw/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-iw/arrays.xml -------------------------------------------------------------------------------- /res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-iw/strings.xml -------------------------------------------------------------------------------- /res/values-ja/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ja/arrays.xml -------------------------------------------------------------------------------- /res/values-ja/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ja/cm_strings.xml -------------------------------------------------------------------------------- /res/values-ja/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ja/colors.xml -------------------------------------------------------------------------------- /res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ja/strings.xml -------------------------------------------------------------------------------- /res/values-ko/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ko/arrays.xml -------------------------------------------------------------------------------- /res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ko/strings.xml -------------------------------------------------------------------------------- /res/values-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-land/dimens.xml -------------------------------------------------------------------------------- /res/values-lt/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-lt/arrays.xml -------------------------------------------------------------------------------- /res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-lt/strings.xml -------------------------------------------------------------------------------- /res/values-lv/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-lv/arrays.xml -------------------------------------------------------------------------------- /res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-lv/strings.xml -------------------------------------------------------------------------------- /res/values-mcc262/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-mcc262/strings.xml -------------------------------------------------------------------------------- /res/values-ms/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ms/arrays.xml -------------------------------------------------------------------------------- /res/values-ms/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ms/strings.xml -------------------------------------------------------------------------------- /res/values-nb/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-nb/arrays.xml -------------------------------------------------------------------------------- /res/values-nb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-nb/strings.xml -------------------------------------------------------------------------------- /res/values-nl/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-nl/arrays.xml -------------------------------------------------------------------------------- /res/values-nl/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-nl/cm_strings.xml -------------------------------------------------------------------------------- /res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-nl/strings.xml -------------------------------------------------------------------------------- /res/values-pl/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-pl/arrays.xml -------------------------------------------------------------------------------- /res/values-pl/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-pl/cm_strings.xml -------------------------------------------------------------------------------- /res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-pl/strings.xml -------------------------------------------------------------------------------- /res/values-pt-rPT/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-pt-rPT/arrays.xml -------------------------------------------------------------------------------- /res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /res/values-pt/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-pt/arrays.xml -------------------------------------------------------------------------------- /res/values-pt/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-pt/cm_strings.xml -------------------------------------------------------------------------------- /res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-pt/strings.xml -------------------------------------------------------------------------------- /res/values-ro/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ro/arrays.xml -------------------------------------------------------------------------------- /res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ro/strings.xml -------------------------------------------------------------------------------- /res/values-ru/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ru/arrays.xml -------------------------------------------------------------------------------- /res/values-ru/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ru/cm_strings.xml -------------------------------------------------------------------------------- /res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ru/strings.xml -------------------------------------------------------------------------------- /res/values-sk/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-sk/arrays.xml -------------------------------------------------------------------------------- /res/values-sk/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-sk/cm_strings.xml -------------------------------------------------------------------------------- /res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-sk/strings.xml -------------------------------------------------------------------------------- /res/values-sl/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-sl/arrays.xml -------------------------------------------------------------------------------- /res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-sl/strings.xml -------------------------------------------------------------------------------- /res/values-sr/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-sr/arrays.xml -------------------------------------------------------------------------------- /res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-sr/strings.xml -------------------------------------------------------------------------------- /res/values-sv/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-sv/arrays.xml -------------------------------------------------------------------------------- /res/values-sv/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-sv/cm_strings.xml -------------------------------------------------------------------------------- /res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-sv/strings.xml -------------------------------------------------------------------------------- /res/values-sw/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-sw/arrays.xml -------------------------------------------------------------------------------- /res/values-sw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-sw/strings.xml -------------------------------------------------------------------------------- /res/values-sw600dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-sw600dp-land/dimens.xml -------------------------------------------------------------------------------- /res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /res/values-th/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-th/arrays.xml -------------------------------------------------------------------------------- /res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-th/strings.xml -------------------------------------------------------------------------------- /res/values-tl/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-tl/arrays.xml -------------------------------------------------------------------------------- /res/values-tl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-tl/strings.xml -------------------------------------------------------------------------------- /res/values-tr/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-tr/arrays.xml -------------------------------------------------------------------------------- /res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-tr/strings.xml -------------------------------------------------------------------------------- /res/values-ug/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ug/arrays.xml -------------------------------------------------------------------------------- /res/values-ug/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ug/cm_strings.xml -------------------------------------------------------------------------------- /res/values-ug/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-ug/strings.xml -------------------------------------------------------------------------------- /res/values-uk/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-uk/arrays.xml -------------------------------------------------------------------------------- /res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-uk/strings.xml -------------------------------------------------------------------------------- /res/values-vi/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-vi/arrays.xml -------------------------------------------------------------------------------- /res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-vi/strings.xml -------------------------------------------------------------------------------- /res/values-w1280dp-h752dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-w1280dp-h752dp/dimens.xml -------------------------------------------------------------------------------- /res/values-w600dp-h879dp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-w600dp-h879dp/config.xml -------------------------------------------------------------------------------- /res/values-w600dp-h879dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-w600dp-h879dp/dimens.xml -------------------------------------------------------------------------------- /res/values-w600dp-h879dp/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-w600dp-h879dp/integers.xml -------------------------------------------------------------------------------- /res/values-w800dp-h1232dp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-w800dp-h1232dp/config.xml -------------------------------------------------------------------------------- /res/values-w800dp-h1232dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-w800dp-h1232dp/dimens.xml -------------------------------------------------------------------------------- /res/values-w960dp-h527dp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-w960dp-h527dp/config.xml -------------------------------------------------------------------------------- /res/values-w960dp-h527dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-w960dp-h527dp/dimens.xml -------------------------------------------------------------------------------- /res/values-w960dp-h527dp/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-w960dp-h527dp/integers.xml -------------------------------------------------------------------------------- /res/values-zh-rCN/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-zh-rCN/arrays.xml -------------------------------------------------------------------------------- /res/values-zh-rCN/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-zh-rCN/cm_strings.xml -------------------------------------------------------------------------------- /res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /res/values-zh-rTW/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-zh-rTW/arrays.xml -------------------------------------------------------------------------------- /res/values-zh-rTW/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-zh-rTW/cm_strings.xml -------------------------------------------------------------------------------- /res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /res/values-zu/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-zu/arrays.xml -------------------------------------------------------------------------------- /res/values-zu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values-zu/strings.xml -------------------------------------------------------------------------------- /res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values/arrays.xml -------------------------------------------------------------------------------- /res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values/attrs.xml -------------------------------------------------------------------------------- /res/values/cm_arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values/cm_arrays.xml -------------------------------------------------------------------------------- /res/values/cm_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values/cm_strings.xml -------------------------------------------------------------------------------- /res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values/colors.xml -------------------------------------------------------------------------------- /res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values/config.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values/integers.xml -------------------------------------------------------------------------------- /res/values/standalone_strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values/standalone_strings.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /res/xml/about_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/xml/about_preferences.xml -------------------------------------------------------------------------------- /res/xml/appwidget_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/xml/appwidget_info.xml -------------------------------------------------------------------------------- /res/xml/calendar_settings_headers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/xml/calendar_settings_headers.xml -------------------------------------------------------------------------------- /res/xml/general_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/xml/general_preferences.xml -------------------------------------------------------------------------------- /res/xml/other_preferences.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/xml/other_preferences.xml -------------------------------------------------------------------------------- /res/xml/searchable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/res/xml/searchable.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/com/android/calendar/AboutPreferences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/AboutPreferences.java -------------------------------------------------------------------------------- /src/com/android/calendar/AbstractCalendarActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/AbstractCalendarActivity.java -------------------------------------------------------------------------------- /src/com/android/calendar/AllInOneActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/AllInOneActivity.java -------------------------------------------------------------------------------- /src/com/android/calendar/AllInOneMenuExtensionsInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/AllInOneMenuExtensionsInterface.java -------------------------------------------------------------------------------- /src/com/android/calendar/AsyncQueryService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/AsyncQueryService.java -------------------------------------------------------------------------------- /src/com/android/calendar/AsyncQueryServiceHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/AsyncQueryServiceHelper.java -------------------------------------------------------------------------------- /src/com/android/calendar/CalendarApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/CalendarApplication.java -------------------------------------------------------------------------------- /src/com/android/calendar/CalendarBackupAgent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/CalendarBackupAgent.java -------------------------------------------------------------------------------- /src/com/android/calendar/CalendarColorPickerDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/CalendarColorPickerDialog.java -------------------------------------------------------------------------------- /src/com/android/calendar/CalendarController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/CalendarController.java -------------------------------------------------------------------------------- /src/com/android/calendar/CalendarData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/CalendarData.java -------------------------------------------------------------------------------- /src/com/android/calendar/CalendarEventModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/CalendarEventModel.java -------------------------------------------------------------------------------- /src/com/android/calendar/CalendarRecentSuggestionsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/CalendarRecentSuggestionsProvider.java -------------------------------------------------------------------------------- /src/com/android/calendar/CalendarSettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/CalendarSettingsActivity.java -------------------------------------------------------------------------------- /src/com/android/calendar/CalendarUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/CalendarUtils.java -------------------------------------------------------------------------------- /src/com/android/calendar/CalendarViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/CalendarViewAdapter.java -------------------------------------------------------------------------------- /src/com/android/calendar/CloudNotificationBackplane.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/CloudNotificationBackplane.java -------------------------------------------------------------------------------- /src/com/android/calendar/ColorChipView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/ColorChipView.java -------------------------------------------------------------------------------- /src/com/android/calendar/ContactsAsyncHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/ContactsAsyncHelper.java -------------------------------------------------------------------------------- /src/com/android/calendar/DayFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/DayFragment.java -------------------------------------------------------------------------------- /src/com/android/calendar/DayOfMonthCursor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/DayOfMonthCursor.java -------------------------------------------------------------------------------- /src/com/android/calendar/DayOfMonthDrawable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/DayOfMonthDrawable.java -------------------------------------------------------------------------------- /src/com/android/calendar/DayView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/DayView.java -------------------------------------------------------------------------------- /src/com/android/calendar/DeleteEventHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/DeleteEventHelper.java -------------------------------------------------------------------------------- /src/com/android/calendar/EditResponseHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/EditResponseHelper.java -------------------------------------------------------------------------------- /src/com/android/calendar/EmailAddressAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/EmailAddressAdapter.java -------------------------------------------------------------------------------- /src/com/android/calendar/Event.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/Event.java -------------------------------------------------------------------------------- /src/com/android/calendar/EventGeometry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/EventGeometry.java -------------------------------------------------------------------------------- /src/com/android/calendar/EventInfoActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/EventInfoActivity.java -------------------------------------------------------------------------------- /src/com/android/calendar/EventInfoFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/EventInfoFragment.java -------------------------------------------------------------------------------- /src/com/android/calendar/EventLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/EventLoader.java -------------------------------------------------------------------------------- /src/com/android/calendar/EventRecurrenceFormatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/EventRecurrenceFormatter.java -------------------------------------------------------------------------------- /src/com/android/calendar/ExpandableTextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/ExpandableTextView.java -------------------------------------------------------------------------------- /src/com/android/calendar/ExtensionsFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/ExtensionsFactory.java -------------------------------------------------------------------------------- /src/com/android/calendar/GeneralPreferences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/GeneralPreferences.java -------------------------------------------------------------------------------- /src/com/android/calendar/GoogleCalendarUriIntentFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/GoogleCalendarUriIntentFilter.java -------------------------------------------------------------------------------- /src/com/android/calendar/MultiStateButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/MultiStateButton.java -------------------------------------------------------------------------------- /src/com/android/calendar/OtherPreferences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/OtherPreferences.java -------------------------------------------------------------------------------- /src/com/android/calendar/QuickResponseSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/QuickResponseSettings.java -------------------------------------------------------------------------------- /src/com/android/calendar/RecipientAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/RecipientAdapter.java -------------------------------------------------------------------------------- /src/com/android/calendar/SearchActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/SearchActivity.java -------------------------------------------------------------------------------- /src/com/android/calendar/StickyHeaderListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/StickyHeaderListView.java -------------------------------------------------------------------------------- /src/com/android/calendar/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/Utils.java -------------------------------------------------------------------------------- /src/com/android/calendar/agenda/AgendaAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/agenda/AgendaAdapter.java -------------------------------------------------------------------------------- /src/com/android/calendar/agenda/AgendaByDayAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/agenda/AgendaByDayAdapter.java -------------------------------------------------------------------------------- /src/com/android/calendar/agenda/AgendaFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/agenda/AgendaFragment.java -------------------------------------------------------------------------------- /src/com/android/calendar/agenda/AgendaListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/agenda/AgendaListView.java -------------------------------------------------------------------------------- /src/com/android/calendar/agenda/AgendaWindowAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/agenda/AgendaWindowAdapter.java -------------------------------------------------------------------------------- /src/com/android/calendar/alerts/AlarmManagerInterface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/alerts/AlarmManagerInterface.java -------------------------------------------------------------------------------- /src/com/android/calendar/alerts/AlarmScheduler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/alerts/AlarmScheduler.java -------------------------------------------------------------------------------- /src/com/android/calendar/alerts/AlertActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/alerts/AlertActivity.java -------------------------------------------------------------------------------- /src/com/android/calendar/alerts/AlertAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/alerts/AlertAdapter.java -------------------------------------------------------------------------------- /src/com/android/calendar/alerts/AlertReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/alerts/AlertReceiver.java -------------------------------------------------------------------------------- /src/com/android/calendar/alerts/AlertService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/alerts/AlertService.java -------------------------------------------------------------------------------- /src/com/android/calendar/alerts/AlertUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/alerts/AlertUtils.java -------------------------------------------------------------------------------- /src/com/android/calendar/alerts/DismissAlarmsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/alerts/DismissAlarmsService.java -------------------------------------------------------------------------------- /src/com/android/calendar/alerts/GlobalDismissManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/alerts/GlobalDismissManager.java -------------------------------------------------------------------------------- /src/com/android/calendar/alerts/InitAlarmsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/alerts/InitAlarmsService.java -------------------------------------------------------------------------------- /src/com/android/calendar/alerts/NotificationMgr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/alerts/NotificationMgr.java -------------------------------------------------------------------------------- /src/com/android/calendar/alerts/QuickResponseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/alerts/QuickResponseActivity.java -------------------------------------------------------------------------------- /src/com/android/calendar/alerts/SnoozeAlarmsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/alerts/SnoozeAlarmsService.java -------------------------------------------------------------------------------- /src/com/android/calendar/alerts/SnoozeDelayActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/alerts/SnoozeDelayActivity.java -------------------------------------------------------------------------------- /src/com/android/calendar/event/AttendeesView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/event/AttendeesView.java -------------------------------------------------------------------------------- /src/com/android/calendar/event/CreateEventDialogFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/event/CreateEventDialogFragment.java -------------------------------------------------------------------------------- /src/com/android/calendar/event/EditEventActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/event/EditEventActivity.java -------------------------------------------------------------------------------- /src/com/android/calendar/event/EditEventFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/event/EditEventFragment.java -------------------------------------------------------------------------------- /src/com/android/calendar/event/EditEventHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/event/EditEventHelper.java -------------------------------------------------------------------------------- /src/com/android/calendar/event/EditEventView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/event/EditEventView.java -------------------------------------------------------------------------------- /src/com/android/calendar/event/EventColorCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/event/EventColorCache.java -------------------------------------------------------------------------------- /src/com/android/calendar/event/EventColorPickerDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/event/EventColorPickerDialog.java -------------------------------------------------------------------------------- /src/com/android/calendar/event/EventLocationAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/event/EventLocationAdapter.java -------------------------------------------------------------------------------- /src/com/android/calendar/event/EventViewUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/event/EventViewUtils.java -------------------------------------------------------------------------------- /src/com/android/calendar/month/MonthByWeekAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/month/MonthByWeekAdapter.java -------------------------------------------------------------------------------- /src/com/android/calendar/month/MonthByWeekFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/month/MonthByWeekFragment.java -------------------------------------------------------------------------------- /src/com/android/calendar/month/MonthListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/month/MonthListView.java -------------------------------------------------------------------------------- /src/com/android/calendar/month/MonthWeekEventsView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/month/MonthWeekEventsView.java -------------------------------------------------------------------------------- /src/com/android/calendar/month/SimpleDayPickerFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/month/SimpleDayPickerFragment.java -------------------------------------------------------------------------------- /src/com/android/calendar/month/SimpleWeekView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/month/SimpleWeekView.java -------------------------------------------------------------------------------- /src/com/android/calendar/month/SimpleWeeksAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/month/SimpleWeeksAdapter.java -------------------------------------------------------------------------------- /src/com/android/calendar/recurrencepicker/LinearLayoutWithMaxWidth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/recurrencepicker/LinearLayoutWithMaxWidth.java -------------------------------------------------------------------------------- /src/com/android/calendar/recurrencepicker/RecurrencePickerDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/recurrencepicker/RecurrencePickerDialog.java -------------------------------------------------------------------------------- /src/com/android/calendar/recurrencepicker/WeekButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/recurrencepicker/WeekButton.java -------------------------------------------------------------------------------- /src/com/android/calendar/selectcalendars/CalendarColorCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/selectcalendars/CalendarColorCache.java -------------------------------------------------------------------------------- /src/com/android/calendar/selectcalendars/CalendarColorSquare.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/selectcalendars/CalendarColorSquare.java -------------------------------------------------------------------------------- /src/com/android/calendar/selectcalendars/SelectCalendarsSimpleAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/selectcalendars/SelectCalendarsSimpleAdapter.java -------------------------------------------------------------------------------- /src/com/android/calendar/selectcalendars/SelectCalendarsSyncAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/selectcalendars/SelectCalendarsSyncAdapter.java -------------------------------------------------------------------------------- /src/com/android/calendar/selectcalendars/SelectCalendarsSyncFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/selectcalendars/SelectCalendarsSyncFragment.java -------------------------------------------------------------------------------- /src/com/android/calendar/selectcalendars/SelectSyncedCalendarsMultiAccountActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/selectcalendars/SelectSyncedCalendarsMultiAccountActivity.java -------------------------------------------------------------------------------- /src/com/android/calendar/selectcalendars/SelectSyncedCalendarsMultiAccountAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/selectcalendars/SelectSyncedCalendarsMultiAccountAdapter.java -------------------------------------------------------------------------------- /src/com/android/calendar/selectcalendars/SelectVisibleCalendarsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/selectcalendars/SelectVisibleCalendarsActivity.java -------------------------------------------------------------------------------- /src/com/android/calendar/selectcalendars/SelectVisibleCalendarsFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/selectcalendars/SelectVisibleCalendarsFragment.java -------------------------------------------------------------------------------- /src/com/android/calendar/widget/CalendarAppWidgetModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/widget/CalendarAppWidgetModel.java -------------------------------------------------------------------------------- /src/com/android/calendar/widget/CalendarAppWidgetProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/widget/CalendarAppWidgetProvider.java -------------------------------------------------------------------------------- /src/com/android/calendar/widget/CalendarAppWidgetService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/src/com/android/calendar/widget/CalendarAppWidgetService.java -------------------------------------------------------------------------------- /tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/tests/Android.mk -------------------------------------------------------------------------------- /tests/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/tests/AndroidManifest.xml -------------------------------------------------------------------------------- /tests/src/com/android/calendar/AsyncQueryServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/tests/src/com/android/calendar/AsyncQueryServiceTest.java -------------------------------------------------------------------------------- /tests/src/com/android/calendar/DbTestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/tests/src/com/android/calendar/DbTestUtils.java -------------------------------------------------------------------------------- /tests/src/com/android/calendar/FakeSharedPreferences.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/tests/src/com/android/calendar/FakeSharedPreferences.java -------------------------------------------------------------------------------- /tests/src/com/android/calendar/FormatDateRangeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/tests/src/com/android/calendar/FormatDateRangeTest.java -------------------------------------------------------------------------------- /tests/src/com/android/calendar/UtilsTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/tests/src/com/android/calendar/UtilsTests.java -------------------------------------------------------------------------------- /tests/src/com/android/calendar/WeekNumberTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/tests/src/com/android/calendar/WeekNumberTest.java -------------------------------------------------------------------------------- /tests/src/com/android/calendar/alerts/AlarmSchedulerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/tests/src/com/android/calendar/alerts/AlarmSchedulerTest.java -------------------------------------------------------------------------------- /tests/src/com/android/calendar/alerts/AlertServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/tests/src/com/android/calendar/alerts/AlertServiceTest.java -------------------------------------------------------------------------------- /tests/src/com/android/calendar/alerts/MockAlarmManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/tests/src/com/android/calendar/alerts/MockAlarmManager.java -------------------------------------------------------------------------------- /tests/src/com/android/calendar/alerts/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/tests/src/com/android/calendar/alerts/Utils.java -------------------------------------------------------------------------------- /tests/src/com/android/calendar/event/EditEventHelperTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/tests/src/com/android/calendar/event/EditEventHelperTest.java -------------------------------------------------------------------------------- /tests/src/com/android/calendar/widget/CalendarAppWidgetServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free-Software-for-Android/Standalone-Calendar/HEAD/tests/src/com/android/calendar/widget/CalendarAppWidgetServiceTest.java --------------------------------------------------------------------------------