├── .gitignore
├── .travis.yml
├── LICENSE.txt
├── OpenTreeMap
├── .metadata
│ └── .lock
├── ant.properties
├── build.gradle
├── build.xml
├── lint.xml
├── proguard.cfg
├── project.properties
└── src
│ ├── androidTest
│ ├── AndroidManifest.xml
│ ├── java
│ │ └── org
│ │ │ └── azavea
│ │ │ └── otm
│ │ │ └── test
│ │ │ ├── OpenTreeMapTestCase.java
│ │ │ └── RequestGeneratorTest.java
│ └── res
│ │ ├── drawable-hdpi
│ │ └── ic_launcher.png
│ │ ├── drawable-ldpi
│ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ └── ic_launcher.png
│ │ └── values
│ │ └── strings.xml
│ └── main
│ ├── AndroidManifest.xml
│ ├── assets
│ ├── Launch-screen_background.png
│ ├── Launch-screen_logo@2x.png
│ ├── about_content.html
│ ├── splash_content.html
│ └── terms_of_service.html
│ ├── java
│ ├── com
│ │ └── joelapenna
│ │ │ └── foursquared
│ │ │ └── widget
│ │ │ └── SegmentedButton.java
│ └── org
│ │ └── azavea
│ │ ├── helpers
│ │ ├── DateButtonListener.java
│ │ ├── GoogleMapsListeners.java
│ │ ├── JSONHelper.java
│ │ └── Logger.java
│ │ ├── lists
│ │ ├── InfoList.java
│ │ ├── ListObserver.java
│ │ ├── NearbyList.java
│ │ └── data
│ │ │ ├── DisplayableModel.java
│ │ │ └── DisplayablePlot.java
│ │ ├── map
│ │ ├── FilterableTMSTileProvider.java
│ │ └── TMSTileProvider.java
│ │ ├── otm
│ │ ├── App.java
│ │ ├── Choice.java
│ │ ├── FieldManager.java
│ │ ├── FilterManager.java
│ │ ├── LoginManager.java
│ │ ├── NestedJsonAndKey.java
│ │ ├── adapters
│ │ │ ├── InstanceInfoArrayAdapter.java
│ │ │ ├── LinkedHashMapAdapter.java
│ │ │ └── SpeciesAdapter.java
│ │ ├── data
│ │ │ ├── EditEntry.java
│ │ │ ├── EditEntryContainer.java
│ │ │ ├── Geometry.java
│ │ │ ├── InstanceInfo.java
│ │ │ ├── Model.java
│ │ │ ├── ModelContainer.java
│ │ │ ├── Password.java
│ │ │ ├── PendingEdit.java
│ │ │ ├── PendingEditDescription.java
│ │ │ ├── Plot.java
│ │ │ ├── PlotContainer.java
│ │ │ ├── Species.java
│ │ │ ├── SpeciesContainer.java
│ │ │ ├── Tree.java
│ │ │ ├── UDFCollectionDefinition.java
│ │ │ ├── User.java
│ │ │ ├── UserType.java
│ │ │ └── Version.java
│ │ ├── fields
│ │ │ ├── ButtonField.java
│ │ │ ├── ChoiceField.java
│ │ │ ├── DateField.java
│ │ │ ├── DiameterField.java
│ │ │ ├── EcoField.java
│ │ │ ├── Field.java
│ │ │ ├── FieldGroup.java
│ │ │ ├── MultiChoiceField.java
│ │ │ ├── SpeciesField.java
│ │ │ ├── TextField.java
│ │ │ ├── UDFCollectionFieldGroup.java
│ │ │ └── UDFCollectionValueField.java
│ │ ├── filters
│ │ │ ├── BaseFilter.java
│ │ │ ├── BooleanFilter.java
│ │ │ ├── ChoiceFilter.java
│ │ │ ├── DateRangeFilter.java
│ │ │ ├── DefaultFilter.java
│ │ │ ├── MissingFilter.java
│ │ │ ├── MultiChoiceFilter.java
│ │ │ ├── NumericRangeFilter.java
│ │ │ ├── RangeFilter.java
│ │ │ ├── SpeciesFilter.java
│ │ │ └── TextFilter.java
│ │ ├── map
│ │ │ └── FallbackGeocoder.java
│ │ ├── rest
│ │ │ ├── RequestGenerator.java
│ │ │ ├── RequestSignature.java
│ │ │ ├── RestClient.java
│ │ │ └── handlers
│ │ │ │ ├── ContainerRestHandler.java
│ │ │ │ ├── LoggingJsonHttpResponseHandler.java
│ │ │ │ └── RestHandler.java
│ │ └── ui
│ │ │ ├── AboutDisplay.java
│ │ │ ├── ChangePassword.java
│ │ │ ├── FilterDisplay.java
│ │ │ ├── FilterableListDisplay.java
│ │ │ ├── InstanceSwitcherActivity.java
│ │ │ ├── ListDisplay.java
│ │ │ ├── LoginActivity.java
│ │ │ ├── MainMapFragment.java
│ │ │ ├── MapHelper.java
│ │ │ ├── OTMActionBarActivity.java
│ │ │ ├── PendingItemDisplay.java
│ │ │ ├── PhotoActivity.java
│ │ │ ├── ProfileDisplay.java
│ │ │ ├── PublicInstanceListDisplay.java
│ │ │ ├── Register.java
│ │ │ ├── SpeciesListDisplay.java
│ │ │ ├── SplashScreenActivity.java
│ │ │ ├── TabLayout.java
│ │ │ ├── TermsOfService.java
│ │ │ ├── TreeDisplay.java
│ │ │ ├── TreeEditDisplay.java
│ │ │ ├── TreeInfoDisplay.java
│ │ │ ├── TreeMove.java
│ │ │ ├── UDFChoiceFragment.java
│ │ │ ├── UDFCollectionActivity.java
│ │ │ ├── UDFCollectionCreateActivity.java
│ │ │ ├── UDFCollectionEditActivity.java
│ │ │ ├── UDFDateFragment.java
│ │ │ ├── UDFKeyChoiceFragment.java
│ │ │ ├── UDFSubFieldChoiceFragment.java
│ │ │ └── UpEnabledActionBarActivity.java
│ │ └── views
│ │ └── NotifyingScrollView.java
│ └── res
│ ├── anim
│ ├── dialog_slide_down.xml
│ └── dialog_slide_up.xml
│ ├── drawable-hdpi
│ ├── ab_bottom_solid_actionbar_custom.9.png
│ ├── ab_solid_actionbar_custom.9.png
│ ├── ab_stacked_solid_actionbar_custom.9.png
│ ├── ab_texture_tile_actionbar_custom.png
│ ├── ab_transparent_actionbar_custom.9.png
│ ├── app_icon.png
│ ├── btn.9.png
│ ├── btn_cab_done_default_actionbar_custom.9.png
│ ├── btn_cab_done_focused_actionbar_custom.9.png
│ ├── btn_cab_done_pressed_actionbar_custom.9.png
│ ├── btn_danger.9.png
│ ├── btn_primary.9.png
│ ├── cab_background_bottom_actionbar_custom.9.png
│ ├── cab_background_top_actionbar_custom.9.png
│ ├── holo_custom_btn_check_off_disabled_focused_holo_light.png
│ ├── holo_custom_btn_check_off_disabled_holo_light.png
│ ├── holo_custom_btn_check_off_focused_holo_light.png
│ ├── holo_custom_btn_check_off_holo_light.png
│ ├── holo_custom_btn_check_off_pressed_holo_light.png
│ ├── holo_custom_btn_check_on_disabled_focused_holo_light.png
│ ├── holo_custom_btn_check_on_disabled_holo_light.png
│ ├── holo_custom_btn_check_on_focused_holo_light.png
│ ├── holo_custom_btn_check_on_holo_light.png
│ ├── holo_custom_btn_check_on_pressed_holo_light.png
│ ├── holo_custom_btn_radio_off_disabled_focused_holo_light.png
│ ├── holo_custom_btn_radio_off_disabled_holo_light.png
│ ├── holo_custom_btn_radio_off_focused_holo_light.png
│ ├── holo_custom_btn_radio_off_holo_light.png
│ ├── holo_custom_btn_radio_off_pressed_holo_light.png
│ ├── holo_custom_btn_radio_on_disabled_focused_holo_light.png
│ ├── holo_custom_btn_radio_on_disabled_holo_light.png
│ ├── holo_custom_btn_radio_on_focused_holo_light.png
│ ├── holo_custom_btn_radio_on_holo_light.png
│ ├── holo_custom_btn_radio_on_pressed_holo_light.png
│ ├── holo_custom_btn_toggle_off_disabled_focused_holo_light.9.png
│ ├── holo_custom_btn_toggle_off_disabled_holo_light.9.png
│ ├── holo_custom_btn_toggle_off_focused_holo_light.9.png
│ ├── holo_custom_btn_toggle_off_normal_holo_light.9.png
│ ├── holo_custom_btn_toggle_off_pressed_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_disabled_focused_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_disabled_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_focused_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_normal_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_pressed_holo_light.9.png
│ ├── holo_custom_list_activated_holo.9.png
│ ├── holo_custom_list_focused_holo.9.png
│ ├── holo_custom_list_longpressed_holo.9.png
│ ├── holo_custom_list_pressed_holo_light.9.png
│ ├── holo_custom_list_selector_disabled_holo_light.9.png
│ ├── holo_custom_progress_bg_holo_light.9.png
│ ├── holo_custom_progress_primary_holo_light.9.png
│ ├── holo_custom_progress_secondary_holo_light.9.png
│ ├── holo_custom_progressbar_indeterminate_holo1.png
│ ├── holo_custom_progressbar_indeterminate_holo2.png
│ ├── holo_custom_progressbar_indeterminate_holo3.png
│ ├── holo_custom_progressbar_indeterminate_holo4.png
│ ├── holo_custom_progressbar_indeterminate_holo5.png
│ ├── holo_custom_progressbar_indeterminate_holo6.png
│ ├── holo_custom_progressbar_indeterminate_holo7.png
│ ├── holo_custom_progressbar_indeterminate_holo8.png
│ ├── holo_custom_text_select_handle_left.png
│ ├── holo_custom_text_select_handle_middle.png
│ ├── holo_custom_text_select_handle_right.png
│ ├── holo_custom_textfield_activated_holo_light.9.png
│ ├── holo_custom_textfield_default_holo_light.9.png
│ ├── holo_custom_textfield_disabled_focused_holo_light.9.png
│ ├── holo_custom_textfield_disabled_holo_light.9.png
│ ├── holo_custom_textfield_focused_holo_light.9.png
│ ├── ic_add_black_24dp.png
│ ├── ic_addphoto.png
│ ├── ic_chevron_right.png
│ ├── ic_filter.png
│ ├── ic_magnify.png
│ ├── ic_mapmarker.png
│ ├── ic_pending.png
│ ├── ic_photo_camera_black_24dp.png
│ ├── ic_tab_about.png
│ ├── ic_tab_about_active.png
│ ├── ic_tab_list.png
│ ├── ic_tab_list_active.png
│ ├── ic_tab_map.png
│ ├── ic_tab_map_active.png
│ ├── ic_tab_profile.png
│ ├── ic_tab_profile_active.png
│ ├── list_focused_actionbar_custom.9.png
│ ├── list_pressed_actionbar_custom.9.png
│ ├── listview_background.9.png
│ ├── listview_header_background.9.png
│ ├── menu_dropdown_panel_actionbar_custom.9.png
│ ├── missing_tree_photo.png
│ ├── progress_bg_actionbar_custom.9.png
│ ├── progress_primary_actionbar_custom.9.png
│ ├── progress_secondary_actionbar_custom.9.png
│ ├── spinner_ab_default_actionbar_custom.9.png
│ ├── spinner_ab_disabled_actionbar_custom.9.png
│ ├── spinner_ab_focused_actionbar_custom.9.png
│ ├── spinner_ab_pressed_actionbar_custom.9.png
│ ├── tab_selected_actionbar_custom.9.png
│ ├── tab_selected_focused_actionbar_custom.9.png
│ ├── tab_selected_pressed_actionbar_custom.9.png
│ ├── tab_unselected_actionbar_custom.9.png
│ ├── tab_unselected_focused_actionbar_custom.9.png
│ └── tab_unselected_pressed_actionbar_custom.9.png
│ ├── drawable-ldpi
│ ├── app_icon.png
│ ├── ic_about.png
│ ├── ic_about_active.png
│ ├── ic_chevron_right.png
│ ├── ic_list.png
│ ├── ic_list_active.png
│ ├── ic_mapmarker.png
│ ├── ic_profile.png
│ ├── ic_profile_active.png
│ ├── ic_tab_map.png
│ └── missing_tree_photo.png
│ ├── drawable-mdpi
│ ├── ab_bottom_solid_actionbar_custom.9.png
│ ├── ab_solid_actionbar_custom.9.png
│ ├── ab_stacked_solid_actionbar_custom.9.png
│ ├── ab_texture_tile_actionbar_custom.png
│ ├── ab_transparent_actionbar_custom.9.png
│ ├── app_icon.png
│ ├── btn_cab_done_default_actionbar_custom.9.png
│ ├── btn_cab_done_focused_actionbar_custom.9.png
│ ├── btn_cab_done_pressed_actionbar_custom.9.png
│ ├── cab_background_bottom_actionbar_custom.9.png
│ ├── cab_background_top_actionbar_custom.9.png
│ ├── holo_custom_btn_check_off_disabled_focused_holo_light.png
│ ├── holo_custom_btn_check_off_disabled_holo_light.png
│ ├── holo_custom_btn_check_off_focused_holo_light.png
│ ├── holo_custom_btn_check_off_holo_light.png
│ ├── holo_custom_btn_check_off_pressed_holo_light.png
│ ├── holo_custom_btn_check_on_disabled_focused_holo_light.png
│ ├── holo_custom_btn_check_on_disabled_holo_light.png
│ ├── holo_custom_btn_check_on_focused_holo_light.png
│ ├── holo_custom_btn_check_on_holo_light.png
│ ├── holo_custom_btn_check_on_pressed_holo_light.png
│ ├── holo_custom_btn_radio_off_disabled_focused_holo_light.png
│ ├── holo_custom_btn_radio_off_disabled_holo_light.png
│ ├── holo_custom_btn_radio_off_focused_holo_light.png
│ ├── holo_custom_btn_radio_off_holo_light.png
│ ├── holo_custom_btn_radio_off_pressed_holo_light.png
│ ├── holo_custom_btn_radio_on_disabled_focused_holo_light.png
│ ├── holo_custom_btn_radio_on_disabled_holo_light.png
│ ├── holo_custom_btn_radio_on_focused_holo_light.png
│ ├── holo_custom_btn_radio_on_holo_light.png
│ ├── holo_custom_btn_radio_on_pressed_holo_light.png
│ ├── holo_custom_btn_toggle_off_disabled_focused_holo_light.9.png
│ ├── holo_custom_btn_toggle_off_disabled_holo_light.9.png
│ ├── holo_custom_btn_toggle_off_focused_holo_light.9.png
│ ├── holo_custom_btn_toggle_off_normal_holo_light.9.png
│ ├── holo_custom_btn_toggle_off_pressed_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_disabled_focused_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_disabled_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_focused_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_normal_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_pressed_holo_light.9.png
│ ├── holo_custom_list_activated_holo.9.png
│ ├── holo_custom_list_focused_holo.9.png
│ ├── holo_custom_list_longpressed_holo.9.png
│ ├── holo_custom_list_pressed_holo_light.9.png
│ ├── holo_custom_list_selector_disabled_holo_light.9.png
│ ├── holo_custom_progress_bg_holo_light.9.png
│ ├── holo_custom_progress_primary_holo_light.9.png
│ ├── holo_custom_progress_secondary_holo_light.9.png
│ ├── holo_custom_progressbar_indeterminate_holo1.png
│ ├── holo_custom_progressbar_indeterminate_holo2.png
│ ├── holo_custom_progressbar_indeterminate_holo3.png
│ ├── holo_custom_progressbar_indeterminate_holo4.png
│ ├── holo_custom_progressbar_indeterminate_holo5.png
│ ├── holo_custom_progressbar_indeterminate_holo6.png
│ ├── holo_custom_progressbar_indeterminate_holo7.png
│ ├── holo_custom_progressbar_indeterminate_holo8.png
│ ├── holo_custom_text_select_handle_left.png
│ ├── holo_custom_text_select_handle_middle.png
│ ├── holo_custom_text_select_handle_right.png
│ ├── holo_custom_textfield_activated_holo_light.9.png
│ ├── holo_custom_textfield_default_holo_light.9.png
│ ├── holo_custom_textfield_disabled_focused_holo_light.9.png
│ ├── holo_custom_textfield_disabled_holo_light.9.png
│ ├── holo_custom_textfield_focused_holo_light.9.png
│ ├── ic_about.png
│ ├── ic_about_active.png
│ ├── ic_add_black_24dp.png
│ ├── ic_chevron_right.png
│ ├── ic_filter.png
│ ├── ic_list.png
│ ├── ic_list_active.png
│ ├── ic_magnify.png
│ ├── ic_mapmarker.png
│ ├── ic_photo_camera_black_24dp.png
│ ├── ic_profile.png
│ ├── ic_profile_active.png
│ ├── ic_tab_map.png
│ ├── list_focused_actionbar_custom.9.png
│ ├── list_pressed_actionbar_custom.9.png
│ ├── menu_dropdown_panel_actionbar_custom.9.png
│ ├── missing_tree_photo.png
│ ├── progress_bg_actionbar_custom.9.png
│ ├── progress_primary_actionbar_custom.9.png
│ ├── progress_secondary_actionbar_custom.9.png
│ ├── spinner_ab_default_actionbar_custom.9.png
│ ├── spinner_ab_disabled_actionbar_custom.9.png
│ ├── spinner_ab_focused_actionbar_custom.9.png
│ ├── spinner_ab_pressed_actionbar_custom.9.png
│ ├── tab_selected_actionbar_custom.9.png
│ ├── tab_selected_focused_actionbar_custom.9.png
│ ├── tab_selected_pressed_actionbar_custom.9.png
│ ├── tab_unselected_actionbar_custom.9.png
│ ├── tab_unselected_focused_actionbar_custom.9.png
│ └── tab_unselected_pressed_actionbar_custom.9.png
│ ├── drawable-xhdpi
│ ├── ab_bottom_solid_actionbar_custom.9.png
│ ├── ab_solid_actionbar_custom.9.png
│ ├── ab_stacked_solid_actionbar_custom.9.png
│ ├── ab_texture_tile_actionbar_custom.png
│ ├── ab_transparent_actionbar_custom.9.png
│ ├── app_icon.png
│ ├── btn_cab_done_default_actionbar_custom.9.png
│ ├── btn_cab_done_focused_actionbar_custom.9.png
│ ├── btn_cab_done_pressed_actionbar_custom.9.png
│ ├── cab_background_bottom_actionbar_custom.9.png
│ ├── cab_background_top_actionbar_custom.9.png
│ ├── holo_custom_btn_check_off_disabled_focused_holo_light.png
│ ├── holo_custom_btn_check_off_disabled_holo_light.png
│ ├── holo_custom_btn_check_off_focused_holo_light.png
│ ├── holo_custom_btn_check_off_holo_light.png
│ ├── holo_custom_btn_check_off_pressed_holo_light.png
│ ├── holo_custom_btn_check_on_disabled_focused_holo_light.png
│ ├── holo_custom_btn_check_on_disabled_holo_light.png
│ ├── holo_custom_btn_check_on_focused_holo_light.png
│ ├── holo_custom_btn_check_on_holo_light.png
│ ├── holo_custom_btn_check_on_pressed_holo_light.png
│ ├── holo_custom_btn_radio_off_disabled_focused_holo_light.png
│ ├── holo_custom_btn_radio_off_disabled_holo_light.png
│ ├── holo_custom_btn_radio_off_focused_holo_light.png
│ ├── holo_custom_btn_radio_off_holo_light.png
│ ├── holo_custom_btn_radio_off_pressed_holo_light.png
│ ├── holo_custom_btn_radio_on_disabled_focused_holo_light.png
│ ├── holo_custom_btn_radio_on_disabled_holo_light.png
│ ├── holo_custom_btn_radio_on_focused_holo_light.png
│ ├── holo_custom_btn_radio_on_holo_light.png
│ ├── holo_custom_btn_radio_on_pressed_holo_light.png
│ ├── holo_custom_btn_toggle_off_disabled_focused_holo_light.9.png
│ ├── holo_custom_btn_toggle_off_disabled_holo_light.9.png
│ ├── holo_custom_btn_toggle_off_focused_holo_light.9.png
│ ├── holo_custom_btn_toggle_off_normal_holo_light.9.png
│ ├── holo_custom_btn_toggle_off_pressed_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_disabled_focused_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_disabled_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_focused_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_normal_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_pressed_holo_light.9.png
│ ├── holo_custom_list_activated_holo.9.png
│ ├── holo_custom_list_focused_holo.9.png
│ ├── holo_custom_list_longpressed_holo.9.png
│ ├── holo_custom_list_pressed_holo_light.9.png
│ ├── holo_custom_list_selector_disabled_holo_light.9.png
│ ├── holo_custom_progress_bg_holo_light.9.png
│ ├── holo_custom_progress_primary_holo_light.9.png
│ ├── holo_custom_progress_secondary_holo_light.9.png
│ ├── holo_custom_progressbar_indeterminate_holo1.png
│ ├── holo_custom_progressbar_indeterminate_holo2.png
│ ├── holo_custom_progressbar_indeterminate_holo3.png
│ ├── holo_custom_progressbar_indeterminate_holo4.png
│ ├── holo_custom_progressbar_indeterminate_holo5.png
│ ├── holo_custom_progressbar_indeterminate_holo6.png
│ ├── holo_custom_progressbar_indeterminate_holo7.png
│ ├── holo_custom_progressbar_indeterminate_holo8.png
│ ├── holo_custom_text_select_handle_left.png
│ ├── holo_custom_text_select_handle_middle.png
│ ├── holo_custom_text_select_handle_right.png
│ ├── holo_custom_textfield_activated_holo_light.9.png
│ ├── holo_custom_textfield_default_holo_light.9.png
│ ├── holo_custom_textfield_disabled_focused_holo_light.9.png
│ ├── holo_custom_textfield_disabled_holo_light.9.png
│ ├── holo_custom_textfield_focused_holo_light.9.png
│ ├── ic_add_black_24dp.png
│ ├── ic_chevron_right.png
│ ├── ic_filter.png
│ ├── ic_magnify.png
│ ├── ic_mapmarker.png
│ ├── ic_photo_camera_black_24dp.png
│ ├── list_focused_actionbar_custom.9.png
│ ├── list_pressed_actionbar_custom.9.png
│ ├── menu_dropdown_panel_actionbar_custom.9.png
│ ├── missing_tree_photo.png
│ ├── progress_bg_actionbar_custom.9.png
│ ├── progress_primary_actionbar_custom.9.png
│ ├── progress_secondary_actionbar_custom.9.png
│ ├── spinner_ab_default_actionbar_custom.9.png
│ ├── spinner_ab_disabled_actionbar_custom.9.png
│ ├── spinner_ab_focused_actionbar_custom.9.png
│ ├── spinner_ab_pressed_actionbar_custom.9.png
│ ├── tab_selected_actionbar_custom.9.png
│ ├── tab_selected_focused_actionbar_custom.9.png
│ ├── tab_selected_pressed_actionbar_custom.9.png
│ ├── tab_unselected_actionbar_custom.9.png
│ ├── tab_unselected_focused_actionbar_custom.9.png
│ └── tab_unselected_pressed_actionbar_custom.9.png
│ ├── drawable-xxhdpi
│ ├── ab_bottom_solid_actionbar_custom.9.png
│ ├── ab_solid_actionbar_custom.9.png
│ ├── ab_stacked_solid_actionbar_custom.9.png
│ ├── ab_texture_tile_actionbar_custom.png
│ ├── ab_transparent_actionbar_custom.9.png
│ ├── app_icon.png
│ ├── btn_cab_done_default_actionbar_custom.9.png
│ ├── btn_cab_done_focused_actionbar_custom.9.png
│ ├── btn_cab_done_pressed_actionbar_custom.9.png
│ ├── cab_background_bottom_actionbar_custom.9.png
│ ├── cab_background_top_actionbar_custom.9.png
│ ├── holo_custom_btn_check_off_disabled_focused_holo_light.png
│ ├── holo_custom_btn_check_off_disabled_holo_light.png
│ ├── holo_custom_btn_check_off_focused_holo_light.png
│ ├── holo_custom_btn_check_off_holo_light.png
│ ├── holo_custom_btn_check_off_pressed_holo_light.png
│ ├── holo_custom_btn_check_on_disabled_focused_holo_light.png
│ ├── holo_custom_btn_check_on_disabled_holo_light.png
│ ├── holo_custom_btn_check_on_focused_holo_light.png
│ ├── holo_custom_btn_check_on_holo_light.png
│ ├── holo_custom_btn_check_on_pressed_holo_light.png
│ ├── holo_custom_btn_radio_off_disabled_focused_holo_light.png
│ ├── holo_custom_btn_radio_off_disabled_holo_light.png
│ ├── holo_custom_btn_radio_off_focused_holo_light.png
│ ├── holo_custom_btn_radio_off_holo_light.png
│ ├── holo_custom_btn_radio_off_pressed_holo_light.png
│ ├── holo_custom_btn_radio_on_disabled_focused_holo_light.png
│ ├── holo_custom_btn_radio_on_disabled_holo_light.png
│ ├── holo_custom_btn_radio_on_focused_holo_light.png
│ ├── holo_custom_btn_radio_on_holo_light.png
│ ├── holo_custom_btn_radio_on_pressed_holo_light.png
│ ├── holo_custom_btn_toggle_off_disabled_focused_holo_light.9.png
│ ├── holo_custom_btn_toggle_off_disabled_holo_light.9.png
│ ├── holo_custom_btn_toggle_off_focused_holo_light.9.png
│ ├── holo_custom_btn_toggle_off_normal_holo_light.9.png
│ ├── holo_custom_btn_toggle_off_pressed_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_disabled_focused_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_disabled_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_focused_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_normal_holo_light.9.png
│ ├── holo_custom_btn_toggle_on_pressed_holo_light.9.png
│ ├── holo_custom_list_activated_holo.9.png
│ ├── holo_custom_list_focused_holo.9.png
│ ├── holo_custom_list_longpressed_holo.9.png
│ ├── holo_custom_list_pressed_holo_light.9.png
│ ├── holo_custom_list_selector_disabled_holo_light.9.png
│ ├── holo_custom_progress_bg_holo_light.9.png
│ ├── holo_custom_progress_primary_holo_light.9.png
│ ├── holo_custom_progress_secondary_holo_light.9.png
│ ├── holo_custom_progressbar_indeterminate_holo1.png
│ ├── holo_custom_progressbar_indeterminate_holo2.png
│ ├── holo_custom_progressbar_indeterminate_holo3.png
│ ├── holo_custom_progressbar_indeterminate_holo4.png
│ ├── holo_custom_progressbar_indeterminate_holo5.png
│ ├── holo_custom_progressbar_indeterminate_holo6.png
│ ├── holo_custom_progressbar_indeterminate_holo7.png
│ ├── holo_custom_progressbar_indeterminate_holo8.png
│ ├── holo_custom_text_select_handle_left.png
│ ├── holo_custom_text_select_handle_middle.png
│ ├── holo_custom_text_select_handle_right.png
│ ├── holo_custom_textfield_activated_holo_light.9.png
│ ├── holo_custom_textfield_default_holo_light.9.png
│ ├── holo_custom_textfield_disabled_focused_holo_light.9.png
│ ├── holo_custom_textfield_disabled_holo_light.9.png
│ ├── holo_custom_textfield_focused_holo_light.9.png
│ ├── ic_add_black_24dp.png
│ ├── ic_filter.png
│ ├── ic_magnify.png
│ ├── ic_photo_camera_black_24dp.png
│ ├── list_focused_actionbar_custom.9.png
│ ├── list_pressed_actionbar_custom.9.png
│ ├── menu_dropdown_panel_actionbar_custom.9.png
│ ├── progress_bg_actionbar_custom.9.png
│ ├── progress_primary_actionbar_custom.9.png
│ ├── progress_secondary_actionbar_custom.9.png
│ ├── spinner_ab_default_actionbar_custom.9.png
│ ├── spinner_ab_disabled_actionbar_custom.9.png
│ ├── spinner_ab_focused_actionbar_custom.9.png
│ ├── spinner_ab_pressed_actionbar_custom.9.png
│ ├── tab_selected_actionbar_custom.9.png
│ ├── tab_selected_focused_actionbar_custom.9.png
│ ├── tab_selected_pressed_actionbar_custom.9.png
│ ├── tab_unselected_actionbar_custom.9.png
│ ├── tab_unselected_focused_actionbar_custom.9.png
│ └── tab_unselected_pressed_actionbar_custom.9.png
│ ├── drawable-xxxhdpi
│ ├── app_icon.png
│ ├── ic_add_black_24dp.png
│ ├── ic_filter.png
│ ├── ic_magnify.png
│ └── ic_photo_camera_black_24dp.png
│ ├── drawable
│ ├── ab_background_textured_actionbar_custom.xml
│ ├── btn_cab_done_actionbar_custom.xml
│ ├── holo_custom_activated_background_holo_light.xml
│ ├── holo_custom_btn_check_holo_light.xml
│ ├── holo_custom_btn_radio_holo_light.xml
│ ├── holo_custom_btn_toggle_holo_light.xml
│ ├── holo_custom_edit_text_holo_light.xml
│ ├── holo_custom_item_background_holo_light.xml
│ ├── holo_custom_list_selector_background_transition_holo_light.xml
│ ├── holo_custom_list_selector_holo_light.xml
│ ├── holo_custom_progress_horizontal_holo_light.xml
│ ├── holo_custom_progress_indeterminate_horizontal_holo_light.xml
│ ├── list_element_border.xml
│ ├── list_header_border.xml
│ ├── progress_horizontal_actionbar_custom.xml
│ ├── selectable_background_actionbar_custom.xml
│ ├── spinner_background_ab_actionbar_custom.xml
│ ├── tab_about.xml
│ ├── tab_indicator_ab_actionbar_custom.xml
│ ├── tab_list.xml
│ ├── tab_profile.xml
│ ├── tab_tree_map.xml
│ ├── top_border.xml
│ └── warning_action_button.xml
│ ├── layout
│ ├── about.xml
│ ├── activity_pending_item.xml
│ ├── activity_splash_screen.xml
│ ├── activity_tree_move.xml
│ ├── change_password.xml
│ ├── collection_udf_add_activity.xml
│ ├── collection_udf_add_choice.xml
│ ├── collection_udf_add_date.xml
│ ├── collection_udf_element_row.xml
│ ├── collection_udf_empty.xml
│ ├── collection_udf_field_group.xml
│ ├── filter_activity.xml
│ ├── filter_choice_control.xml
│ ├── filter_date_range_control.xml
│ ├── filter_numeric_range_control.xml
│ ├── filter_range_control.xml
│ ├── filter_species_control.xml
│ ├── filter_text_control.xml
│ ├── filter_toggle_control.xml
│ ├── filterable_list_selector.xml
│ ├── instance_switcher_activity.xml
│ ├── instance_switcher_element_row.xml
│ ├── instance_switcher_separator_row.xml
│ ├── list_separator_row.xml
│ ├── list_trees.xml
│ ├── login_activity.xml
│ ├── main_map.xml
│ ├── pending_edit_row.xml
│ ├── plot_ecofield_row.xml
│ ├── plot_edit_activity.xml
│ ├── plot_edit_delete_buttons.xml
│ ├── plot_field_edit_button_row.xml
│ ├── plot_field_edit_diameter_row.xml
│ ├── plot_field_edit_row.xml
│ ├── plot_field_group.xml
│ ├── plot_field_row.xml
│ ├── plot_field_species_row.xml
│ ├── plot_view_activity.xml
│ ├── profile.xml
│ ├── public_instance_element_row.xml
│ ├── recent_edit_row.xml
│ ├── register.xml
│ ├── segmented_button.xml
│ ├── simple_list_item.xml
│ ├── species_list_row.xml
│ └── terms_of_service.xml
│ ├── menu
│ ├── main_menu.xml
│ ├── tree_edit_menu.xml
│ ├── tree_info_menu.xml
│ └── udf_create_menu.xml
│ ├── raw
│ └── configuration.xml
│ ├── values-large
│ └── dimens.xml
│ └── values
│ ├── attrs.xml
│ ├── colors.xml
│ ├── colors_holo_custom.xml
│ ├── defaults.xml
│ ├── dialog_slide.xml
│ ├── dimens.xml
│ ├── ids.xml
│ ├── overrides.xml
│ ├── strings.xml
│ ├── styles.xml
│ ├── styles_actionbar_custom.xml
│ ├── styles_holo_custom.xml
│ └── themes_holo_custom.xml
├── OpenTreeMapSkinned
├── .gitignore
├── README.md
├── assets
│ └── .gitignore
├── build.gradle
├── build.xml
├── lint.xml
├── proguard-project.txt
└── project.properties
├── Readme.md
├── build.gradle
├── ci
├── AndroidManifest.xml
└── wait_for_emulator.sh
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── settings.gradle
└── templates
├── AndroidManifest.xml
└── defaults.xml
/.gitignore:
--------------------------------------------------------------------------------
1 | # built application files
2 | *.apk
3 | *.ap_
4 |
5 | # files for the dex VM
6 | *.dex
7 |
8 | # Java class files
9 | *.class
10 |
11 | # generated files
12 | bin/
13 | gen/
14 | build/
15 |
16 | # Local configuration file (sdk path, etc)
17 | local.properties
18 | OpenTreeMapTests/.classpath
19 |
20 | # Mac file cruft
21 | .DS_Store
22 |
23 | fabfile.pyc
24 | buildconf.json
25 |
26 | extern
27 |
28 | # Templated files
29 | OpenTreeMapSkinned/src/
30 | OpenTreeMapSkinned/res/
31 | OpenTreeMapSkinned/AndroidManifest.xml
32 |
33 | OpenTreeMapTests/project.properties
34 |
35 | # Android Studio file
36 | .idea/compiler.xml
37 | .idea/encodings.xml
38 | .idea/gradle.xml
39 | .idea/misc.xml
40 | .idea/modules.xml
41 | .idea/vcs.xml
42 | .idea/workspace.xml
43 | .idea/runConfigurations.xml
44 | .idea/libraries/*
45 | .idea/copyright/*
46 | .idea/.name
47 | *.iml
48 |
49 | # Gradle
50 | .gradle/
51 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: android
2 | jdk: oraclejdk8
3 | sudo: false
4 | env:
5 | global:
6 | - GRADLE_OPTS="-Xmx512m"
7 | matrix:
8 | - ANDROID_TARGET=android-21 ANDROID_ABI=armeabi-v7a
9 |
10 | android:
11 | components:
12 | - tools
13 | - build-tools-25.0.0
14 | - platform-tools
15 | - android-25
16 | - sys-img-armeabi-v7a-android-21
17 | - addon-google_apis-google-25
18 | - extra-android-m2repository
19 | - extra-google-m2repository
20 | - extra-android-support
21 | licenses:
22 | - 'android-sdk-license-.*'
23 | - '.*intel.+'
24 |
25 | before_install:
26 | - cp ci/AndroidManifest.xml OpenTreeMapSkinned/AndroidManifest.xml
27 | - export "JAVA8_HOME=/usr/lib/jvm/java-8-oracle"
28 | - echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI --skin WVGA800
29 | - sleep 5
30 | - emulator -avd test -no-skin -no-audio -no-window &
31 | - sleep 30
32 |
33 | before_script:
34 | - ./ci/wait_for_emulator.sh
35 | - adb shell input keyevent 82 &
36 |
37 | script: ./gradlew OpenTreeMap:connectedCheck -PdisablePreDex
38 |
--------------------------------------------------------------------------------
/OpenTreeMap/.metadata/.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/.metadata/.lock
--------------------------------------------------------------------------------
/OpenTreeMap/ant.properties:
--------------------------------------------------------------------------------
1 | # This file is used to override default values used by the Ant build system.
2 | #
3 | # This file must be checked in Version Control Systems, as it is
4 | # integral to the build system of your project.
5 |
6 | # This file is only used by the Ant script.
7 |
8 | # You can use this to override default values such as
9 | # 'source.dir' for the location of your java source folder and
10 | # 'out.dir' for the location of your output folder.
11 |
12 | # You can also use it define how the release builds are signed by declaring
13 | # the following properties:
14 | # 'key.store' for the location of your keystore and
15 | # 'key.alias' for the name of the key to use.
16 | # The password will be asked during the build when you use the 'release' target.
17 |
18 |
--------------------------------------------------------------------------------
/OpenTreeMap/lint.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/OpenTreeMap/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 |
13 | # Project target.
14 | target=Google Inc.:Google APIs:10
15 | android.library=true
16 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/androidTest/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
10 |
11 |
12 |
16 |
17 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/androidTest/java/org/azavea/otm/test/OpenTreeMapTestCase.java:
--------------------------------------------------------------------------------
1 | package org.azavea.otm.test;
2 |
3 | import android.test.InstrumentationTestCase;
4 |
5 |
6 | public abstract class OpenTreeMapTestCase extends InstrumentationTestCase {
7 |
8 | @Override
9 | protected void setUp() throws Exception {
10 | System.setProperty("dexmaker.dexcache", getInstrumentation().getTargetContext().getCacheDir().getPath());
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/androidTest/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/androidTest/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/androidTest/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/androidTest/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/androidTest/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/androidTest/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/androidTest/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/androidTest/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/androidTest/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | OpenTreeMapTestsTest
5 |
6 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/assets/Launch-screen_background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/assets/Launch-screen_background.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/assets/Launch-screen_logo@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/assets/Launch-screen_logo@2x.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/assets/about_content.html:
--------------------------------------------------------------------------------
1 |
2 | Add about content here!
3 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/assets/terms_of_service.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Add terms of service here!
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/helpers/GoogleMapsListeners.java:
--------------------------------------------------------------------------------
1 | package org.azavea.helpers;
2 |
3 | import com.google.android.gms.maps.GoogleMap;
4 | import com.google.android.gms.maps.model.Marker;
5 |
6 | public class GoogleMapsListeners {
7 | // We need to set a listener for marker drag, or markers will not give the correct position
8 | // when we later call marker.getPosition()
9 | // Note that we do not have to actually *do* anything in our listener
10 | public static class NoopDragListener implements GoogleMap.OnMarkerDragListener {
11 |
12 | @Override
13 | public void onMarkerDragStart(Marker marker) {
14 |
15 | }
16 |
17 | @Override
18 | public void onMarkerDrag(Marker marker) {
19 |
20 | }
21 |
22 | @Override
23 | public void onMarkerDragEnd(Marker marker) {
24 |
25 | }
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/helpers/JSONHelper.java:
--------------------------------------------------------------------------------
1 | package org.azavea.helpers;
2 |
3 | import org.json.JSONArray;
4 | import org.json.JSONObject;
5 |
6 | import java.util.ArrayList;
7 | import java.util.List;
8 |
9 | public class JSONHelper {
10 | public static List jsonStringArrayToList(JSONArray array) {
11 | List strings = new ArrayList<>(array.length());
12 | for (int i = 0; i < array.length(); i++) {
13 | strings.add(array.isNull(i) ? null : array.optString(i));
14 | }
15 | return strings;
16 | }
17 |
18 | public static String safeGetString(JSONObject data, String key) {
19 | return data.isNull(key) ? null : data.optString(key);
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/lists/InfoList.java:
--------------------------------------------------------------------------------
1 | package org.azavea.lists;
2 |
3 | import org.azavea.lists.data.DisplayableModel;
4 |
5 | import android.content.Context;
6 |
7 | public interface InfoList {
8 | public DisplayableModel[] getDisplayValues();
9 |
10 | public Object[] getListValues();
11 |
12 | public void addObserver(ListObserver o);
13 |
14 | public void setupLocationUpdating(Context applicationContext);
15 |
16 | public void removeLocationUpdating();
17 | }
18 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/lists/ListObserver.java:
--------------------------------------------------------------------------------
1 | package org.azavea.lists;
2 |
3 | public interface ListObserver {
4 | public void update();
5 | }
6 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/lists/data/DisplayableModel.java:
--------------------------------------------------------------------------------
1 | package org.azavea.lists.data;
2 |
3 | public interface DisplayableModel {
4 | public String toString();
5 | }
6 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/lists/data/DisplayablePlot.java:
--------------------------------------------------------------------------------
1 | package org.azavea.lists.data;
2 |
3 | import org.azavea.otm.data.Plot;
4 |
5 | public class DisplayablePlot implements DisplayableModel {
6 | private Plot plot;
7 | private String stringRepresentation;
8 |
9 | public DisplayablePlot() {
10 | plot = null;
11 | stringRepresentation = "";
12 | }
13 |
14 | public DisplayablePlot(Plot plot, String stringRepresentation) {
15 | this.plot = plot;
16 | this.stringRepresentation = stringRepresentation;
17 | }
18 |
19 | public Plot getPlot() {
20 | return plot;
21 | }
22 |
23 | public String toString() {
24 | return stringRepresentation;
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/otm/Choice.java:
--------------------------------------------------------------------------------
1 | package org.azavea.otm;
2 |
3 |
4 | import java.io.Serializable;
5 |
6 | public class Choice implements Serializable {
7 | private String value;
8 | private String text;
9 |
10 | public Choice(String display, String value) {
11 | this.value = value;
12 | text = display;
13 | }
14 |
15 | public String getValue() {
16 | return value;
17 | }
18 |
19 | public String getText() {
20 | return text;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/otm/NestedJsonAndKey.java:
--------------------------------------------------------------------------------
1 | package org.azavea.otm;
2 |
3 | import org.json.JSONException;
4 | import org.json.JSONObject;
5 |
6 | public class NestedJsonAndKey {
7 |
8 | public NestedJsonAndKey(JSONObject json, String key) {
9 | this.json = json;
10 | this.key = key;
11 | }
12 |
13 | public JSONObject json = null;
14 | public String key = null;
15 |
16 | public Object get() throws JSONException {
17 | return json.get(key);
18 | }
19 |
20 | public void set(Object newValue) throws JSONException {
21 | if (JSONObject.NULL.equals(newValue)) {
22 | json.put(key, JSONObject.NULL);
23 |
24 | } else if (newValue instanceof Integer) {
25 | json.put(key, Integer.parseInt(newValue.toString()));
26 |
27 | } else if (newValue instanceof Double) {
28 | json.put(key, Double.parseDouble(newValue.toString()));
29 |
30 | } else {
31 | json.put(this.key, newValue);
32 |
33 | }
34 |
35 | }
36 |
37 | }
38 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/otm/data/EditEntryContainer.java:
--------------------------------------------------------------------------------
1 | package org.azavea.otm.data;
2 |
3 | import java.util.LinkedHashMap;
4 | import java.util.Map;
5 |
6 | import org.json.JSONException;
7 |
8 | public class EditEntryContainer extends ModelContainer {
9 |
10 | @Override
11 | public Map getAll() throws JSONException {
12 | LinkedHashMap entryList =
13 | new LinkedHashMap<>(data.length());
14 | for (int i = 0; i < data.length(); i++) {
15 | EditEntry entry = new EditEntry();
16 | entry.setData(data.getJSONObject(i));
17 | entryList.put(entry.getId(), entry);
18 | }
19 | return entryList;
20 | }
21 |
22 | public EditEntry getFirst() throws JSONException {
23 | EditEntry entry = null;
24 | if (data.length() > 0) {
25 | entry = new EditEntry();
26 | entry.setData(data.getJSONObject(0));
27 | }
28 | return entry;
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/otm/data/ModelContainer.java:
--------------------------------------------------------------------------------
1 | package org.azavea.otm.data;
2 |
3 | import java.util.Map;
4 |
5 | import org.json.JSONArray;
6 | import org.json.JSONException;
7 |
8 | public abstract class ModelContainer {
9 | protected JSONArray data;
10 |
11 | public void setData(JSONArray array) {
12 | this.data = array;
13 | }
14 |
15 | public JSONArray getData() {
16 | return data;
17 | }
18 |
19 | public abstract Map getAll() throws JSONException;
20 | }
21 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/otm/data/Password.java:
--------------------------------------------------------------------------------
1 | package org.azavea.otm.data;
2 |
3 | import org.json.JSONException;
4 | import org.json.JSONObject;
5 |
6 | public class Password extends Model {
7 | public Password() {
8 | data = new JSONObject();
9 | }
10 |
11 | public Password(String password) throws JSONException {
12 | this();
13 | setPassword(password);
14 | }
15 |
16 | public void setPassword(String password) throws JSONException {
17 | data.put("password", password);
18 | }
19 |
20 | public String getPassword() throws JSONException {
21 | return data.getString("password");
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/otm/data/PlotContainer.java:
--------------------------------------------------------------------------------
1 | package org.azavea.otm.data;
2 |
3 | import java.util.LinkedHashMap;
4 | import java.util.Map;
5 |
6 | import org.json.JSONException;
7 |
8 | public class PlotContainer extends ModelContainer {
9 |
10 | @Override
11 | public Map getAll() throws JSONException {
12 | LinkedHashMap plotList =
13 | new LinkedHashMap<>(data.length());
14 | for (int i = 0; i < data.length(); i++) {
15 | Plot plot = new Plot(data.getJSONObject(i));
16 | plotList.put(plot.getId(), plot);
17 | }
18 | return plotList;
19 | }
20 |
21 | public Plot getFirst() throws JSONException {
22 | Plot plot = null;
23 | if (data.length() > 0) {
24 | plot = new Plot(data.getJSONObject(0));
25 | }
26 | return plot;
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/otm/data/SpeciesContainer.java:
--------------------------------------------------------------------------------
1 | package org.azavea.otm.data;
2 |
3 | import java.util.LinkedHashMap;
4 | import java.util.Map;
5 |
6 | import org.json.JSONException;
7 |
8 | public class SpeciesContainer extends ModelContainer {
9 |
10 | @Override
11 | public Map getAll() throws JSONException {
12 | LinkedHashMap speciesList =
13 | new LinkedHashMap<>(data.length());
14 | for (int i = 0; i < data.length(); i++) {
15 | Species species = new Species();
16 | species.setData(data.getJSONObject(i));
17 | speciesList.put(species.getId(), species);
18 | }
19 | return speciesList;
20 | }
21 |
22 | }
23 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/otm/data/UserType.java:
--------------------------------------------------------------------------------
1 | package org.azavea.otm.data;
2 |
3 | import org.json.JSONException;
4 | import org.json.JSONObject;
5 |
6 | public class UserType extends Model {
7 | public static final int ADMINISTRATOR_LEVEL = 1000;
8 |
9 | public UserType() {
10 | data = new JSONObject();
11 | }
12 |
13 | public int getLevel() throws JSONException {
14 | return data.getInt("level");
15 | }
16 |
17 | public void setLevel(int level) throws JSONException {
18 | data.put("level", level);
19 | }
20 |
21 | public String getName() throws JSONException {
22 | return data.getString("name");
23 | }
24 |
25 | public void setName(String name) throws JSONException {
26 | data.put("name", name);
27 | }
28 |
29 | }
30 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/otm/filters/MissingFilter.java:
--------------------------------------------------------------------------------
1 | package org.azavea.otm.filters;
2 |
3 | import org.json.JSONObject;
4 |
5 | /**
6 | * Boolean on/off filter for missing field
7 | */
8 | public class MissingFilter extends BooleanFilter {
9 |
10 | public MissingFilter(String key, String identifier, String label) {
11 | super(key, identifier, label);
12 | }
13 |
14 | @Override
15 | public JSONObject getFilterObject() {
16 | return buildNestedFilter(this.identifier, "ISNULL", this.active);
17 | }
18 |
19 | }
20 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/otm/filters/MultiChoiceFilter.java:
--------------------------------------------------------------------------------
1 | package org.azavea.otm.filters;
2 |
3 | import org.json.JSONArray;
4 | import org.json.JSONObject;
5 |
6 | public class MultiChoiceFilter extends ChoiceFilter {
7 | public MultiChoiceFilter(String key, String identifier, String label, JSONArray choices) {
8 | super(key, identifier, label, choices);
9 | }
10 |
11 | @Override
12 | public JSONObject getFilterObject() {
13 | return buildNestedFilter(this.identifier, "LIKE", "\"" + choices[this.selectedIndex].getValue() + "\"");
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/otm/filters/NumericRangeFilter.java:
--------------------------------------------------------------------------------
1 | package org.azavea.otm.filters;
2 |
3 | import android.view.View;
4 | import android.widget.EditText;
5 |
6 | import org.azavea.otm.R;
7 |
8 | public class NumericRangeFilter extends RangeFilter {
9 | public NumericRangeFilter(String key, String identifier, String label) {
10 | super(key, identifier, label);
11 | }
12 |
13 | @Override
14 | protected Double valueFromView(View view) {
15 | String min = ((EditText) view).getText().toString().trim();
16 | if (!"".equals(min)) {
17 | return Double.parseDouble(min);
18 | }
19 | return null;
20 | }
21 |
22 | @Override
23 | public String valueToString(Double value) {
24 | return Double.toString(value);
25 | }
26 |
27 | @Override
28 | protected int getFieldResource() {
29 | return R.layout.filter_numeric_range_control;
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/otm/rest/handlers/ContainerRestHandler.java:
--------------------------------------------------------------------------------
1 | package org.azavea.otm.rest.handlers;
2 |
3 | import org.azavea.otm.data.ModelContainer;
4 | import org.json.JSONArray;
5 |
6 | import cz.msebera.android.httpclient.Header;
7 |
8 | public abstract class ContainerRestHandler> extends LoggingJsonHttpResponseHandler {
9 | private T resultObject;
10 |
11 | public ContainerRestHandler(T resultObject) {
12 | this.resultObject = resultObject;
13 | }
14 |
15 | @Override
16 | public void onSuccess(int statusCode, Header[] headers, JSONArray response) {
17 | resultObject.setData(response);
18 | dataReceived(resultObject);
19 | }
20 |
21 | // Overridden by consuming class
22 | public abstract void dataReceived(T responseObject);
23 | }
24 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/otm/rest/handlers/RestHandler.java:
--------------------------------------------------------------------------------
1 | package org.azavea.otm.rest.handlers;
2 |
3 | import org.azavea.otm.data.Model;
4 | import org.json.JSONObject;
5 |
6 | import cz.msebera.android.httpclient.Header;
7 |
8 | public abstract class RestHandler extends LoggingJsonHttpResponseHandler {
9 | public static final String SUCCESS_KEY = "success";
10 |
11 | private T resultObject;
12 |
13 | public RestHandler(T resultObject) {
14 | this.resultObject = resultObject;
15 | }
16 |
17 | @Override
18 | public void onSuccess(int statusCode, Header[] headers, JSONObject response) {
19 | resultObject.setData(response);
20 | dataReceived(resultObject);
21 | }
22 |
23 | // Overridden by consuming class
24 | public abstract void dataReceived(T responseObject);
25 | }
26 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/otm/ui/AboutDisplay.java:
--------------------------------------------------------------------------------
1 | package org.azavea.otm.ui;
2 |
3 | import org.azavea.otm.R;
4 |
5 | import android.app.Fragment;
6 | import android.os.Bundle;
7 | import android.view.LayoutInflater;
8 | import android.view.View;
9 | import android.view.ViewGroup;
10 | import android.webkit.WebView;
11 |
12 | public class AboutDisplay extends Fragment {
13 |
14 | @Override
15 | public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
16 | super.onCreate(savedInstanceState);
17 | View view = inflater.inflate(R.layout.about, container, false);
18 | WebView wv = (WebView) view.findViewById(R.id.about_webview);
19 | wv.loadUrl("file:///android_asset/about_content.html");
20 |
21 | return view;
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/otm/ui/OTMActionBarActivity.java:
--------------------------------------------------------------------------------
1 | package org.azavea.otm.ui;
2 |
3 | import android.app.Activity;
4 |
5 | import org.azavea.otm.App;
6 |
7 | /***
8 | * Custom class for app-wide changes to the Action Bar.
9 | *
10 | * This class will grow over time as new overrides are added.
11 | */
12 | public class OTMActionBarActivity extends Activity {
13 | @Override
14 | public void onResume() {
15 | super.onResume();
16 | // Change the title depending on whether or not
17 | // an instance is active.
18 | this.setTitle(App.getInstanceName());
19 | }
20 |
21 | }
22 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/java/org/azavea/otm/ui/UpEnabledActionBarActivity.java:
--------------------------------------------------------------------------------
1 | package org.azavea.otm.ui;
2 |
3 | import android.os.Bundle;
4 | import android.support.v4.app.NavUtils;
5 | import android.view.MenuItem;
6 |
7 | public class UpEnabledActionBarActivity extends OTMActionBarActivity {
8 | @Override
9 | protected void onCreate(Bundle savedInstanceState) {
10 | super.onCreate(savedInstanceState);
11 | getActionBar().setDisplayHomeAsUpEnabled(true);
12 | }
13 |
14 | @Override
15 | public boolean onOptionsItemSelected(MenuItem item) {
16 | switch (item.getItemId()) {
17 | // Respond to the action bar's Up/Home button
18 | case android.R.id.home:
19 | NavUtils.navigateUpFromSameTask(this);
20 | return true;
21 | }
22 | return super.onOptionsItemSelected(item);
23 | }
24 |
25 | }
26 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/anim/dialog_slide_down.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/anim/dialog_slide_up.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ab_bottom_solid_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ab_bottom_solid_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ab_solid_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ab_solid_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ab_stacked_solid_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ab_stacked_solid_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ab_texture_tile_actionbar_custom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ab_texture_tile_actionbar_custom.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ab_transparent_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ab_transparent_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/app_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/app_icon.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/btn.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/btn.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/btn_cab_done_default_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/btn_cab_done_default_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/btn_cab_done_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/btn_cab_done_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/btn_cab_done_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/btn_cab_done_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/btn_danger.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/btn_danger.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/btn_primary.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/btn_primary.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/cab_background_bottom_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/cab_background_bottom_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/cab_background_top_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/cab_background_top_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_off_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_off_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_off_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_off_disabled_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_off_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_off_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_off_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_off_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_off_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_off_pressed_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_on_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_on_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_on_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_on_disabled_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_on_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_on_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_on_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_on_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_on_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_check_on_pressed_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_off_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_off_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_off_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_off_disabled_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_off_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_off_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_off_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_off_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_off_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_off_pressed_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_on_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_on_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_on_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_on_disabled_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_on_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_on_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_on_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_on_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_on_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_radio_on_pressed_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_off_disabled_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_off_disabled_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_off_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_off_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_off_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_off_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_off_normal_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_off_normal_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_off_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_off_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_on_disabled_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_on_disabled_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_on_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_on_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_on_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_on_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_on_normal_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_on_normal_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_on_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_btn_toggle_on_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_list_activated_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_list_activated_holo.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_list_focused_holo.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progress_bg_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progress_bg_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progress_primary_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progress_primary_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progress_secondary_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progress_secondary_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progressbar_indeterminate_holo1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progressbar_indeterminate_holo1.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progressbar_indeterminate_holo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progressbar_indeterminate_holo2.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progressbar_indeterminate_holo3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progressbar_indeterminate_holo3.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progressbar_indeterminate_holo4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progressbar_indeterminate_holo4.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progressbar_indeterminate_holo5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progressbar_indeterminate_holo5.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progressbar_indeterminate_holo6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progressbar_indeterminate_holo6.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progressbar_indeterminate_holo7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progressbar_indeterminate_holo7.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progressbar_indeterminate_holo8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_progressbar_indeterminate_holo8.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_text_select_handle_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_text_select_handle_left.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_text_select_handle_middle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_text_select_handle_middle.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_text_select_handle_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_text_select_handle_right.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_textfield_activated_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_textfield_activated_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_textfield_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_textfield_default_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_textfield_disabled_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_textfield_disabled_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_textfield_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_textfield_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_textfield_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/holo_custom_textfield_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ic_add_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ic_add_black_24dp.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ic_addphoto.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ic_addphoto.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ic_chevron_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ic_chevron_right.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ic_filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ic_filter.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ic_magnify.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ic_magnify.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ic_mapmarker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ic_mapmarker.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ic_pending.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ic_pending.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ic_photo_camera_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ic_photo_camera_black_24dp.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ic_tab_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ic_tab_about.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ic_tab_about_active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ic_tab_about_active.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ic_tab_list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ic_tab_list.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ic_tab_list_active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ic_tab_list_active.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ic_tab_map.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ic_tab_map.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ic_tab_map_active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ic_tab_map_active.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ic_tab_profile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ic_tab_profile.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/ic_tab_profile_active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/ic_tab_profile_active.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/list_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/list_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/list_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/list_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/listview_background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/listview_background.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/listview_header_background.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/listview_header_background.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/menu_dropdown_panel_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/menu_dropdown_panel_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/missing_tree_photo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/missing_tree_photo.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/progress_bg_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/progress_bg_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/progress_primary_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/progress_primary_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/progress_secondary_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/progress_secondary_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/spinner_ab_default_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/spinner_ab_default_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/spinner_ab_disabled_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/spinner_ab_disabled_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/spinner_ab_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/spinner_ab_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/spinner_ab_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/spinner_ab_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/tab_selected_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/tab_selected_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/tab_selected_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/tab_selected_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/tab_selected_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/tab_selected_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/tab_unselected_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/tab_unselected_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/tab_unselected_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/tab_unselected_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-hdpi/tab_unselected_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-hdpi/tab_unselected_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-ldpi/app_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-ldpi/app_icon.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-ldpi/ic_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-ldpi/ic_about.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-ldpi/ic_about_active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-ldpi/ic_about_active.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-ldpi/ic_chevron_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-ldpi/ic_chevron_right.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-ldpi/ic_list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-ldpi/ic_list.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-ldpi/ic_list_active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-ldpi/ic_list_active.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-ldpi/ic_mapmarker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-ldpi/ic_mapmarker.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-ldpi/ic_profile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-ldpi/ic_profile.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-ldpi/ic_profile_active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-ldpi/ic_profile_active.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-ldpi/ic_tab_map.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-ldpi/ic_tab_map.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-ldpi/missing_tree_photo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-ldpi/missing_tree_photo.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/ab_bottom_solid_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/ab_bottom_solid_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/ab_solid_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/ab_solid_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/ab_stacked_solid_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/ab_stacked_solid_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/ab_texture_tile_actionbar_custom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/ab_texture_tile_actionbar_custom.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/ab_transparent_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/ab_transparent_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/app_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/app_icon.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/btn_cab_done_default_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/btn_cab_done_default_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/btn_cab_done_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/btn_cab_done_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/btn_cab_done_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/btn_cab_done_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/cab_background_bottom_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/cab_background_bottom_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/cab_background_top_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/cab_background_top_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_off_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_off_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_off_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_off_disabled_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_off_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_off_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_off_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_off_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_off_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_off_pressed_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_on_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_on_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_on_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_on_disabled_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_on_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_on_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_on_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_on_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_on_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_check_on_pressed_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_off_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_off_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_off_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_off_disabled_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_off_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_off_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_off_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_off_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_off_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_off_pressed_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_on_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_on_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_on_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_on_disabled_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_on_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_on_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_on_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_on_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_on_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_radio_on_pressed_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_off_disabled_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_off_disabled_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_off_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_off_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_off_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_off_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_off_normal_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_off_normal_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_off_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_off_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_on_disabled_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_on_disabled_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_on_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_on_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_on_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_on_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_on_normal_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_on_normal_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_on_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_btn_toggle_on_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_list_activated_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_list_activated_holo.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_list_focused_holo.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progress_bg_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progress_bg_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progress_primary_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progress_primary_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progress_secondary_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progress_secondary_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progressbar_indeterminate_holo1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progressbar_indeterminate_holo1.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progressbar_indeterminate_holo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progressbar_indeterminate_holo2.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progressbar_indeterminate_holo3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progressbar_indeterminate_holo3.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progressbar_indeterminate_holo4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progressbar_indeterminate_holo4.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progressbar_indeterminate_holo5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progressbar_indeterminate_holo5.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progressbar_indeterminate_holo6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progressbar_indeterminate_holo6.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progressbar_indeterminate_holo7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progressbar_indeterminate_holo7.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progressbar_indeterminate_holo8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_progressbar_indeterminate_holo8.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_text_select_handle_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_text_select_handle_left.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_text_select_handle_middle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_text_select_handle_middle.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_text_select_handle_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_text_select_handle_right.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_textfield_activated_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_textfield_activated_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_textfield_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_textfield_default_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_textfield_disabled_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_textfield_disabled_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_textfield_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_textfield_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_textfield_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/holo_custom_textfield_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/ic_about.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/ic_about.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/ic_about_active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/ic_about_active.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/ic_add_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/ic_add_black_24dp.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/ic_chevron_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/ic_chevron_right.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/ic_filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/ic_filter.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/ic_list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/ic_list.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/ic_list_active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/ic_list_active.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/ic_magnify.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/ic_magnify.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/ic_mapmarker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/ic_mapmarker.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/ic_photo_camera_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/ic_photo_camera_black_24dp.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/ic_profile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/ic_profile.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/ic_profile_active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/ic_profile_active.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/ic_tab_map.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/ic_tab_map.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/list_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/list_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/list_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/list_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/menu_dropdown_panel_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/menu_dropdown_panel_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/missing_tree_photo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/missing_tree_photo.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/progress_bg_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/progress_bg_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/progress_primary_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/progress_primary_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/progress_secondary_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/progress_secondary_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/spinner_ab_default_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/spinner_ab_default_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/spinner_ab_disabled_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/spinner_ab_disabled_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/spinner_ab_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/spinner_ab_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/spinner_ab_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/spinner_ab_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/tab_selected_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/tab_selected_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/tab_selected_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/tab_selected_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/tab_selected_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/tab_selected_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/tab_unselected_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/tab_unselected_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/tab_unselected_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/tab_unselected_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-mdpi/tab_unselected_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-mdpi/tab_unselected_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/ab_bottom_solid_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/ab_bottom_solid_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/ab_solid_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/ab_solid_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/ab_stacked_solid_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/ab_stacked_solid_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/ab_texture_tile_actionbar_custom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/ab_texture_tile_actionbar_custom.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/ab_transparent_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/ab_transparent_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/app_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/app_icon.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/btn_cab_done_default_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/btn_cab_done_default_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/btn_cab_done_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/btn_cab_done_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/btn_cab_done_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/btn_cab_done_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/cab_background_bottom_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/cab_background_bottom_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/cab_background_top_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/cab_background_top_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_off_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_off_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_off_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_off_disabled_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_off_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_off_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_off_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_off_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_off_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_off_pressed_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_on_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_on_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_on_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_on_disabled_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_on_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_on_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_on_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_on_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_on_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_check_on_pressed_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_off_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_off_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_off_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_off_disabled_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_off_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_off_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_off_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_off_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_off_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_off_pressed_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_on_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_on_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_on_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_on_disabled_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_on_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_on_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_on_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_on_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_on_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_radio_on_pressed_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_off_disabled_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_off_disabled_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_off_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_off_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_off_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_off_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_off_normal_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_off_normal_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_off_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_off_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_on_disabled_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_on_disabled_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_on_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_on_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_on_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_on_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_on_normal_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_on_normal_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_on_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_btn_toggle_on_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_list_activated_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_list_activated_holo.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_list_focused_holo.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progress_bg_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progress_bg_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progress_primary_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progress_primary_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progress_secondary_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progress_secondary_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progressbar_indeterminate_holo1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progressbar_indeterminate_holo1.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progressbar_indeterminate_holo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progressbar_indeterminate_holo2.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progressbar_indeterminate_holo3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progressbar_indeterminate_holo3.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progressbar_indeterminate_holo4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progressbar_indeterminate_holo4.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progressbar_indeterminate_holo5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progressbar_indeterminate_holo5.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progressbar_indeterminate_holo6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progressbar_indeterminate_holo6.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progressbar_indeterminate_holo7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progressbar_indeterminate_holo7.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progressbar_indeterminate_holo8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_progressbar_indeterminate_holo8.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_text_select_handle_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_text_select_handle_left.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_text_select_handle_middle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_text_select_handle_middle.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_text_select_handle_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_text_select_handle_right.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_textfield_activated_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_textfield_activated_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_textfield_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_textfield_default_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_textfield_disabled_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_textfield_disabled_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_textfield_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_textfield_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_textfield_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/holo_custom_textfield_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/ic_add_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/ic_add_black_24dp.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/ic_chevron_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/ic_chevron_right.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/ic_filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/ic_filter.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/ic_magnify.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/ic_magnify.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/ic_mapmarker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/ic_mapmarker.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/ic_photo_camera_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/ic_photo_camera_black_24dp.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/list_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/list_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/list_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/list_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/menu_dropdown_panel_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/menu_dropdown_panel_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/missing_tree_photo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/missing_tree_photo.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/progress_bg_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/progress_bg_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/progress_primary_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/progress_primary_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/progress_secondary_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/progress_secondary_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/spinner_ab_default_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/spinner_ab_default_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/spinner_ab_disabled_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/spinner_ab_disabled_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/spinner_ab_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/spinner_ab_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/spinner_ab_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/spinner_ab_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/tab_selected_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/tab_selected_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/tab_selected_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/tab_selected_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/tab_selected_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/tab_selected_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/tab_unselected_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/tab_unselected_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/tab_unselected_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/tab_unselected_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xhdpi/tab_unselected_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xhdpi/tab_unselected_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/ab_bottom_solid_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/ab_bottom_solid_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/ab_solid_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/ab_solid_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/ab_stacked_solid_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/ab_stacked_solid_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/ab_texture_tile_actionbar_custom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/ab_texture_tile_actionbar_custom.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/ab_transparent_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/ab_transparent_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/app_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/app_icon.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/btn_cab_done_default_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/btn_cab_done_default_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/btn_cab_done_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/btn_cab_done_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/btn_cab_done_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/btn_cab_done_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/cab_background_bottom_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/cab_background_bottom_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/cab_background_top_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/cab_background_top_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_off_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_off_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_off_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_off_disabled_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_off_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_off_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_off_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_off_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_off_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_off_pressed_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_on_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_on_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_on_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_on_disabled_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_on_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_on_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_on_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_on_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_on_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_check_on_pressed_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_off_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_off_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_off_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_off_disabled_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_off_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_off_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_off_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_off_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_off_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_off_pressed_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_on_disabled_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_on_disabled_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_on_disabled_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_on_disabled_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_on_focused_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_on_focused_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_on_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_on_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_on_pressed_holo_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_radio_on_pressed_holo_light.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_off_disabled_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_off_disabled_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_off_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_off_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_off_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_off_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_off_normal_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_off_normal_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_off_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_off_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_on_disabled_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_on_disabled_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_on_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_on_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_on_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_on_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_on_normal_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_on_normal_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_on_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_btn_toggle_on_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_list_activated_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_list_activated_holo.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_list_focused_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_list_focused_holo.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_list_longpressed_holo.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_list_longpressed_holo.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_list_pressed_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_list_pressed_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_list_selector_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_list_selector_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progress_bg_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progress_bg_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progress_primary_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progress_primary_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progress_secondary_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progress_secondary_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progressbar_indeterminate_holo1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progressbar_indeterminate_holo1.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progressbar_indeterminate_holo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progressbar_indeterminate_holo2.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progressbar_indeterminate_holo3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progressbar_indeterminate_holo3.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progressbar_indeterminate_holo4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progressbar_indeterminate_holo4.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progressbar_indeterminate_holo5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progressbar_indeterminate_holo5.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progressbar_indeterminate_holo6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progressbar_indeterminate_holo6.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progressbar_indeterminate_holo7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progressbar_indeterminate_holo7.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progressbar_indeterminate_holo8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_progressbar_indeterminate_holo8.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_text_select_handle_left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_text_select_handle_left.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_text_select_handle_middle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_text_select_handle_middle.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_text_select_handle_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_text_select_handle_right.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_textfield_activated_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_textfield_activated_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_textfield_default_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_textfield_default_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_textfield_disabled_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_textfield_disabled_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_textfield_disabled_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_textfield_disabled_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_textfield_focused_holo_light.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/holo_custom_textfield_focused_holo_light.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/ic_add_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/ic_add_black_24dp.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/ic_filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/ic_filter.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/ic_magnify.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/ic_magnify.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/ic_photo_camera_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/ic_photo_camera_black_24dp.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/list_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/list_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/list_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/list_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/menu_dropdown_panel_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/menu_dropdown_panel_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/progress_bg_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/progress_bg_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/progress_primary_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/progress_primary_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/progress_secondary_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/progress_secondary_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/spinner_ab_default_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/spinner_ab_default_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/spinner_ab_disabled_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/spinner_ab_disabled_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/spinner_ab_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/spinner_ab_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/spinner_ab_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/spinner_ab_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/tab_selected_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/tab_selected_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/tab_selected_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/tab_selected_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/tab_selected_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/tab_selected_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/tab_unselected_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/tab_unselected_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/tab_unselected_focused_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/tab_unselected_focused_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxhdpi/tab_unselected_pressed_actionbar_custom.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxhdpi/tab_unselected_pressed_actionbar_custom.9.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxxhdpi/app_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxxhdpi/app_icon.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxxhdpi/ic_add_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxxhdpi/ic_add_black_24dp.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxxhdpi/ic_filter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxxhdpi/ic_filter.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxxhdpi/ic_magnify.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxxhdpi/ic_magnify.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable-xxxhdpi/ic_photo_camera_black_24dp.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/OpenTreeMap/src/main/res/drawable-xxxhdpi/ic_photo_camera_black_24dp.png
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable/ab_background_textured_actionbar_custom.xml:
--------------------------------------------------------------------------------
1 |
2 |
18 |
19 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable/holo_custom_activated_background_holo_light.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable/holo_custom_list_selector_background_transition_holo_light.xml:
--------------------------------------------------------------------------------
1 |
2 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable/list_element_border.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
8 |
9 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable/list_header_border.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
8 |
9 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable/tab_about.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable/tab_list.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable/tab_profile.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable/tab_tree_map.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/drawable/top_border.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | -
9 |
10 |
13 |
14 |
15 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/about.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/activity_splash_screen.xml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/collection_udf_add_activity.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
11 |
12 |
16 |
17 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/collection_udf_add_choice.xml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/collection_udf_add_date.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/collection_udf_empty.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/collection_udf_field_group.xml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
10 |
11 |
16 |
17 |
18 |
22 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/filter_choice_control.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/filter_date_range_control.xml:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/filter_numeric_range_control.xml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/filter_species_control.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/filter_text_control.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
13 |
14 |
15 |
23 |
24 |
25 |
26 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/filter_toggle_control.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
14 |
15 |
21 |
22 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/filterable_list_selector.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
13 |
14 |
15 |
16 |
17 |
21 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/instance_switcher_element_row.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
14 |
15 |
19 |
20 |
24 |
25 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/instance_switcher_separator_row.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/list_separator_row.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/list_trees.xml:
--------------------------------------------------------------------------------
1 |
8 |
9 |
15 |
16 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/plot_ecofield_row.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
8 |
9 |
13 |
14 |
18 |
19 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/plot_edit_delete_buttons.xml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
15 |
16 |
23 |
24 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/plot_field_edit_button_row.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
8 |
9 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/plot_field_edit_diameter_row.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
9 |
10 |
12 |
13 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/plot_field_edit_row.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
8 |
9 |
13 |
14 |
20 |
21 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/plot_field_group.xml:
--------------------------------------------------------------------------------
1 |
6 |
7 |
10 |
11 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/plot_field_species_row.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
9 |
10 |
12 |
13 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/public_instance_element_row.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
10 |
11 |
15 |
16 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/segmented_button.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/simple_list_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/species_list_row.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
11 |
12 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/layout/terms_of_service.xml:
--------------------------------------------------------------------------------
1 |
5 |
6 |
11 |
12 |
18 |
19 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/menu/tree_edit_menu.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/menu/tree_info_menu.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/menu/udf_create_menu.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/raw/configuration.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/values-large/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 16dp
5 | 16dp
6 |
7 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/values/attrs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/values/colors_holo_custom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #8baa3d
4 |
5 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/values/defaults.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 12
5 | treemap_boundary
6 | treemap_mapfeature
7 | tree_search
8 | tree_highlight
9 |
10 | - Plot
11 |
12 |
13 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/values/dialog_slide.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
7 |
10 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/values/dimens.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | 8dp
4 | 8dp
5 | 16dp
6 | 10dp
7 | 8dp
8 | 8dp
9 | 8dp
10 | 8dp
11 | 12dp
12 | 8dp
13 | 6dp
14 | 24dp
15 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/values/ids.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/values/overrides.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | override in child app
5 | override in child app
6 | override in child app
7 | override in child app
8 | override in child app
9 | override in child app
10 | override in child app
11 | override in child app
12 | 10
13 | android-1.0-xx
14 |
15 |
16 | development
17 |
18 |
--------------------------------------------------------------------------------
/OpenTreeMap/src/main/res/values/themes_holo_custom.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
25 |
26 |
--------------------------------------------------------------------------------
/OpenTreeMapSkinned/.gitignore:
--------------------------------------------------------------------------------
1 | # built application files
2 | *.apk
3 | *.ap_
4 |
5 | # files for the dex VM
6 | *.dex
7 |
8 | # Java class files
9 | *.class
10 |
11 | # generated files
12 | bin/
13 | gen/
14 |
15 | # Local configuration file (sdk path, etc)
16 | local.properties
17 |
18 | # Mac file cruft
19 | .DS_Store
20 |
21 | fabfile.pyc
22 | buildconf.json
23 |
24 |
25 | gmap_api_key.xml
26 |
--------------------------------------------------------------------------------
/OpenTreeMapSkinned/assets/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 |
--------------------------------------------------------------------------------
/OpenTreeMapSkinned/lint.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/OpenTreeMapSkinned/proguard-project.txt:
--------------------------------------------------------------------------------
1 | # To enable ProGuard in your project, edit project.properties
2 | # to define the proguard.config property as described in that file.
3 | #
4 | # Add project specific ProGuard rules here.
5 | # By default, the flags in this file are appended to flags specified
6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt
7 | # You can edit the include path and order by changing the ProGuard
8 | # include property in project.properties.
9 | #
10 | # For more details, see
11 | # http://developer.android.com/guide/developing/tools/proguard.html
12 |
13 | # Add any project specific keep options here:
14 |
15 | # If your project uses WebView with JS, uncomment the following
16 | # and specify the fully qualified class name to the JavaScript interface
17 | # class:
18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
19 | # public *;
20 | #}
21 |
--------------------------------------------------------------------------------
/OpenTreeMapSkinned/project.properties:
--------------------------------------------------------------------------------
1 | # This file is automatically generated by Android Tools.
2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED!
3 | #
4 | # This file must be checked in Version Control Systems.
5 | #
6 | # To customize properties used by the Ant build system edit
7 | # "ant.properties", and override values to adapt the script to your
8 | # project structure.
9 | #
10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
12 |
13 | # Project target.
14 | target=android-16
15 | android.library.reference.1=../OpenTreeMap
16 |
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | buildscript {
3 | repositories {
4 | jcenter()
5 | }
6 | dependencies {
7 | classpath 'com.android.tools.build:gradle:2.2.2'
8 | classpath 'me.tatarka:gradle-retrolambda:3.2.5'
9 | }
10 | }
11 |
12 | allprojects {
13 | repositories {
14 | jcenter()
15 | // For fugue
16 | maven {
17 | url 'https://maven.atlassian.com/content/repositories/atlassian-public'
18 | }
19 | }
20 | }
21 |
22 | project.ext.preDexLibs = !project.hasProperty('disablePreDex')
23 |
24 | subprojects {
25 | project.plugins.whenPluginAdded { plugin ->
26 | if ("com.android.build.gradle.AppPlugin".equals(plugin.class.name)) {
27 | project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
28 | } else if ("com.android.build.gradle.LibraryPlugin".equals(plugin.class.name)) {
29 | project.android.dexOptions.preDexLibraries = rootProject.ext.preDexLibs
30 | }
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/ci/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/ci/wait_for_emulator.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # script to wait for emulator to start on Travis, from here:
4 | # https://github.com/andrewhr/rxjava-android-example/blob/master/ci/wait_for_emulator
5 |
6 | bootanim=""
7 | failcounter=0
8 | until [[ "$bootanim" =~ "stopped" ]]; do
9 | bootanim=`adb -e shell getprop init.svc.bootanim 2>&1`
10 | echo "$bootanim"
11 | if [[ "$bootanim" =~ "not found" ]]; then
12 | let "failcounter += 1"
13 | if [[ $failcounter -gt 3 ]]; then
14 | echo "Failed to start emulator"
15 | exit 1
16 | fi
17 | fi
18 | sleep 1
19 | done
20 | echo "Done"
21 |
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OpenTreeMap/otm-android/c9a5bdca3f0a46039ff97f9302c9c869368c8901/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Tue Oct 11 14:31:28 EDT 2016
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.14.1-all.zip
7 |
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':OpenTreeMap'
2 | include ':OpenTreeMapSkinned'
3 |
--------------------------------------------------------------------------------
/templates/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/templates/defaults.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | %(appname)s
6 | %(url_name)s
7 |
8 |
9 | %(baseurl)s
10 | %(baseurl)s/api/v4
11 | %(tilerurl)s/tile/
12 | %(accesskey)s
13 | %(secretkey)s
14 | %(rollbar_client_access_token)s
15 | %(app_google_analytics_id)s
16 | %(photo_report_email)s
17 |
18 |
19 | %(platform_ver_build)s
20 | %(environment)s
21 |
22 |
23 | %(google_maps_api_key)s
24 |
25 |
--------------------------------------------------------------------------------