├── .gitignore
├── .idea
├── .name
├── compiler.xml
├── copyright
│ └── profiles_settings.xml
├── encodings.xml
├── gradle.xml
├── misc.xml
├── modules.xml
├── scopes
│ └── scope_settings.xml
└── vcs.xml
├── README.md
├── RestAPP-android.iml
├── RestAPP.iml
├── RestAPP
├── .gitignore
├── RestAPP-RestAPP.iml
├── build.gradle
├── proguard-rules.txt
└── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── java
│ └── com
│ │ └── tesis
│ │ └── restapp
│ │ └── restapp
│ │ ├── activities
│ │ ├── intro
│ │ │ ├── IntroActivity.java
│ │ │ ├── IntroFragment.java
│ │ │ ├── IntroHandler.java
│ │ │ └── LogInFragment.java
│ │ ├── main
│ │ │ ├── CheckoutFragment.java
│ │ │ ├── DashboardFragment.java
│ │ │ ├── MainActivity.java
│ │ │ ├── MainHandler.java
│ │ │ ├── OrderActivity.java
│ │ │ ├── OrderFragment.java
│ │ │ ├── TablesActivity.java
│ │ │ ├── TablesFragment.java
│ │ │ └── adapters
│ │ │ │ ├── ItemsInOrderAdapter.java
│ │ │ │ ├── OrdersAdapter.java
│ │ │ │ └── TablesAdapter.java
│ │ └── search
│ │ │ ├── CategoriesFragment.java
│ │ │ ├── ItemsFragment.java
│ │ │ ├── SearchActivity.java
│ │ │ ├── SearchHandler.java
│ │ │ └── adapters
│ │ │ ├── CategoriesAdapter.java
│ │ │ └── ItemsAdapter.java
│ │ ├── api
│ │ ├── ApiClient.java
│ │ ├── BusProvider.java
│ │ ├── DataBaseSyncCompleteEvent.java
│ │ ├── LoginEvent.java
│ │ ├── RestAppApiInterface.java
│ │ ├── TablesUpdatedEvent.java
│ │ └── response
│ │ │ └── ApiResponse.java
│ │ ├── database
│ │ ├── DatabaseHandler.java
│ │ └── Response.java
│ │ └── models
│ │ ├── Category.java
│ │ ├── Constants.java
│ │ ├── Date.java
│ │ ├── Item.java
│ │ ├── Order.java
│ │ ├── Order_Item.java
│ │ ├── Table.java
│ │ └── User.java
│ └── res
│ ├── anim
│ ├── slide_left.xml
│ └── slide_right.xml
│ ├── drawable-hdpi
│ ├── dish.png
│ ├── ic_action_new.png
│ ├── ic_action_remove.png
│ ├── ic_action_settings.png
│ ├── ic_launcher.png
│ ├── logout_icon.png
│ └── waiter_icon.png
│ ├── drawable-mdpi
│ ├── fab_plus_icon.png
│ ├── food_wallpaper_dashboard.jpg
│ ├── ic_action_new.png
│ ├── ic_action_remove.png
│ ├── ic_action_settings.png
│ └── ic_launcher.png
│ ├── drawable-xhdpi
│ ├── ic_action_new.png
│ ├── ic_action_remove.png
│ ├── ic_action_settings.png
│ ├── ic_launcher.png
│ ├── logout_icon.png
│ └── waiter_icon.png
│ ├── drawable-xxhdpi
│ ├── background_login.jpg
│ ├── bw_cafeteria.jpg
│ ├── bw_cerveza.jpg
│ ├── bw_comida.jpg
│ ├── bw_dessert.jpg
│ ├── bw_gradient.xml
│ ├── bw_juice.jpg
│ ├── bw_sandwich.jpg
│ ├── bw_shadow_top.xml
│ ├── bw_wine.jpg
│ ├── custombackground.xml
│ ├── custominput.xml
│ ├── dashboard_background.jpg
│ ├── ic_action_new.png
│ ├── ic_action_remove.png
│ ├── ic_action_settings.png
│ ├── ic_customers_white.png
│ ├── ic_launcher.png
│ ├── ic_money.png
│ ├── ic_table.png
│ ├── lock_icon.png
│ ├── logo_login.png
│ ├── logout_icon.png
│ ├── normal_button.xml
│ ├── transparent_button.xml
│ ├── waiter_icon.png
│ └── wp_money.jpg
│ ├── drawable-xxxhdpi
│ ├── body_linen.jpg
│ └── ic_launcher.png
│ ├── drawable
│ ├── background.xml
│ ├── fab.xml
│ ├── fab_selector.xml
│ ├── luigi_risotto.png
│ ├── round_button_style.xml
│ └── round_button_style_pressed.xml
│ ├── ic_launcher.png
│ ├── layout
│ ├── activity_intro.xml
│ ├── activity_item.xml
│ ├── activity_main.xml
│ ├── activity_order.xml
│ ├── activity_search.xml
│ ├── activity_tables.xml
│ ├── fragment_checkout.xml
│ ├── fragment_dashboard.xml
│ ├── fragment_login.xml
│ ├── fragment_order.xml
│ ├── fragment_search.xml
│ ├── fragment_tables.xml
│ ├── fragment_welcome.xml
│ ├── listview_category.xml
│ ├── listview_item.xml
│ ├── listview_order.xml
│ ├── listview_order_item.xml
│ └── listview_table.xml
│ ├── menu
│ ├── intro.xml
│ ├── main.xml
│ ├── menu_item.xml
│ ├── menu_order.xml
│ ├── menu_tables.xml
│ ├── order.xml
│ └── search.xml
│ ├── values-w820dp
│ └── dimens.xml
│ └── values
│ ├── colors.xml
│ ├── dimens.xml
│ ├── strings.xml
│ ├── styles.xml
│ └── themes.xml
├── build.gradle
├── build
└── intermediates
│ ├── dex-cache
│ └── cache.xml
│ └── exploded-aar
│ └── com.android.support
│ └── appcompat-v7
│ └── 19.1.0
│ ├── AndroidManifest.xml
│ ├── R.txt
│ ├── classes.jar
│ └── res
│ ├── anim
│ ├── abc_fade_in.xml
│ ├── abc_fade_out.xml
│ ├── abc_slide_in_bottom.xml
│ ├── abc_slide_in_top.xml
│ ├── abc_slide_out_bottom.xml
│ └── abc_slide_out_top.xml
│ ├── color
│ └── abc_search_url_text_holo.xml
│ ├── drawable-hdpi
│ ├── abc_ab_bottom_solid_dark_holo.9.png
│ ├── abc_ab_bottom_solid_light_holo.9.png
│ ├── abc_ab_bottom_transparent_dark_holo.9.png
│ ├── abc_ab_bottom_transparent_light_holo.9.png
│ ├── abc_ab_share_pack_holo_dark.9.png
│ ├── abc_ab_share_pack_holo_light.9.png
│ ├── abc_ab_solid_dark_holo.9.png
│ ├── abc_ab_solid_light_holo.9.png
│ ├── abc_ab_stacked_solid_dark_holo.9.png
│ ├── abc_ab_stacked_solid_light_holo.9.png
│ ├── abc_ab_stacked_transparent_dark_holo.9.png
│ ├── abc_ab_stacked_transparent_light_holo.9.png
│ ├── abc_ab_transparent_dark_holo.9.png
│ ├── abc_ab_transparent_light_holo.9.png
│ ├── abc_cab_background_bottom_holo_dark.9.png
│ ├── abc_cab_background_bottom_holo_light.9.png
│ ├── abc_cab_background_top_holo_dark.9.png
│ ├── abc_cab_background_top_holo_light.9.png
│ ├── abc_ic_ab_back_holo_dark.png
│ ├── abc_ic_ab_back_holo_light.png
│ ├── abc_ic_cab_done_holo_dark.png
│ ├── abc_ic_cab_done_holo_light.png
│ ├── abc_ic_clear_disabled.png
│ ├── abc_ic_clear_normal.png
│ ├── abc_ic_clear_search_api_disabled_holo_light.png
│ ├── abc_ic_clear_search_api_holo_light.png
│ ├── abc_ic_commit_search_api_holo_dark.png
│ ├── abc_ic_commit_search_api_holo_light.png
│ ├── abc_ic_go.png
│ ├── abc_ic_go_search_api_holo_light.png
│ ├── abc_ic_menu_moreoverflow_normal_holo_dark.png
│ ├── abc_ic_menu_moreoverflow_normal_holo_light.png
│ ├── abc_ic_menu_share_holo_dark.png
│ ├── abc_ic_menu_share_holo_light.png
│ ├── abc_ic_search.png
│ ├── abc_ic_search_api_holo_light.png
│ ├── abc_ic_voice_search.png
│ ├── abc_ic_voice_search_api_holo_light.png
│ ├── abc_list_divider_holo_dark.9.png
│ ├── abc_list_divider_holo_light.9.png
│ ├── abc_list_focused_holo.9.png
│ ├── abc_list_longpressed_holo.9.png
│ ├── abc_list_pressed_holo_dark.9.png
│ ├── abc_list_pressed_holo_light.9.png
│ ├── abc_list_selector_disabled_holo_dark.9.png
│ ├── abc_list_selector_disabled_holo_light.9.png
│ ├── abc_menu_dropdown_panel_holo_dark.9.png
│ ├── abc_menu_dropdown_panel_holo_light.9.png
│ ├── abc_menu_hardkey_panel_holo_dark.9.png
│ ├── abc_menu_hardkey_panel_holo_light.9.png
│ ├── abc_spinner_ab_default_holo_dark.9.png
│ ├── abc_spinner_ab_default_holo_light.9.png
│ ├── abc_spinner_ab_disabled_holo_dark.9.png
│ ├── abc_spinner_ab_disabled_holo_light.9.png
│ ├── abc_spinner_ab_focused_holo_dark.9.png
│ ├── abc_spinner_ab_focused_holo_light.9.png
│ ├── abc_spinner_ab_pressed_holo_dark.9.png
│ ├── abc_spinner_ab_pressed_holo_light.9.png
│ ├── abc_tab_selected_focused_holo.9.png
│ ├── abc_tab_selected_holo.9.png
│ ├── abc_tab_selected_pressed_holo.9.png
│ ├── abc_tab_unselected_pressed_holo.9.png
│ ├── abc_textfield_search_default_holo_dark.9.png
│ ├── abc_textfield_search_default_holo_light.9.png
│ ├── abc_textfield_search_right_default_holo_dark.9.png
│ ├── abc_textfield_search_right_default_holo_light.9.png
│ ├── abc_textfield_search_right_selected_holo_dark.9.png
│ ├── abc_textfield_search_right_selected_holo_light.9.png
│ ├── abc_textfield_search_selected_holo_dark.9.png
│ └── abc_textfield_search_selected_holo_light.9.png
│ ├── drawable-mdpi
│ ├── abc_ab_bottom_solid_dark_holo.9.png
│ ├── abc_ab_bottom_solid_light_holo.9.png
│ ├── abc_ab_bottom_transparent_dark_holo.9.png
│ ├── abc_ab_bottom_transparent_light_holo.9.png
│ ├── abc_ab_share_pack_holo_dark.9.png
│ ├── abc_ab_share_pack_holo_light.9.png
│ ├── abc_ab_solid_dark_holo.9.png
│ ├── abc_ab_solid_light_holo.9.png
│ ├── abc_ab_stacked_solid_dark_holo.9.png
│ ├── abc_ab_stacked_solid_light_holo.9.png
│ ├── abc_ab_stacked_transparent_dark_holo.9.png
│ ├── abc_ab_stacked_transparent_light_holo.9.png
│ ├── abc_ab_transparent_dark_holo.9.png
│ ├── abc_ab_transparent_light_holo.9.png
│ ├── abc_cab_background_bottom_holo_dark.9.png
│ ├── abc_cab_background_bottom_holo_light.9.png
│ ├── abc_cab_background_top_holo_dark.9.png
│ ├── abc_cab_background_top_holo_light.9.png
│ ├── abc_ic_ab_back_holo_dark.png
│ ├── abc_ic_ab_back_holo_light.png
│ ├── abc_ic_cab_done_holo_dark.png
│ ├── abc_ic_cab_done_holo_light.png
│ ├── abc_ic_clear_disabled.png
│ ├── abc_ic_clear_normal.png
│ ├── abc_ic_clear_search_api_disabled_holo_light.png
│ ├── abc_ic_clear_search_api_holo_light.png
│ ├── abc_ic_commit_search_api_holo_dark.png
│ ├── abc_ic_commit_search_api_holo_light.png
│ ├── abc_ic_go.png
│ ├── abc_ic_go_search_api_holo_light.png
│ ├── abc_ic_menu_moreoverflow_normal_holo_dark.png
│ ├── abc_ic_menu_moreoverflow_normal_holo_light.png
│ ├── abc_ic_menu_share_holo_dark.png
│ ├── abc_ic_menu_share_holo_light.png
│ ├── abc_ic_search.png
│ ├── abc_ic_search_api_holo_light.png
│ ├── abc_ic_voice_search.png
│ ├── abc_ic_voice_search_api_holo_light.png
│ ├── abc_list_divider_holo_dark.9.png
│ ├── abc_list_divider_holo_light.9.png
│ ├── abc_list_focused_holo.9.png
│ ├── abc_list_longpressed_holo.9.png
│ ├── abc_list_pressed_holo_dark.9.png
│ ├── abc_list_pressed_holo_light.9.png
│ ├── abc_list_selector_disabled_holo_dark.9.png
│ ├── abc_list_selector_disabled_holo_light.9.png
│ ├── abc_menu_dropdown_panel_holo_dark.9.png
│ ├── abc_menu_dropdown_panel_holo_light.9.png
│ ├── abc_menu_hardkey_panel_holo_dark.9.png
│ ├── abc_menu_hardkey_panel_holo_light.9.png
│ ├── abc_spinner_ab_default_holo_dark.9.png
│ ├── abc_spinner_ab_default_holo_light.9.png
│ ├── abc_spinner_ab_disabled_holo_dark.9.png
│ ├── abc_spinner_ab_disabled_holo_light.9.png
│ ├── abc_spinner_ab_focused_holo_dark.9.png
│ ├── abc_spinner_ab_focused_holo_light.9.png
│ ├── abc_spinner_ab_pressed_holo_dark.9.png
│ ├── abc_spinner_ab_pressed_holo_light.9.png
│ ├── abc_tab_selected_focused_holo.9.png
│ ├── abc_tab_selected_holo.9.png
│ ├── abc_tab_selected_pressed_holo.9.png
│ ├── abc_tab_unselected_pressed_holo.9.png
│ ├── abc_textfield_search_default_holo_dark.9.png
│ ├── abc_textfield_search_default_holo_light.9.png
│ ├── abc_textfield_search_right_default_holo_dark.9.png
│ ├── abc_textfield_search_right_default_holo_light.9.png
│ ├── abc_textfield_search_right_selected_holo_dark.9.png
│ ├── abc_textfield_search_right_selected_holo_light.9.png
│ ├── abc_textfield_search_selected_holo_dark.9.png
│ └── abc_textfield_search_selected_holo_light.9.png
│ ├── drawable-xhdpi
│ ├── abc_ab_bottom_solid_dark_holo.9.png
│ ├── abc_ab_bottom_solid_light_holo.9.png
│ ├── abc_ab_bottom_transparent_dark_holo.9.png
│ ├── abc_ab_bottom_transparent_light_holo.9.png
│ ├── abc_ab_share_pack_holo_dark.9.png
│ ├── abc_ab_share_pack_holo_light.9.png
│ ├── abc_ab_solid_dark_holo.9.png
│ ├── abc_ab_solid_light_holo.9.png
│ ├── abc_ab_stacked_solid_dark_holo.9.png
│ ├── abc_ab_stacked_solid_light_holo.9.png
│ ├── abc_ab_stacked_transparent_dark_holo.9.png
│ ├── abc_ab_stacked_transparent_light_holo.9.png
│ ├── abc_ab_transparent_dark_holo.9.png
│ ├── abc_ab_transparent_light_holo.9.png
│ ├── abc_cab_background_bottom_holo_dark.9.png
│ ├── abc_cab_background_bottom_holo_light.9.png
│ ├── abc_cab_background_top_holo_dark.9.png
│ ├── abc_cab_background_top_holo_light.9.png
│ ├── abc_ic_ab_back_holo_dark.png
│ ├── abc_ic_ab_back_holo_light.png
│ ├── abc_ic_cab_done_holo_dark.png
│ ├── abc_ic_cab_done_holo_light.png
│ ├── abc_ic_clear_disabled.png
│ ├── abc_ic_clear_normal.png
│ ├── abc_ic_clear_search_api_disabled_holo_light.png
│ ├── abc_ic_clear_search_api_holo_light.png
│ ├── abc_ic_commit_search_api_holo_dark.png
│ ├── abc_ic_commit_search_api_holo_light.png
│ ├── abc_ic_go.png
│ ├── abc_ic_go_search_api_holo_light.png
│ ├── abc_ic_menu_moreoverflow_normal_holo_dark.png
│ ├── abc_ic_menu_moreoverflow_normal_holo_light.png
│ ├── abc_ic_menu_share_holo_dark.png
│ ├── abc_ic_menu_share_holo_light.png
│ ├── abc_ic_search.png
│ ├── abc_ic_search_api_holo_light.png
│ ├── abc_ic_voice_search.png
│ ├── abc_ic_voice_search_api_holo_light.png
│ ├── abc_list_divider_holo_dark.9.png
│ ├── abc_list_divider_holo_light.9.png
│ ├── abc_list_focused_holo.9.png
│ ├── abc_list_longpressed_holo.9.png
│ ├── abc_list_pressed_holo_dark.9.png
│ ├── abc_list_pressed_holo_light.9.png
│ ├── abc_list_selector_disabled_holo_dark.9.png
│ ├── abc_list_selector_disabled_holo_light.9.png
│ ├── abc_menu_dropdown_panel_holo_dark.9.png
│ ├── abc_menu_dropdown_panel_holo_light.9.png
│ ├── abc_menu_hardkey_panel_holo_dark.9.png
│ ├── abc_menu_hardkey_panel_holo_light.9.png
│ ├── abc_spinner_ab_default_holo_dark.9.png
│ ├── abc_spinner_ab_default_holo_light.9.png
│ ├── abc_spinner_ab_disabled_holo_dark.9.png
│ ├── abc_spinner_ab_disabled_holo_light.9.png
│ ├── abc_spinner_ab_focused_holo_dark.9.png
│ ├── abc_spinner_ab_focused_holo_light.9.png
│ ├── abc_spinner_ab_pressed_holo_dark.9.png
│ ├── abc_spinner_ab_pressed_holo_light.9.png
│ ├── abc_tab_selected_focused_holo.9.png
│ ├── abc_tab_selected_holo.9.png
│ ├── abc_tab_selected_pressed_holo.9.png
│ ├── abc_tab_unselected_pressed_holo.9.png
│ ├── abc_textfield_search_default_holo_dark.9.png
│ ├── abc_textfield_search_default_holo_light.9.png
│ ├── abc_textfield_search_right_default_holo_dark.9.png
│ ├── abc_textfield_search_right_default_holo_light.9.png
│ ├── abc_textfield_search_right_selected_holo_dark.9.png
│ ├── abc_textfield_search_right_selected_holo_light.9.png
│ ├── abc_textfield_search_selected_holo_dark.9.png
│ └── abc_textfield_search_selected_holo_light.9.png
│ ├── drawable-xxhdpi
│ ├── abc_ab_bottom_solid_dark_holo.9.png
│ ├── abc_ab_bottom_solid_light_holo.9.png
│ ├── abc_ab_bottom_transparent_dark_holo.9.png
│ ├── abc_ab_bottom_transparent_light_holo.9.png
│ ├── abc_ab_share_pack_holo_dark.9.png
│ ├── abc_ab_share_pack_holo_light.9.png
│ ├── abc_ab_solid_dark_holo.9.png
│ ├── abc_ab_solid_light_holo.9.png
│ ├── abc_ab_stacked_solid_dark_holo.9.png
│ ├── abc_ab_stacked_solid_light_holo.9.png
│ ├── abc_ab_stacked_transparent_dark_holo.9.png
│ ├── abc_ab_stacked_transparent_light_holo.9.png
│ ├── abc_ab_transparent_dark_holo.9.png
│ ├── abc_ab_transparent_light_holo.9.png
│ ├── abc_cab_background_bottom_holo_dark.9.png
│ ├── abc_cab_background_bottom_holo_light.9.png
│ ├── abc_cab_background_top_holo_dark.9.png
│ ├── abc_cab_background_top_holo_light.9.png
│ ├── abc_ic_ab_back_holo_dark.png
│ ├── abc_ic_ab_back_holo_light.png
│ ├── abc_ic_cab_done_holo_dark.png
│ ├── abc_ic_cab_done_holo_light.png
│ ├── abc_ic_clear_disabled.png
│ ├── abc_ic_clear_normal.png
│ ├── abc_ic_clear_search_api_disabled_holo_light.png
│ ├── abc_ic_clear_search_api_holo_light.png
│ ├── abc_ic_commit_search_api_holo_dark.png
│ ├── abc_ic_commit_search_api_holo_light.png
│ ├── abc_ic_go.png
│ ├── abc_ic_go_search_api_holo_light.png
│ ├── abc_ic_menu_moreoverflow_normal_holo_dark.png
│ ├── abc_ic_menu_moreoverflow_normal_holo_light.png
│ ├── abc_ic_menu_share_holo_dark.png
│ ├── abc_ic_menu_share_holo_light.png
│ ├── abc_ic_search.png
│ ├── abc_ic_search_api_holo_light.png
│ ├── abc_ic_voice_search.png
│ ├── abc_ic_voice_search_api_holo_light.png
│ ├── abc_list_divider_holo_dark.9.png
│ ├── abc_list_divider_holo_light.9.png
│ ├── abc_list_focused_holo.9.png
│ ├── abc_list_longpressed_holo.9.png
│ ├── abc_list_pressed_holo_dark.9.png
│ ├── abc_list_pressed_holo_light.9.png
│ ├── abc_list_selector_disabled_holo_dark.9.png
│ ├── abc_list_selector_disabled_holo_light.9.png
│ ├── abc_menu_dropdown_panel_holo_dark.9.png
│ ├── abc_menu_dropdown_panel_holo_light.9.png
│ ├── abc_menu_hardkey_panel_holo_dark.9.png
│ ├── abc_menu_hardkey_panel_holo_light.9.png
│ ├── abc_spinner_ab_default_holo_dark.9.png
│ ├── abc_spinner_ab_default_holo_light.9.png
│ ├── abc_spinner_ab_disabled_holo_dark.9.png
│ ├── abc_spinner_ab_disabled_holo_light.9.png
│ ├── abc_spinner_ab_focused_holo_dark.9.png
│ ├── abc_spinner_ab_focused_holo_light.9.png
│ ├── abc_spinner_ab_pressed_holo_dark.9.png
│ ├── abc_spinner_ab_pressed_holo_light.9.png
│ ├── abc_tab_selected_focused_holo.9.png
│ ├── abc_tab_selected_holo.9.png
│ ├── abc_tab_selected_pressed_holo.9.png
│ ├── abc_tab_unselected_pressed_holo.9.png
│ ├── abc_textfield_search_default_holo_dark.9.png
│ ├── abc_textfield_search_default_holo_light.9.png
│ ├── abc_textfield_search_right_default_holo_dark.9.png
│ ├── abc_textfield_search_right_default_holo_light.9.png
│ ├── abc_textfield_search_right_selected_holo_dark.9.png
│ ├── abc_textfield_search_right_selected_holo_light.9.png
│ ├── abc_textfield_search_selected_holo_dark.9.png
│ └── abc_textfield_search_selected_holo_light.9.png
│ ├── drawable
│ ├── abc_ic_clear.xml
│ ├── abc_ic_clear_holo_light.xml
│ ├── abc_item_background_holo_dark.xml
│ ├── abc_item_background_holo_light.xml
│ ├── abc_list_selector_background_transition_holo_dark.xml
│ ├── abc_list_selector_background_transition_holo_light.xml
│ ├── abc_list_selector_holo_dark.xml
│ ├── abc_list_selector_holo_light.xml
│ ├── abc_search_dropdown_dark.xml
│ ├── abc_search_dropdown_light.xml
│ ├── abc_spinner_ab_holo_dark.xml
│ ├── abc_spinner_ab_holo_light.xml
│ ├── abc_tab_indicator_ab_holo.xml
│ ├── abc_textfield_searchview_holo_dark.xml
│ ├── abc_textfield_searchview_holo_light.xml
│ ├── abc_textfield_searchview_right_holo_dark.xml
│ └── abc_textfield_searchview_right_holo_light.xml
│ ├── layout-v11
│ ├── abc_action_bar_decor.xml
│ └── abc_simple_decor.xml
│ ├── layout-v14
│ └── abc_activity_chooser_view.xml
│ ├── layout
│ ├── abc_action_bar_decor.xml
│ ├── abc_action_bar_decor_include.xml
│ ├── abc_action_bar_decor_overlay.xml
│ ├── abc_action_bar_home.xml
│ ├── abc_action_bar_tab.xml
│ ├── abc_action_bar_tabbar.xml
│ ├── abc_action_bar_title_item.xml
│ ├── abc_action_bar_view_list_nav_layout.xml
│ ├── abc_action_menu_item_layout.xml
│ ├── abc_action_menu_layout.xml
│ ├── abc_action_mode_bar.xml
│ ├── abc_action_mode_close_item.xml
│ ├── abc_activity_chooser_view.xml
│ ├── abc_activity_chooser_view_include.xml
│ ├── abc_activity_chooser_view_list_item.xml
│ ├── abc_expanded_menu_layout.xml
│ ├── abc_list_menu_item_checkbox.xml
│ ├── abc_list_menu_item_icon.xml
│ ├── abc_list_menu_item_layout.xml
│ ├── abc_list_menu_item_radio.xml
│ ├── abc_popup_menu_item_layout.xml
│ ├── abc_search_dropdown_item_icons_2line.xml
│ ├── abc_search_view.xml
│ ├── abc_simple_decor.xml
│ └── support_simple_spinner_dropdown_item.xml
│ ├── values-af
│ └── values.xml
│ ├── values-am
│ └── values.xml
│ ├── values-ar
│ └── values.xml
│ ├── values-bg
│ └── values.xml
│ ├── values-ca
│ └── values.xml
│ ├── values-cs
│ └── values.xml
│ ├── values-da
│ └── values.xml
│ ├── values-de
│ └── values.xml
│ ├── values-el
│ └── values.xml
│ ├── values-en-rGB
│ └── values.xml
│ ├── values-en-rIN
│ └── values.xml
│ ├── values-es-rUS
│ └── values.xml
│ ├── values-es
│ └── values.xml
│ ├── values-et-rEE
│ └── values.xml
│ ├── values-fa
│ └── values.xml
│ ├── values-fi
│ └── values.xml
│ ├── values-fr-rCA
│ └── values.xml
│ ├── values-fr
│ └── values.xml
│ ├── values-hi
│ └── values.xml
│ ├── values-hr
│ └── values.xml
│ ├── values-hu
│ └── values.xml
│ ├── values-hy-rAM
│ └── values.xml
│ ├── values-in
│ └── values.xml
│ ├── values-it
│ └── values.xml
│ ├── values-iw
│ └── values.xml
│ ├── values-ja
│ └── values.xml
│ ├── values-ka-rGE
│ └── values.xml
│ ├── values-km-rKH
│ └── values.xml
│ ├── values-ko
│ └── values.xml
│ ├── values-land
│ └── values.xml
│ ├── values-large-v14
│ └── values.xml
│ ├── values-large
│ └── values.xml
│ ├── values-lo-rLA
│ └── values.xml
│ ├── values-lt
│ └── values.xml
│ ├── values-lv
│ └── values.xml
│ ├── values-mn-rMN
│ └── values.xml
│ ├── values-ms-rMY
│ └── values.xml
│ ├── values-nb
│ └── values.xml
│ ├── values-nl
│ └── values.xml
│ ├── values-pl
│ └── values.xml
│ ├── values-pt-rPT
│ └── values.xml
│ ├── values-pt
│ └── values.xml
│ ├── values-ro
│ └── values.xml
│ ├── values-ru
│ └── values.xml
│ ├── values-sk
│ └── values.xml
│ ├── values-sl
│ └── values.xml
│ ├── values-sr
│ └── values.xml
│ ├── values-sv
│ └── values.xml
│ ├── values-sw
│ └── values.xml
│ ├── values-sw600dp
│ └── values.xml
│ ├── values-th
│ └── values.xml
│ ├── values-tl
│ └── values.xml
│ ├── values-tr
│ └── values.xml
│ ├── values-uk
│ └── values.xml
│ ├── values-v11
│ └── values.xml
│ ├── values-v14
│ └── values.xml
│ ├── values-vi
│ └── values.xml
│ ├── values-w360dp
│ └── values.xml
│ ├── values-w480dp
│ └── values.xml
│ ├── values-w500dp
│ └── values.xml
│ ├── values-w600dp
│ └── values.xml
│ ├── values-w720dp
│ └── values.xml
│ ├── values-xlarge
│ └── values.xml
│ ├── values-zh-rCN
│ └── values.xml
│ ├── values-zh-rHK
│ └── values.xml
│ ├── values-zh-rTW
│ └── values.xml
│ ├── values-zu
│ └── values.xml
│ └── values
│ └── values.xml
├── gradle.properties
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── pics
├── Screenshot_2015-01-13-18-25-12.png
├── Screenshot_2015-01-13-18-25-29.png
├── Screenshot_2015-01-13-18-25-36.png
├── Screenshot_2015-01-13-18-47-04.png
└── Screenshot_2015-01-13-18-47-09.png
└── settings.gradle
/.gitignore:
--------------------------------------------------------------------------------
1 | .gradle
2 | /local.properties
3 | /.idea/workspace.xml
4 | .DS_Store
5 | /.idea/
6 |
--------------------------------------------------------------------------------
/.idea/.name:
--------------------------------------------------------------------------------
1 | RestAPP-android
--------------------------------------------------------------------------------
/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
18 |
19 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/.idea/scopes/scope_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | RestAPPandroid
2 | ==============
3 |
4 | UTN Universidad Tecnológica Nacional - Ingeniería en Sistemas
5 |
6 | +Salomón
7 | +Ferrero
8 | +Raviola
9 |
10 |
11 |
12 | 
13 | 
14 | 
15 | 
16 | 
17 |
--------------------------------------------------------------------------------
/RestAPP-android.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/RestAPP/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/RestAPP/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.application'
2 |
3 | android {
4 | compileSdkVersion 22
5 | buildToolsVersion "21.1.2"
6 |
7 | defaultConfig {
8 | minSdkVersion 11
9 | targetSdkVersion 22
10 | versionCode 1
11 | versionName "1.0"
12 | }
13 | buildTypes {
14 | release {
15 | minifyEnabled false
16 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
17 | }
18 | }
19 | }
20 |
21 | dependencies {
22 | compile fileTree(include: ['*.jar'], dir: 'libs')
23 | compile 'com.android.support:appcompat-v7:22.2.0'
24 | compile 'com.squareup.retrofit:retrofit:1.9.0'
25 | compile 'com.squareup:otto:1.3.8'
26 | }
27 |
--------------------------------------------------------------------------------
/RestAPP/proguard-rules.txt:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in /home/feresr/Programs/Android Studio/sdk/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the ProGuard
5 | # include property in project.properties.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class name to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
--------------------------------------------------------------------------------
/RestAPP/src/main/java/com/tesis/restapp/restapp/activities/intro/IntroHandler.java:
--------------------------------------------------------------------------------
1 | package com.tesis.restapp.restapp.activities.intro;
2 |
3 | public interface IntroHandler {
4 |
5 | public void onShowLoginScreenClicked();
6 |
7 | public void onSuccessfulLogin();
8 | }
9 |
--------------------------------------------------------------------------------
/RestAPP/src/main/java/com/tesis/restapp/restapp/activities/main/MainHandler.java:
--------------------------------------------------------------------------------
1 | package com.tesis.restapp.restapp.activities.main;
2 |
3 | import com.tesis.restapp.restapp.models.Order;
4 | import com.tesis.restapp.restapp.models.Table;
5 |
6 | /**
7 | * Created by feresr on 5/28/14.
8 | */
9 | public interface MainHandler {
10 |
11 | public void onOrderSelected(Order order);
12 |
13 | public void onNewOrderSelected();
14 |
15 | }
16 |
--------------------------------------------------------------------------------
/RestAPP/src/main/java/com/tesis/restapp/restapp/activities/search/SearchHandler.java:
--------------------------------------------------------------------------------
1 | package com.tesis.restapp.restapp.activities.search;
2 |
3 | /**
4 | * Created by feresr on 6/12/14.
5 | */
6 | public interface SearchHandler {
7 |
8 | public void onCategorySelected(int categoryId);
9 |
10 | public void onItemSelected(int itemId);
11 | }
12 |
--------------------------------------------------------------------------------
/RestAPP/src/main/java/com/tesis/restapp/restapp/api/BusProvider.java:
--------------------------------------------------------------------------------
1 | package com.tesis.restapp.restapp.api;
2 |
3 | import com.squareup.otto.Bus;
4 |
5 | /**
6 | * Created by Fer on 11/16/2014.
7 | */
8 | public final class BusProvider {
9 | private static Bus BUS;
10 |
11 | public static Bus getInstance() {
12 | if (BUS == null) {
13 | BUS = new Bus();
14 | }
15 | return BUS;
16 | }
17 |
18 | private BusProvider() {
19 | // No instances.
20 | }
21 | }
--------------------------------------------------------------------------------
/RestAPP/src/main/java/com/tesis/restapp/restapp/api/DataBaseSyncCompleteEvent.java:
--------------------------------------------------------------------------------
1 | package com.tesis.restapp.restapp.api;
2 |
3 | import retrofit.RetrofitError;
4 |
5 | /**
6 | * Created by Fer on 1/8/2015.
7 | */
8 | public class DataBaseSyncCompleteEvent {
9 |
10 | RetrofitError error;
11 | public DataBaseSyncCompleteEvent(RetrofitError error){
12 | this.error = error;
13 | }
14 |
15 | public RetrofitError getError() {
16 | return error;
17 | }
18 |
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/RestAPP/src/main/java/com/tesis/restapp/restapp/api/LoginEvent.java:
--------------------------------------------------------------------------------
1 | package com.tesis.restapp.restapp.api;
2 |
3 |
4 | import com.tesis.restapp.restapp.models.User;
5 |
6 | public class LoginEvent {
7 |
8 | public static final int SUCCESS = 1;
9 | public static final int MISSING_TOKEN = 2;
10 | public static final int INVALID_CREDENTIALS = 3;
11 | public static final int HTTP_ERRORS = 4;
12 | public static final int SERVER_NOT_FOUND = 5;
13 |
14 | private int result;
15 | private User user;
16 |
17 | public LoginEvent(int result){
18 | this.result = result;
19 | }
20 |
21 | public LoginEvent(int result, User user){
22 | this.result = result;
23 | this.user = user;
24 | }
25 |
26 |
27 | public int getResult() {
28 | return result;
29 | }
30 |
31 | public User getUser() {
32 | return user;
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/RestAPP/src/main/java/com/tesis/restapp/restapp/api/TablesUpdatedEvent.java:
--------------------------------------------------------------------------------
1 | package com.tesis.restapp.restapp.api;
2 |
3 | /**
4 | * Event triggered after new information about tables is retrieved
5 | */
6 | public class TablesUpdatedEvent {
7 | public TablesUpdatedEvent(){
8 |
9 | }
10 |
11 | }
12 |
--------------------------------------------------------------------------------
/RestAPP/src/main/java/com/tesis/restapp/restapp/api/response/ApiResponse.java:
--------------------------------------------------------------------------------
1 | package com.tesis.restapp.restapp.api.response;
2 |
3 | import com.tesis.restapp.restapp.models.User;
4 |
5 | /**
6 | * Created by Fer on 11/15/2014.
7 | */
8 | public class ApiResponse {
9 | private Boolean success;
10 | private String message;
11 | private User user;
12 |
13 | public Boolean wasSuccessful() {
14 | return success;
15 | }
16 |
17 | public String getMessage() {
18 | return message;
19 | }
20 |
21 | public User getUser() {
22 | return user;
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/RestAPP/src/main/java/com/tesis/restapp/restapp/database/Response.java:
--------------------------------------------------------------------------------
1 | package com.tesis.restapp.restapp.database;
2 |
3 | /**
4 | * Created by feresr on 8/9/14.
5 | */
6 | public class Response {
7 |
8 | private final boolean success;
9 | private final String message;
10 | private final int id;
11 | private final String errors;
12 |
13 | public Response(boolean success, String message, int id, String errors) {
14 |
15 | this.success = success;
16 | this.message = message;
17 | this.id = id;
18 | this.errors = errors;
19 | }
20 |
21 | public Response(boolean success, String message, int id) {
22 |
23 | this.success = success;
24 | this.message = message;
25 | this.id = id;
26 | errors = "";
27 | }
28 |
29 |
30 | public boolean wasSuccessful() {
31 | return success;
32 | }
33 |
34 | public String getMessage() {
35 | return message;
36 | }
37 |
38 | public int getId() {
39 | return id;
40 | }
41 |
42 | public String getErrors() {
43 | return errors;
44 | }
45 | }
46 |
--------------------------------------------------------------------------------
/RestAPP/src/main/java/com/tesis/restapp/restapp/models/Constants.java:
--------------------------------------------------------------------------------
1 | package com.tesis.restapp.restapp.models;
2 |
3 | /**
4 | * Created by feresr on 5/24/14.
5 | */
6 | public class Constants {
7 |
8 | public static final int LOG_IN_OK = 1;
9 | public static final int LOG_IN_INVALID_CREDENTIALS = 2;
10 | public static final int LOG_IN_SERVER_NOT_FOUND = 3;
11 |
12 | public static final String URL_LOGIN = "/sessions";
13 | public static final String URL_ORDERS = "/api/v1/orders";
14 | public static final String URL_AVAILABLE_TABLES = "/api/v1/tables";
15 | public static final String URL_ITEMS = "/api/v1/items";
16 | public static final String URL_CATEGORIES = "/api/v1/categories";
17 | public static final String URL_ORDER_ITEMS = "/api/v1/orderItems";
18 | public static final String URL_LOGOUT = "/logout";
19 |
20 | }
21 |
--------------------------------------------------------------------------------
/RestAPP/src/main/java/com/tesis/restapp/restapp/models/Date.java:
--------------------------------------------------------------------------------
1 | package com.tesis.restapp.restapp.models;
2 |
3 | /**
4 | * Created by feresr on 5/26/14.
5 | */
6 | public class Date {
7 |
8 | private String date;
9 | private int timezone_type;
10 | private String UTC;
11 |
12 | public String getUTC() {
13 | return UTC;
14 | }
15 |
16 | public void setUTC(String UTC) {
17 | this.UTC = UTC;
18 | }
19 |
20 | public String getDate() {
21 | return date;
22 | }
23 |
24 | public void setDate(String date) {
25 | this.date = date;
26 | }
27 |
28 | public int getTimezone_type() {
29 | return timezone_type;
30 | }
31 |
32 | public void setTimezone_type(int timezone_type) {
33 | this.timezone_type = timezone_type;
34 | }
35 |
36 |
37 |
38 | }
39 |
--------------------------------------------------------------------------------
/RestAPP/src/main/java/com/tesis/restapp/restapp/models/Order_Item.java:
--------------------------------------------------------------------------------
1 | package com.tesis.restapp.restapp.models;
2 |
3 | /**
4 | * Created by feresr on 6/11/14.
5 | */
6 | public class Order_Item {
7 |
8 | private int id;
9 | private int order_id;
10 | private int item_id;
11 | private int quantity;
12 | private double price;
13 | private String updated_at;
14 | private String created_at;
15 |
16 | public int getId() {
17 | return id;
18 | }
19 |
20 | public void setId(int id) {
21 | this.id = id;
22 | }
23 |
24 | public int getOrder_id() {
25 | return order_id;
26 | }
27 | public int getItem_id() {
28 | return item_id;
29 | }
30 | public int getQuantity() {
31 | return quantity;
32 | }
33 | public double getPrice() {
34 | return price;
35 | }
36 | public String getUpdated_at() {
37 | return updated_at;
38 | }
39 | public String getCreated_at() {
40 | return created_at;
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/anim/slide_left.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/anim/slide_right.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-hdpi/dish.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-hdpi/dish.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-hdpi/ic_action_new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-hdpi/ic_action_new.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-hdpi/ic_action_remove.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-hdpi/ic_action_remove.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-hdpi/ic_action_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-hdpi/ic_action_settings.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-hdpi/logout_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-hdpi/logout_icon.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-hdpi/waiter_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-hdpi/waiter_icon.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-mdpi/fab_plus_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-mdpi/fab_plus_icon.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-mdpi/food_wallpaper_dashboard.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-mdpi/food_wallpaper_dashboard.jpg
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-mdpi/ic_action_new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-mdpi/ic_action_new.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-mdpi/ic_action_remove.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-mdpi/ic_action_remove.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-mdpi/ic_action_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-mdpi/ic_action_settings.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xhdpi/ic_action_new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xhdpi/ic_action_new.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xhdpi/ic_action_remove.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xhdpi/ic_action_remove.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xhdpi/ic_action_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xhdpi/ic_action_settings.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xhdpi/logout_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xhdpi/logout_icon.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xhdpi/waiter_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xhdpi/waiter_icon.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/background_login.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/background_login.jpg
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/bw_cafeteria.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/bw_cafeteria.jpg
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/bw_cerveza.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/bw_cerveza.jpg
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/bw_comida.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/bw_comida.jpg
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/bw_dessert.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/bw_dessert.jpg
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/bw_gradient.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
11 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/bw_juice.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/bw_juice.jpg
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/bw_sandwich.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/bw_sandwich.jpg
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/bw_shadow_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
11 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/bw_wine.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/bw_wine.jpg
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/custombackground.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
7 |
8 |
9 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/custominput.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
7 |
8 |
9 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/dashboard_background.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/dashboard_background.jpg
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/ic_action_new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/ic_action_new.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/ic_action_remove.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/ic_action_remove.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/ic_action_settings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/ic_action_settings.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/ic_customers_white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/ic_customers_white.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/ic_money.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/ic_money.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/ic_table.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/ic_table.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/lock_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/lock_icon.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/logo_login.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/logo_login.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/logout_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/logout_icon.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/normal_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
5 | -
6 |
7 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/transparent_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
5 | -
6 |
7 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/waiter_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/waiter_icon.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxhdpi/wp_money.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxhdpi/wp_money.jpg
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxxhdpi/body_linen.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxxhdpi/body_linen.jpg
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable/background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | -
4 |
5 |
6 |
7 |
8 |
9 | -
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable/fab.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
13 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable/fab_selector.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable/luigi_risotto.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/drawable/luigi_risotto.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable/round_button_style.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/drawable/round_button_style_pressed.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/RestAPP/src/main/res/ic_launcher.png
--------------------------------------------------------------------------------
/RestAPP/src/main/res/layout/activity_intro.xml:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/layout/activity_item.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/layout/activity_main.xml:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/layout/activity_order.xml:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/layout/activity_search.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/layout/activity_tables.xml:
--------------------------------------------------------------------------------
1 |
5 |
11 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/layout/fragment_search.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
10 |
11 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/layout/fragment_tables.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
11 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/layout/listview_category.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/menu/intro.xml:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/menu/main.xml:
--------------------------------------------------------------------------------
1 |
11 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/menu/menu_item.xml:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/menu/menu_order.xml:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/menu/menu_tables.xml:
--------------------------------------------------------------------------------
1 |
8 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/menu/order.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/menu/search.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/values-w820dp/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 | 64dp
6 |
7 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | #FF9922
5 | #FF8800
6 | #bbFF8800
7 | #55FF8800
8 | #f6f6f6
9 |
10 | #2a2a2a
11 | #000
12 | #fff
13 | #aaa
14 |
15 | #EE9911
16 | #FFAA22
17 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 16dp
4 | 16dp
5 | 50dp
6 | 80dp
7 | 90dp
8 | 70dp
9 |
10 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
16 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/RestAPP/src/main/res/values/themes.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
13 |
14 |
15 |
21 |
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | mavenCentral()
6 | jcenter()
7 | }
8 | dependencies {
9 | classpath 'com.android.tools.build:gradle:1.0.0'
10 | }
11 | }
12 |
13 | allprojects {
14 | repositories {
15 | mavenCentral()
16 | jcenter()
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/classes.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/classes.jar
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/anim/abc_fade_in.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/anim/abc_fade_out.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/anim/abc_slide_in_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
20 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/anim/abc_slide_in_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/anim/abc_slide_out_bottom.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/anim/abc_slide_out_top.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_bottom_solid_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_bottom_solid_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_bottom_solid_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_bottom_solid_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_bottom_transparent_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_bottom_transparent_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_bottom_transparent_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_bottom_transparent_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_share_pack_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_share_pack_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_solid_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_solid_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_solid_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_solid_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_stacked_solid_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_stacked_solid_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_stacked_solid_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_stacked_solid_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_stacked_transparent_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_stacked_transparent_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_stacked_transparent_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_stacked_transparent_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_transparent_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_transparent_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_transparent_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ab_transparent_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_cab_background_bottom_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_cab_background_bottom_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_cab_background_bottom_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_cab_background_bottom_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_cab_background_top_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_cab_background_top_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_cab_background_top_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_cab_background_top_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_ab_back_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_ab_back_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_ab_back_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_ab_back_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_cab_done_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_cab_done_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_cab_done_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_cab_done_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_clear_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_clear_disabled.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_clear_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_clear_normal.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_clear_search_api_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_clear_search_api_disabled_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_clear_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_clear_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_commit_search_api_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_commit_search_api_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_commit_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_commit_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_go.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_go.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_go_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_go_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_menu_moreoverflow_normal_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_menu_share_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_menu_share_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_menu_share_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_menu_share_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_search.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_voice_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_voice_search.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_voice_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_ic_voice_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_list_divider_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_list_divider_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_list_divider_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_list_divider_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_list_focused_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_menu_dropdown_panel_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_menu_dropdown_panel_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_menu_dropdown_panel_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_menu_dropdown_panel_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_menu_hardkey_panel_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_menu_hardkey_panel_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_menu_hardkey_panel_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_menu_hardkey_panel_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_spinner_ab_default_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_spinner_ab_default_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_spinner_ab_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_spinner_ab_default_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_spinner_ab_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_spinner_ab_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_spinner_ab_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_spinner_ab_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_spinner_ab_focused_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_spinner_ab_focused_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_spinner_ab_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_spinner_ab_focused_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_spinner_ab_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_spinner_ab_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_spinner_ab_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_spinner_ab_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_tab_selected_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_textfield_search_default_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_textfield_search_default_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_textfield_search_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_textfield_search_default_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_textfield_search_right_default_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_textfield_search_right_default_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_textfield_search_right_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_textfield_search_right_default_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_textfield_search_right_selected_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_textfield_search_right_selected_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_textfield_search_right_selected_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_textfield_search_right_selected_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_textfield_search_selected_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_textfield_search_selected_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_textfield_search_selected_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-hdpi/abc_textfield_search_selected_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_bottom_solid_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_bottom_solid_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_bottom_solid_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_bottom_solid_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_bottom_transparent_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_bottom_transparent_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_bottom_transparent_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_bottom_transparent_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_share_pack_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_share_pack_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_solid_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_solid_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_solid_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_solid_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_stacked_solid_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_stacked_solid_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_stacked_solid_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_stacked_solid_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_stacked_transparent_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_stacked_transparent_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_stacked_transparent_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_stacked_transparent_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_transparent_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_transparent_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_transparent_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ab_transparent_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_cab_background_bottom_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_cab_background_bottom_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_cab_background_bottom_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_cab_background_bottom_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_cab_background_top_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_cab_background_top_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_cab_background_top_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_cab_background_top_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_ab_back_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_ab_back_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_ab_back_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_ab_back_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_cab_done_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_cab_done_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_cab_done_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_cab_done_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_clear_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_clear_disabled.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_clear_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_clear_normal.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_clear_search_api_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_clear_search_api_disabled_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_clear_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_clear_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_commit_search_api_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_commit_search_api_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_commit_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_commit_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_go.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_go.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_go_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_go_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_menu_moreoverflow_normal_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_menu_share_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_menu_share_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_menu_share_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_menu_share_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_search.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_voice_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_voice_search.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_voice_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_ic_voice_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_list_divider_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_list_divider_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_list_divider_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_list_divider_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_list_focused_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_menu_dropdown_panel_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_menu_dropdown_panel_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_menu_dropdown_panel_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_menu_dropdown_panel_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_menu_hardkey_panel_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_menu_hardkey_panel_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_menu_hardkey_panel_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_menu_hardkey_panel_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_spinner_ab_default_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_spinner_ab_default_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_spinner_ab_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_spinner_ab_default_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_spinner_ab_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_spinner_ab_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_spinner_ab_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_spinner_ab_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_spinner_ab_focused_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_spinner_ab_focused_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_spinner_ab_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_spinner_ab_focused_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_spinner_ab_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_spinner_ab_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_spinner_ab_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_spinner_ab_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_tab_selected_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_textfield_search_default_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_textfield_search_default_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_textfield_search_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_textfield_search_default_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_textfield_search_right_default_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_textfield_search_right_default_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_textfield_search_right_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_textfield_search_right_default_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_textfield_search_right_selected_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_textfield_search_right_selected_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_textfield_search_right_selected_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_textfield_search_right_selected_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_textfield_search_selected_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_textfield_search_selected_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_textfield_search_selected_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-mdpi/abc_textfield_search_selected_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_bottom_solid_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_bottom_solid_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_bottom_solid_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_bottom_solid_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_bottom_transparent_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_bottom_transparent_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_bottom_transparent_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_bottom_transparent_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_share_pack_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_share_pack_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_solid_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_solid_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_solid_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_solid_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_stacked_solid_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_stacked_solid_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_stacked_solid_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_stacked_solid_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_stacked_transparent_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_stacked_transparent_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_stacked_transparent_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_stacked_transparent_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_transparent_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_transparent_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_transparent_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ab_transparent_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_cab_background_bottom_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_cab_background_bottom_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_cab_background_bottom_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_cab_background_bottom_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_cab_background_top_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_cab_background_top_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_cab_background_top_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_cab_background_top_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_ab_back_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_ab_back_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_ab_back_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_ab_back_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_cab_done_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_cab_done_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_cab_done_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_cab_done_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_clear_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_clear_disabled.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_clear_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_clear_normal.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_clear_search_api_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_clear_search_api_disabled_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_clear_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_clear_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_commit_search_api_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_commit_search_api_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_commit_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_commit_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_go.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_go.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_go_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_go_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_menu_share_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_menu_share_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_menu_share_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_menu_share_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_search.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_voice_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_voice_search.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_voice_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_ic_voice_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_list_divider_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_list_divider_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_list_divider_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_list_divider_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_list_focused_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_menu_dropdown_panel_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_menu_hardkey_panel_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_spinner_ab_default_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_spinner_ab_default_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_spinner_ab_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_spinner_ab_default_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_spinner_ab_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_spinner_ab_focused_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_spinner_ab_focused_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_spinner_ab_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_spinner_ab_focused_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_spinner_ab_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_tab_selected_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_textfield_search_default_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_textfield_search_default_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_textfield_search_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_textfield_search_default_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_textfield_search_right_default_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_textfield_search_right_default_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_textfield_search_right_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_textfield_search_right_default_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_textfield_search_right_selected_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_textfield_search_selected_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_textfield_search_selected_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_textfield_search_selected_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xhdpi/abc_textfield_search_selected_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_bottom_solid_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_bottom_solid_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_bottom_solid_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_bottom_solid_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_bottom_transparent_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_bottom_transparent_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_bottom_transparent_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_bottom_transparent_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_share_pack_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_share_pack_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_share_pack_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_share_pack_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_solid_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_solid_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_solid_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_solid_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_stacked_solid_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_stacked_solid_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_stacked_solid_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_stacked_solid_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_stacked_transparent_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_stacked_transparent_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_stacked_transparent_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_stacked_transparent_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_transparent_dark_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_transparent_dark_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_transparent_light_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ab_transparent_light_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_cab_background_bottom_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_cab_background_bottom_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_cab_background_bottom_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_cab_background_bottom_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_cab_background_top_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_cab_background_top_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_cab_background_top_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_cab_background_top_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_ab_back_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_ab_back_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_ab_back_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_ab_back_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_cab_done_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_cab_done_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_cab_done_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_cab_done_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_clear_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_clear_disabled.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_clear_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_clear_normal.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_clear_search_api_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_clear_search_api_disabled_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_clear_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_clear_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_commit_search_api_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_commit_search_api_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_commit_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_commit_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_go.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_go.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_go_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_go_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_normal_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_normal_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_menu_share_holo_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_menu_share_holo_dark.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_menu_share_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_menu_share_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_search.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_voice_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_voice_search.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_voice_search_api_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_ic_voice_search_api_holo_light.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_list_divider_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_list_divider_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_list_divider_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_list_divider_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_list_focused_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_menu_dropdown_panel_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_menu_dropdown_panel_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_menu_dropdown_panel_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_menu_dropdown_panel_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_menu_hardkey_panel_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_menu_hardkey_panel_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_menu_hardkey_panel_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_menu_hardkey_panel_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_spinner_ab_default_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_spinner_ab_default_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_spinner_ab_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_spinner_ab_default_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_spinner_ab_disabled_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_spinner_ab_disabled_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_spinner_ab_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_spinner_ab_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_spinner_ab_focused_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_spinner_ab_focused_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_spinner_ab_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_spinner_ab_focused_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_spinner_ab_pressed_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_spinner_ab_pressed_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_spinner_ab_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_spinner_ab_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_tab_selected_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_tab_selected_focused_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_tab_selected_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_tab_selected_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_tab_selected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_tab_selected_pressed_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_tab_unselected_pressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_tab_unselected_pressed_holo.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_textfield_search_default_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_textfield_search_default_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_textfield_search_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_textfield_search_default_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_textfield_search_right_default_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_textfield_search_right_default_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_textfield_search_right_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_textfield_search_right_default_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_textfield_search_right_selected_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_textfield_search_right_selected_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_textfield_search_right_selected_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_textfield_search_right_selected_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_textfield_search_selected_holo_dark.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_textfield_search_selected_holo_dark.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_textfield_search_selected_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable-xxhdpi/abc_textfield_search_selected_holo_light.9.png
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable/abc_ic_clear.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
20 |
22 |
23 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable/abc_ic_clear_holo_light.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
20 |
22 |
23 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable/abc_list_selector_background_transition_holo_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable/abc_list_selector_background_transition_holo_light.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable/abc_search_dropdown_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
22 |
23 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable/abc_search_dropdown_light.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
22 |
23 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable/abc_textfield_searchview_holo_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable/abc_textfield_searchview_holo_light.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/drawable/abc_textfield_searchview_right_holo_dark.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/layout/abc_action_bar_decor.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
22 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/layout/abc_action_bar_tab.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
23 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/layout/abc_action_bar_tabbar.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
23 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/layout/abc_action_mode_bar.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
25 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/layout/abc_expanded_menu_layout.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
22 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/values-large-v14/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/values-w360dp/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | 3
8 |
9 |
10 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/values-w480dp/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | true
8 |
9 |
10 |
11 | true
12 |
13 |
14 |
15 | false
16 |
17 |
18 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/values-w500dp/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | 4
8 |
9 |
10 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/values-w600dp/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | 56dip
8 | 4dip
9 | 9dip
10 | 14dp
11 | -3dp
12 | 18dp
13 | 64dip
14 | 192dip
15 |
16 | 5
17 |
18 |
19 |
--------------------------------------------------------------------------------
/build/intermediates/exploded-aar/com.android.support/appcompat-v7/19.1.0/res/values-w720dp/values.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | false
8 |
9 |
10 |
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Settings specified in this file will override any Gradle settings
5 | # configured through the IDE.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | # Default value: -Xmx10248m -XX:MaxPermSize=256m
13 | # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14 |
15 | # When configured, Gradle will run in incubating parallel mode.
16 | # This option should only be used with decoupled projects. More details, visit
17 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 | # org.gradle.parallel=true
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Sat Dec 06 16:51:44 ART 2014
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip
7 |
--------------------------------------------------------------------------------
/pics/Screenshot_2015-01-13-18-25-12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/pics/Screenshot_2015-01-13-18-25-12.png
--------------------------------------------------------------------------------
/pics/Screenshot_2015-01-13-18-25-29.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/pics/Screenshot_2015-01-13-18-25-29.png
--------------------------------------------------------------------------------
/pics/Screenshot_2015-01-13-18-25-36.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/pics/Screenshot_2015-01-13-18-25-36.png
--------------------------------------------------------------------------------
/pics/Screenshot_2015-01-13-18-47-04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/pics/Screenshot_2015-01-13-18-47-04.png
--------------------------------------------------------------------------------
/pics/Screenshot_2015-01-13-18-47-09.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feresr/RestAPP-android/94be39dd063ae161ba11ce934d28a1089fb9aa7c/pics/Screenshot_2015-01-13-18-47-09.png
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':RestAPP'
2 |
--------------------------------------------------------------------------------