├── .gitignore ├── 2015-DS ├── .gitignore ├── DevSummitDemo │ ├── .gitignore │ ├── DevSummitDemo │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ ├── com │ │ │ │ └── esri │ │ │ │ │ └── android │ │ │ │ │ └── devsummit │ │ │ │ │ ├── DevSummitDemoActivity.java │ │ │ │ │ ├── FloatingActionButton.java │ │ │ │ │ └── RasterAnalysisHelper.java │ │ │ └── ua │ │ │ │ └── com │ │ │ │ └── vassiliev │ │ │ │ └── androidfilebrowser │ │ │ │ └── FileBrowserActivity.java │ │ │ └── res │ │ │ ├── animator │ │ │ └── fab_anim.xml │ │ │ ├── drawable-hdpi │ │ │ ├── ic_elevation_rise_grey600_48dp.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_refresh_grey600_48dp.png │ │ │ ├── drawable-mdpi │ │ │ ├── dir_up.png │ │ │ ├── fab_background.xml │ │ │ ├── fab_icons.xml │ │ │ ├── file_icon.png │ │ │ ├── folder_icon.png │ │ │ ├── folder_icon_light.png │ │ │ ├── ic_add.png │ │ │ ├── ic_elevation_rise_grey600_48dp.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_refresh_grey600_48dp.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_elevation_rise_grey600_48dp.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_refresh_grey600_48dp.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_action_cancel.png │ │ │ ├── ic_action_cancel_white.png │ │ │ ├── ic_elevation_rise_black600_48dp.png │ │ │ ├── ic_elevation_rise_grey600_48dp.png │ │ │ ├── ic_elevation_rise_white600_48dp.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_refresh_black600_48dp.png │ │ │ ├── ic_refresh_grey600_48dp.png │ │ │ └── ic_refresh_white600_48dp.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_elevation_rise_grey600_48dp.png │ │ │ ├── ic_launcher.png │ │ │ └── ic_refresh_grey600_48dp.png │ │ │ ├── layout │ │ │ ├── main.xml │ │ │ └── ua_com_vassiliev_filebrowser_layout.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── README.md │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── GlassSample │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── esri │ │ │ │ └── test │ │ │ │ └── glasssample │ │ │ │ ├── CardAdapter.java │ │ │ │ ├── HelloWorld.java │ │ │ │ ├── MapActivity.java │ │ │ │ ├── MapService.java │ │ │ │ ├── MenuActivity.java │ │ │ │ └── MyoMapListener.java │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_stop.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ └── livecard_textview.xml │ │ │ ├── menu │ │ │ └── map_livecard.xml │ │ │ ├── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── voice_trigger.xml │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── LocalGeofence │ ├── .gitignore │ ├── README.md │ ├── Screenshot_GeofenceAlerts.png │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── esri │ │ │ │ └── runtime │ │ │ │ └── android │ │ │ │ └── localgeofence │ │ │ │ ├── CurrentLocationActivity.java │ │ │ │ ├── GeofenceListActivity.java │ │ │ │ ├── GeofenceMapActivity.java │ │ │ │ ├── GeofenceServiceFast.java │ │ │ │ ├── GeofenceServiceNormal.java │ │ │ │ ├── LocalGeofence.java │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── drawable │ │ │ │ └── geofence_bright.png │ │ │ ├── ic_action_location_searching.png │ │ │ ├── ic_action_place.png │ │ │ ├── ic_fence_simple.png │ │ │ ├── ic_geofence_bright.png │ │ │ ├── ic_launcher.png │ │ │ └── sdk_gps_navigation.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_action_location_searching.png │ │ │ ├── ic_action_place.png │ │ │ ├── ic_fence_simple.png │ │ │ ├── ic_geofence_bright.png │ │ │ ├── ic_launcher.png │ │ │ └── sdk_gps_navigation.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_action_location_searching.png │ │ │ ├── ic_action_place.png │ │ │ ├── ic_fence_simple.png │ │ │ ├── ic_geofence_bright.png │ │ │ ├── ic_launcher.png │ │ │ └── sdk_gps_navigation.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_action_location_searching.png │ │ │ ├── ic_action_place.png │ │ │ ├── ic_fence_simple.png │ │ │ ├── ic_geofence_bright.png │ │ │ ├── ic_launcher.png │ │ │ └── sdk_gps_navigation.png │ │ │ ├── layout │ │ │ ├── activity_current_location.xml │ │ │ ├── activity_geofence_map.xml │ │ │ ├── activity_list.xml │ │ │ ├── activity_local_geofence.xml │ │ │ └── activity_main.xml │ │ │ ├── menu │ │ │ ├── main_menu.xml │ │ │ └── menu_list.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── MaterialBaseMaps │ ├── .gitignore │ ├── BasemapsActivity.png │ ├── MapActivity.png │ ├── README.md │ ├── TypeHierarchy.png │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── esri │ │ │ │ └── runtime │ │ │ │ └── android │ │ │ │ └── materialbasemaps │ │ │ │ ├── model │ │ │ │ ├── BasemapAdapter.java │ │ │ │ ├── BasemapClickListener.java │ │ │ │ ├── BasemapItem.java │ │ │ │ ├── BasemapViewHolder.java │ │ │ │ └── PersistBasemapItem.java │ │ │ │ ├── presenter │ │ │ │ ├── FetchBasemapsItemId.java │ │ │ │ └── OnTaskCompleted.java │ │ │ │ ├── ui │ │ │ │ ├── MainActivity.java │ │ │ │ └── MapActivity.java │ │ │ │ └── util │ │ │ │ └── TaskExecutor.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── fab_ripple.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── map_activity.xml │ │ │ └── row_basemap.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_action_location_found.png │ │ │ ├── ic_action_location_off.png │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_action_location_found.png │ │ │ ├── ic_action_location_off.png │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_action_location_found.png │ │ │ ├── ic_action_location_off.png │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_action_location_found.png │ │ │ ├── ic_action_location_off.png │ │ │ └── ic_launcher.png │ │ │ ├── transition │ │ │ └── title_transition.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ └── backup_descriptor.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── TrafficApp │ ├── .gitignore │ ├── README.md │ ├── RedlandsTrafficApp.png │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── runtime │ │ │ │ └── esri │ │ │ │ └── com │ │ │ │ └── trafficapp │ │ │ │ └── ApplicationTest.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── runtime │ │ │ │ └── esri │ │ │ │ └── com │ │ │ │ └── trafficapp │ │ │ │ ├── IncidentAdapter.java │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── fab_ic_add.png │ │ │ ├── ic_action_ic_grid_on_24px.png │ │ │ ├── ic_action_ic_history_24px.png │ │ │ ├── ic_action_ic_menu_24px.png │ │ │ ├── ic_action_ic_search_24px.png │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ ├── fab_ic_add.png │ │ │ ├── ic_action_ic_grid_on_24px.png │ │ │ ├── ic_action_ic_history_24px.png │ │ │ ├── ic_action_ic_menu_24px.png │ │ │ ├── ic_action_ic_search_24px.png │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ ├── fab_ic_add.png │ │ │ ├── ic_action_ic_grid_on_24px.png │ │ │ ├── ic_action_ic_history_24px.png │ │ │ ├── ic_action_ic_menu_24px.png │ │ │ ├── ic_action_ic_search_24px.png │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── fab_ic_add.png │ │ │ ├── ic_action_ic_grid_on_24px.png │ │ │ ├── ic_action_ic_history_24px.png │ │ │ ├── ic_action_ic_menu_24px.png │ │ │ ├── ic_action_ic_search_24px.png │ │ │ └── ic_launcher.png │ │ │ ├── drawable │ │ │ ├── corners.xml │ │ │ ├── fab_shape.xml │ │ │ ├── layout_bg.xml │ │ │ ├── redlands.jpg │ │ │ └── redlandsorange.jpg │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── context_layout_datepicker.xml │ │ │ ├── context_layout_incidents.xml │ │ │ ├── list_item.xml │ │ │ ├── test.xml │ │ │ └── trafficmap_activity.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── WearControl │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── mobile │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── esri │ │ │ │ └── arcgisruntime │ │ │ │ └── wearcontrol │ │ │ │ └── ApplicationTest.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── esri │ │ │ │ └── arcgisruntime │ │ │ │ └── wearcontrol │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MyoControlListener.java │ │ │ │ ├── MyoFeatureControlListener.java │ │ │ │ ├── MyoMapControlListener.java │ │ │ │ ├── WearConnectionCallbacks.java │ │ │ │ ├── WearConnectionFailedListener.java │ │ │ │ └── WearMessageListener.java │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── settings.gradle │ └── wear │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── esri │ │ │ └── arcgisruntime │ │ │ └── wearcontrol │ │ │ ├── MainActivity.java │ │ │ ├── WearConnectionCallbacks.java │ │ │ └── WearConnectionFailedListener.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ ├── drawable │ │ ├── rect_background.xml │ │ └── round_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── rect_activity_main.xml │ │ └── round_activity_main.xml │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml └── wear-offline │ ├── README.md │ ├── build.gradle │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── mobile │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── esri │ │ │ └── test │ │ │ └── wearsample │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ │ ├── layout │ │ └── activity_main.xml │ │ ├── menu │ │ └── menu_main.xml │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── settings.gradle │ └── wear │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── esri │ │ └── test │ │ └── wearsample │ │ └── MainActivity.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── layout │ ├── activity_main.xml │ ├── callout.xml │ ├── rect_activity_main.xml │ └── round_activity_main.xml │ └── values │ ├── strings.xml │ └── styles.xml ├── 2015-EDS ├── DeviceLocation │ ├── .gitignore │ ├── DeviceLocation_demo_screenshot.png │ ├── README.md │ ├── build.gradle │ ├── device-location │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── esri │ │ │ │ └── runtime │ │ │ │ └── android │ │ │ │ └── devicelocation │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── JumpZoom │ ├── JumpZoom_demo_screenshot1.png │ ├── JumpZoom_demo_screenshot2.png │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── jump-zoom │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── esri │ │ │ │ └── runtime │ │ │ │ └── android │ │ │ │ └── jumpzoom │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── side_nav_bar.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── app_bar_main.xml │ │ │ ├── content_main.xml │ │ │ └── nav_header_main.xml │ │ │ ├── menu │ │ │ └── activity_main_drawer.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── settings.gradle └── README.md ├── 2016-DS ├── Geometrydemo │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── esri │ │ │ │ └── arcgisruntime │ │ │ │ └── geometrydemo │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── LocalGeofence │ ├── .gitignore │ ├── README.md │ ├── Screenshot_GeofenceAlerts.png │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── esri │ │ │ │ └── runtime │ │ │ │ └── android │ │ │ │ └── localgeofence │ │ │ │ ├── CurrentLocationActivity.java │ │ │ │ ├── GeofenceAlertItem.java │ │ │ │ ├── GeofenceListActivity.java │ │ │ │ ├── GeofenceListViewerAdapter.java │ │ │ │ ├── GeofenceMapActivity.java │ │ │ │ ├── GeofenceServiceFast.java │ │ │ │ ├── GeofenceServiceNormal.java │ │ │ │ ├── LocalGeofence.java │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── drawable │ │ │ │ └── geofence_bright.png │ │ │ ├── ic_action_location_searching.png │ │ │ ├── ic_action_place.png │ │ │ ├── ic_add_alert_white_48dp.png │ │ │ ├── ic_fence_simple.png │ │ │ ├── ic_geofence_bright.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_notifications_black_48dp.png │ │ │ ├── ic_pause_circle_outline_black_48dp.png │ │ │ ├── ic_place_black_48dp.png │ │ │ ├── ic_play_circle_outline_black_48dp.png │ │ │ └── sdk_gps_navigation.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_action_location_searching.png │ │ │ ├── ic_action_place.png │ │ │ ├── ic_add_alert_white_48dp.png │ │ │ ├── ic_fence_simple.png │ │ │ ├── ic_geofence_bright.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_notifications_black_48dp.png │ │ │ ├── ic_pause_circle_outline_black_48dp.png │ │ │ ├── ic_place_black_48dp.png │ │ │ ├── ic_play_circle_outline_black_48dp.png │ │ │ └── sdk_gps_navigation.png │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_action_location_searching.png │ │ │ ├── ic_action_place.png │ │ │ ├── ic_add_alert_white_48dp.png │ │ │ ├── ic_fence_simple.png │ │ │ ├── ic_geofence_bright.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_notifications_black_48dp.png │ │ │ ├── ic_pause_circle_outline_black_48dp.png │ │ │ ├── ic_place_black_48dp.png │ │ │ ├── ic_play_circle_outline_black_48dp.png │ │ │ └── sdk_gps_navigation.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_action_location_searching.png │ │ │ ├── ic_action_place.png │ │ │ ├── ic_add_alert_white_48dp.png │ │ │ ├── ic_fence_simple.png │ │ │ ├── ic_geofence_bright.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_notifications_black_48dp.png │ │ │ ├── ic_pause_circle_outline_black_48dp.png │ │ │ ├── ic_place_black_48dp.png │ │ │ ├── ic_play_circle_outline_black_48dp.png │ │ │ └── sdk_gps_navigation.png │ │ │ ├── layout │ │ │ ├── activity_current_location.xml │ │ │ ├── activity_geofence_map.xml │ │ │ ├── activity_list.xml │ │ │ ├── activity_local_geofence.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_main_recyclerview.xml │ │ │ └── geofencealertitem_cardview.xml │ │ │ ├── menu │ │ │ ├── main_menu.xml │ │ │ └── menu_list.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── WearCollection │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── mobile │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── esri │ │ │ │ └── arcgisruntime │ │ │ │ └── wearcollection │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── esri │ │ │ │ │ └── arcgisruntime │ │ │ │ │ └── wearcollection │ │ │ │ │ ├── CollectionActivity.java │ │ │ │ │ ├── FeatureLayerUtil.java │ │ │ │ │ ├── FileUtil.java │ │ │ │ │ ├── ListAdapter.java │ │ │ │ │ ├── RequestListenerService.java │ │ │ │ │ └── SelectionActivity.java │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ ├── activity_collection.xml │ │ │ │ ├── activity_selection.xml │ │ │ │ ├── layer_dialog.xml │ │ │ │ └── list_item.xml │ │ │ │ ├── menu │ │ │ │ └── menu_collection.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── esri │ │ │ └── arcgisruntime │ │ │ └── wearcollection │ │ │ └── ExampleUnitTest.java │ ├── settings.gradle │ └── wear │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── esri │ │ │ └── arcgisruntime │ │ │ └── wearcollection │ │ │ ├── CollectionActivity.java │ │ │ └── WearableListItemLayout.java │ │ └── res │ │ ├── drawable │ │ └── circle.xml │ │ ├── layout │ │ ├── activity_collection.xml │ │ ├── list_item.xml │ │ └── selection_list.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── colors.xml │ │ ├── integers.xml │ │ └── strings.xml └── java-quartz-routing-demo │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── src │ └── main │ └── java │ └── com │ └── esri │ └── arcgisruntime │ └── demo │ └── routing │ └── RouteDemo.java ├── README.md ├── android-demos ├── GeocodeAndRoute │ ├── .gitignore │ ├── Readme.md │ ├── Screenshot_GeocodeAndRoute.png │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── ic_launcher-web.png │ │ │ ├── java │ │ │ └── com │ │ │ │ └── esri │ │ │ │ └── arcgisruntime │ │ │ │ └── demo │ │ │ │ └── geocodeandroute │ │ │ │ └── GeocodeRouteActivity.java │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_cancel_black_24dp.xml │ │ │ ├── ic_subdirectory_arrow_right_black_24dp.xml │ │ │ ├── pin.png │ │ │ ├── pin_blank_orange.png │ │ │ ├── pin_circle_blue_d.png │ │ │ └── side_nav_bar.xml │ │ │ ├── layout │ │ │ ├── activity_geocode_route.xml │ │ │ ├── app_bar_geocode_route.xml │ │ │ ├── content_geocode_route.xml │ │ │ ├── nav_header_geocode_route.xml │ │ │ └── searchview.xml │ │ │ ├── menu │ │ │ └── activity_geocode_route_drawer.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── GeotriggerMonitoring │ ├── CONTRIBUTING.md │ ├── GeotriggerMonitoringDemo-WithGeotriggers │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgisruntime │ │ │ │ └── sample │ │ │ │ └── geotriggermonitoringdemo │ │ │ │ ├── GeotriggerApplication.kt │ │ │ │ ├── di │ │ │ │ └── DatabaseModule.kt │ │ │ │ ├── domain │ │ │ │ ├── GeotriggerInteractor.kt │ │ │ │ ├── GeotriggerMonitoringService.kt │ │ │ │ └── PointOfInterestInteractor.kt │ │ │ │ ├── model │ │ │ │ ├── MapDatabase.kt │ │ │ │ ├── MapRepository.kt │ │ │ │ ├── PointOfInterest.kt │ │ │ │ └── PointOfInterestDao.kt │ │ │ │ └── view │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MapFragment.kt │ │ │ │ └── MapViewModel.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── map_fragment.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle │ ├── GeotriggerMonitoringDemo-WithoutGeotriggers │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgisruntime │ │ │ │ └── sample │ │ │ │ └── geotriggermonitoringdemo │ │ │ │ ├── GeotriggerApplication.kt │ │ │ │ ├── di │ │ │ │ └── DatabaseModule.kt │ │ │ │ ├── domain │ │ │ │ └── PointOfInterestInteractor.kt │ │ │ │ ├── model │ │ │ │ ├── MapDatabase.kt │ │ │ │ ├── MapRepository.kt │ │ │ │ ├── PointOfInterest.kt │ │ │ │ └── PointOfInterestDao.kt │ │ │ │ └── view │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── MapFragment.kt │ │ │ │ └── MapViewModel.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── map_fragment.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle │ ├── README.md │ ├── android-geotrigger-monitoring-demo.png │ └── license.txt ├── java-demos └── java-maven-callout │ ├── .gitignore │ ├── README.md │ ├── callout-app.png │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── com │ │ └── esri │ │ └── arcgisruntime │ │ └── example │ │ └── App.java │ └── test │ └── java │ └── com │ └── esri │ └── arcgisruntime │ └── example │ └── AppTest.java ├── kotlin-demos ├── MobleMapPackage │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin │ │ │ └── com │ │ │ │ └── esri │ │ │ │ └── arcgisrutime │ │ │ │ └── demo │ │ │ │ └── moblemappackage │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── config.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── open-mmpk.png │ └── settings.gradle ├── WebTiledLayerKt │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── esri │ │ │ │ └── arcgisruntime │ │ │ │ └── demos │ │ │ │ └── webtiledlayerkt │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_home_black_24dp.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_looks_3_black_24dp.xml │ │ │ ├── ic_looks_one_black_24dp.xml │ │ │ └── ic_looks_two_black_24dp.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── menu │ │ │ └── navigation.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── web-tiled-layer.png └── change-basemaps │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ ├── change-basemaps.png │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── proguard-rules.pro │ └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── esri │ │ └── arcgisruntime │ │ └── sample │ │ └── switchbasemaps │ │ └── MainActivity.kt │ └── res │ ├── layout │ └── activity_main.xml │ ├── menu │ └── menu_main.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── license.txt /.gitignore: -------------------------------------------------------------------------------- 1 | # Local configuration file (sdk path, etc) 2 | local.properties 3 | .gradle/ 4 | 5 | # Directories # 6 | /bin/ 7 | gen/ 8 | libs/ 9 | out/ 10 | arcgis-java-sdk-100.0.0/ 11 | data/ 12 | 13 | # Intellij project files 14 | *.ipr 15 | *.iml 16 | .idea/ 17 | build/ 18 | 19 | # Eclipse # 20 | .project 21 | .classpath 22 | .factorypath 23 | .project 24 | .settings 25 | eclipsebin 26 | 27 | # SublimeText 28 | /*.sublime-project 29 | *.sublime-workspace 30 | 31 | # Star UML project files 32 | *.mdj 33 | 34 | # Profiling 35 | captures/ 36 | 37 | # OS generated files # 38 | ###################### 39 | .DS_Store 40 | .DS_Store? 41 | ._* 42 | .Spotlight-V100 43 | .Trashes 44 | Icon? 45 | ehthumbs.db 46 | Thumbs.db 47 | -------------------------------------------------------------------------------- /2015-DS/.gitignore: -------------------------------------------------------------------------------- 1 | # generated files 2 | /build 3 | 4 | # OS generated files # 5 | ###################### 6 | .DS_Store 7 | .DS_Store? 8 | ._* 9 | .Spotlight-V100 10 | .Trashes 11 | Icon? 12 | ehthumbs.db 13 | Thumbs.db 14 | -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/.gitignore: -------------------------------------------------------------------------------- 1 | # ArcGIS Android SDK 2 | 3 | Data/ 4 | 5 | # Local configuration file (sdk path, etc) 6 | local.properties 7 | .gradle/ 8 | 9 | # Intellij project files 10 | *.ipr 11 | *.iml 12 | .idea/ 13 | build/ 14 | libs/ 15 | 16 | # arcgis lib module 17 | arcgis-android-v10.2.4 18 | 19 | # SublimeText 20 | /*.sublime-project 21 | *.sublime-workspace 22 | 23 | # OS generated files # 24 | ###################### 25 | .DS_Store 26 | .DS_Store? 27 | ._* 28 | .Spotlight-V100 29 | .Trashes 30 | Icon? 31 | ehthumbs.db 32 | Thumbs.db 33 | -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-hdpi/ic_elevation_rise_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-hdpi/ic_elevation_rise_grey600_48dp.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-hdpi/ic_refresh_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-hdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-mdpi/dir_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-mdpi/dir_up.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-mdpi/file_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-mdpi/file_icon.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-mdpi/folder_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-mdpi/folder_icon.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-mdpi/folder_icon_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-mdpi/folder_icon_light.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-mdpi/ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-mdpi/ic_add.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-mdpi/ic_elevation_rise_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-mdpi/ic_elevation_rise_grey600_48dp.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-mdpi/ic_refresh_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-mdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xhdpi/ic_elevation_rise_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xhdpi/ic_elevation_rise_grey600_48dp.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xhdpi/ic_refresh_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xhdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxhdpi/ic_action_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxhdpi/ic_action_cancel.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxhdpi/ic_action_cancel_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxhdpi/ic_action_cancel_white.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxhdpi/ic_elevation_rise_black600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxhdpi/ic_elevation_rise_black600_48dp.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxhdpi/ic_elevation_rise_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxhdpi/ic_elevation_rise_grey600_48dp.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxhdpi/ic_elevation_rise_white600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxhdpi/ic_elevation_rise_white600_48dp.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxhdpi/ic_refresh_black600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxhdpi/ic_refresh_black600_48dp.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxhdpi/ic_refresh_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxhdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxhdpi/ic_refresh_white600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxhdpi/ic_refresh_white600_48dp.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxxhdpi/ic_elevation_rise_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxxhdpi/ic_elevation_rise_grey600_48dp.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/drawable-xxxhdpi/ic_refresh_grey600_48dp.png -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF9800 4 | #F57C00 5 | #FF4081 6 | #ffffff 7 | #727272 8 | 9 | -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/DevSummitDemo/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8dp 4 | 9dp 5 | 56dp 6 | 40dp 7 | 24dp 8 | 9 | -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/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:1.1.0' 8 | } 9 | } 10 | 11 | allprojects { 12 | repositories { 13 | jcenter() 14 | maven { 15 | url 'http://dl.bintray.com/esri/arcgis' 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/DevSummitDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 10 15:27:10 PDT 2013 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip 7 | -------------------------------------------------------------------------------- /2015-DS/DevSummitDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':DevSummitDemo' 2 | -------------------------------------------------------------------------------- /2015-DS/GlassSample/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | .DS_Store 4 | /build 5 | .idea/ 6 | *.iml 7 | gradle.properties 8 | /app/libs 9 | /app/*.iml 10 | /app/src/main/jniLibs 11 | /app/common_src 12 | /app/common_geometry 13 | /app/android_src 14 | /app/src/androidTest 15 | -------------------------------------------------------------------------------- /2015-DS/GlassSample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /2015-DS/GlassSample/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/mich6984/Development/android-sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /2015-DS/GlassSample/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/GlassSample/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/GlassSample/app/src/main/res/drawable-hdpi/ic_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/GlassSample/app/src/main/res/drawable-hdpi/ic_stop.png -------------------------------------------------------------------------------- /2015-DS/GlassSample/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/GlassSample/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/GlassSample/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/GlassSample/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/GlassSample/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/GlassSample/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/GlassSample/app/src/main/res/layout/livecard_textview.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /2015-DS/GlassSample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | GlassMaps 3 | show me a map 4 | stop 5 | Esri Maps 6 | 7 | -------------------------------------------------------------------------------- /2015-DS/GlassSample/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 12 | 13 | -------------------------------------------------------------------------------- /2015-DS/GlassSample/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.0.1' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /2015-DS/GlassSample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/GlassSample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /2015-DS/GlassSample/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Feb 18 12:58:05 PST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip 7 | -------------------------------------------------------------------------------- /2015-DS/GlassSample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/Screenshot_GeofenceAlerts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/Screenshot_GeofenceAlerts.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/shellygill/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-hdpi/drawable/geofence_bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-hdpi/drawable/geofence_bright.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_action_location_searching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_action_location_searching.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_action_place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_action_place.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_fence_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_fence_simple.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_geofence_bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_geofence_bright.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-hdpi/sdk_gps_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-hdpi/sdk_gps_navigation.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_action_location_searching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_action_location_searching.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_action_place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_action_place.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_fence_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_fence_simple.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_geofence_bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_geofence_bright.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-mdpi/sdk_gps_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-mdpi/sdk_gps_navigation.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_action_location_searching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_action_location_searching.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_action_place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_action_place.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_fence_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_fence_simple.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_geofence_bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_geofence_bright.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/sdk_gps_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/sdk_gps_navigation.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_action_location_searching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_action_location_searching.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_action_place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_action_place.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_fence_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_fence_simple.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_geofence_bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_geofence_bright.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/sdk_gps_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/sdk_gps_navigation.png -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/menu/menu_list.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #66000000 4 | 5 | #2196f3 6 | #1976D2 7 | #a5d6a7 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8dp 4 | 8dp 5 | 16dp 6 | 16dp 7 | 32dp 8 | 9 | -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.0.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | maven { 19 | url 'http://dl.bintray.com/esri/arcgis' 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/LocalGeofence/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 10 15:27:10 PDT 2013 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip 7 | -------------------------------------------------------------------------------- /2015-DS/LocalGeofence/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | 9 | # StarUML diagram files 10 | *.mdj 11 | -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/BasemapsActivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/MaterialBaseMaps/BasemapsActivity.png -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/MapActivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/MaterialBaseMaps/MapActivity.png -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/TypeHierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/MaterialBaseMaps/TypeHierarchy.png -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.0.1/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/drawable/fab_ripple.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-hdpi/ic_action_location_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-hdpi/ic_action_location_found.png -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-hdpi/ic_action_location_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-hdpi/ic_action_location_off.png -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-mdpi/ic_action_location_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-mdpi/ic_action_location_found.png -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-mdpi/ic_action_location_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-mdpi/ic_action_location_off.png -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-xhdpi/ic_action_location_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-xhdpi/ic_action_location_found.png -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-xhdpi/ic_action_location_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-xhdpi/ic_action_location_off.png -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-xxhdpi/ic_action_location_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-xxhdpi/ic_action_location_found.png -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-xxhdpi/ic_action_location_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-xxhdpi/ic_action_location_off.png -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/MaterialBaseMaps/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/transition/title_transition.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #2196F3 4 | #0D47A1 5 | #BBDEFB 6 | #ffc400 7 | #D9FFFFFF 8 | #D9000000 9 | #88101010 10 | -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8dp 4 | 8dp 5 | 6 | 5dp 7 | 8dp 8 | 20dp 9 | 10 | 56dp 11 | 4dp 12 | 16dp 13 | 16dp 14 | 15 | -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ArcGIS Basemaps 3 | 4 | Basemap Thumbnail 5 | Turn GPS on/off 6 | Accessing location not available because FINE LOCATION permission was denied. 7 | 8 | 9 | http://www.arcgis.com 10 | 11 | -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/app/src/main/res/xml/backup_descriptor.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.3.0-beta2' 9 | } 10 | } 11 | 12 | allprojects { 13 | repositories { 14 | jcenter() 15 | maven { 16 | url 'https://esri.bintray.com/arcgis' 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/MaterialBaseMaps/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Jan 17 16:29:36 PST 2017 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-3.3-all.zip 7 | -------------------------------------------------------------------------------- /2015-DS/MaterialBaseMaps/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /2015-DS/TrafficApp/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | -------------------------------------------------------------------------------- /2015-DS/TrafficApp/RedlandsTrafficApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/RedlandsTrafficApp.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/will6489/Tools/android-sdk-mac_x86/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/androidTest/java/runtime/esri/com/trafficapp/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package runtime.esri.com.trafficapp; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-hdpi/fab_ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-hdpi/fab_ic_add.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-hdpi/ic_action_ic_grid_on_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-hdpi/ic_action_ic_grid_on_24px.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-hdpi/ic_action_ic_history_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-hdpi/ic_action_ic_history_24px.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-hdpi/ic_action_ic_menu_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-hdpi/ic_action_ic_menu_24px.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-hdpi/ic_action_ic_search_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-hdpi/ic_action_ic_search_24px.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-mdpi/fab_ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-mdpi/fab_ic_add.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-mdpi/ic_action_ic_grid_on_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-mdpi/ic_action_ic_grid_on_24px.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-mdpi/ic_action_ic_history_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-mdpi/ic_action_ic_history_24px.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-mdpi/ic_action_ic_menu_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-mdpi/ic_action_ic_menu_24px.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-mdpi/ic_action_ic_search_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-mdpi/ic_action_ic_search_24px.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-xhdpi/fab_ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-xhdpi/fab_ic_add.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-xhdpi/ic_action_ic_grid_on_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-xhdpi/ic_action_ic_grid_on_24px.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-xhdpi/ic_action_ic_history_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-xhdpi/ic_action_ic_history_24px.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-xhdpi/ic_action_ic_menu_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-xhdpi/ic_action_ic_menu_24px.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-xhdpi/ic_action_ic_search_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-xhdpi/ic_action_ic_search_24px.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-xxhdpi/fab_ic_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-xxhdpi/fab_ic_add.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-xxhdpi/ic_action_ic_grid_on_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-xxhdpi/ic_action_ic_grid_on_24px.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-xxhdpi/ic_action_ic_history_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-xxhdpi/ic_action_ic_history_24px.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-xxhdpi/ic_action_ic_menu_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-xxhdpi/ic_action_ic_menu_24px.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-xxhdpi/ic_action_ic_search_24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-xxhdpi/ic_action_ic_search_24px.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable/corners.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable/layout_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable/redlands.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable/redlands.jpg -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/drawable/redlandsorange.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/app/src/main/res/drawable/redlandsorange.jpg -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/layout/list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 11 | 17 | 18 | -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/layout/test.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | 15 | 16 | -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #009688 4 | #00796B 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 80dp 6 | 16dp 7 | 16dp 8 | 1dp 9 | 8dp 10 | 24dp 11 | 8dp 12 | 64dp 13 | 14 | 15 | -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | TrafficApp 5 | Redlands, CA 6 | Looking good for a wednesday... 7 | Settings 8 | Incidents 9 | Search for a new location 10 | http://geobrew.maps.arcgis.com/home/item.html?id=d3c8d8a876ac4e8bbf8510b9572ccc7f 11 | 12 | 13 | -------------------------------------------------------------------------------- /2015-DS/TrafficApp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /2015-DS/TrafficApp/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.0.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | maven { 19 | url 'http://dl.bintray.com/esri/arcgis' 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /2015-DS/TrafficApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/TrafficApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /2015-DS/TrafficApp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 10 15:27:10 PDT 2013 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip 7 | -------------------------------------------------------------------------------- /2015-DS/TrafficApp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /2015-DS/WearControl/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | -------------------------------------------------------------------------------- /2015-DS/WearControl/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.0.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /2015-DS/WearControl/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/WearControl/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /2015-DS/WearControl/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 10 15:27:10 PDT 2013 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip 7 | -------------------------------------------------------------------------------- /2015-DS/WearControl/mobile/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /2015-DS/WearControl/mobile/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/mich6984/Development/android-sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /2015-DS/WearControl/mobile/src/androidTest/java/com/esri/arcgisruntime/wearcontrol/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.esri.arcgisruntime.wearcontrol; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /2015-DS/WearControl/mobile/src/main/java/com/esri/arcgisruntime/wearcontrol/WearConnectionCallbacks.java: -------------------------------------------------------------------------------- 1 | ../../../../../../../../wear/src/main/java/com/esri/arcgisruntime/wearcontrol/WearConnectionCallbacks.java -------------------------------------------------------------------------------- /2015-DS/WearControl/mobile/src/main/java/com/esri/arcgisruntime/wearcontrol/WearConnectionFailedListener.java: -------------------------------------------------------------------------------- 1 | ../../../../../../../../wear/src/main/java/com/esri/arcgisruntime/wearcontrol/WearConnectionFailedListener.java -------------------------------------------------------------------------------- /2015-DS/WearControl/mobile/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/WearControl/mobile/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/WearControl/mobile/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/WearControl/mobile/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/WearControl/mobile/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/WearControl/mobile/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/WearControl/mobile/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/WearControl/mobile/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/WearControl/mobile/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /2015-DS/WearControl/mobile/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /2015-DS/WearControl/mobile/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /2015-DS/WearControl/mobile/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | WearControl 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /2015-DS/WearControl/mobile/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /2015-DS/WearControl/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':mobile', ':wear' 2 | -------------------------------------------------------------------------------- /2015-DS/WearControl/wear/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /2015-DS/WearControl/wear/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/mich6984/Development/android-sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /2015-DS/WearControl/wear/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/WearControl/wear/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/WearControl/wear/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/WearControl/wear/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/WearControl/wear/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/WearControl/wear/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/WearControl/wear/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/WearControl/wear/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/WearControl/wear/src/main/res/drawable/rect_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /2015-DS/WearControl/wear/src/main/res/drawable/round_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 7 | 8 | -------------------------------------------------------------------------------- /2015-DS/WearControl/wear/src/main/res/layout/rect_activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | -------------------------------------------------------------------------------- /2015-DS/WearControl/wear/src/main/res/layout/round_activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | -------------------------------------------------------------------------------- /2015-DS/WearControl/wear/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | WearControl 5 | Hello Round World! 6 | Hello Square World! 7 | 8 | 9 | -------------------------------------------------------------------------------- /2015-DS/WearControl/wear/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /2015-DS/wear-offline/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.0.1' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | maven { 19 | url 'http://dl.bintray.com/esri/arcgis' 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /2015-DS/wear-offline/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/wear-offline/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /2015-DS/wear-offline/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Feb 18 13:14:21 PST 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip 7 | -------------------------------------------------------------------------------- /2015-DS/wear-offline/mobile/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /2015-DS/wear-offline/mobile/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | 3 | android { 4 | compileSdkVersion 21 5 | buildToolsVersion "21.1.2" 6 | 7 | defaultConfig { 8 | applicationId "com.esri.test.wearsample" 9 | minSdkVersion 15 10 | targetSdkVersion 21 11 | versionCode 1 12 | versionName "1.0" 13 | } 14 | buildTypes { 15 | release { 16 | minifyEnabled false 17 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 18 | } 19 | } 20 | } 21 | 22 | dependencies { 23 | // compile fileTree(dir: 'libs', include: ['*.jar']) 24 | wearApp project(':wear') 25 | compile 'com.google.android.gms:play-services:+' 26 | } 27 | -------------------------------------------------------------------------------- /2015-DS/wear-offline/mobile/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/mich6984/Development/android-sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /2015-DS/wear-offline/mobile/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/wear-offline/mobile/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/wear-offline/mobile/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/wear-offline/mobile/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/wear-offline/mobile/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/wear-offline/mobile/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/wear-offline/mobile/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/wear-offline/mobile/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/wear-offline/mobile/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 4 | 8 | 9 | -------------------------------------------------------------------------------- /2015-DS/wear-offline/mobile/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | -------------------------------------------------------------------------------- /2015-DS/wear-offline/mobile/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /2015-DS/wear-offline/mobile/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /2015-DS/wear-offline/mobile/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | WearSample 5 | Hello world! 6 | Settings 7 | 8 | 9 | -------------------------------------------------------------------------------- /2015-DS/wear-offline/mobile/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /2015-DS/wear-offline/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':mobile', ':wear' 2 | -------------------------------------------------------------------------------- /2015-DS/wear-offline/wear/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /2015-DS/wear-offline/wear/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/mich6984/Development/android-sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /2015-DS/wear-offline/wear/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/wear-offline/wear/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/wear-offline/wear/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/wear-offline/wear/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/wear-offline/wear/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/wear-offline/wear/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/wear-offline/wear/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-DS/wear-offline/wear/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-DS/wear-offline/wear/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 13 | 14 | -------------------------------------------------------------------------------- /2015-DS/wear-offline/wear/src/main/res/layout/callout.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 16 | 17 | -------------------------------------------------------------------------------- /2015-DS/wear-offline/wear/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | WearSample 5 | Hello Round World! 6 | Hello Square World! 7 | 8 | your client id 9 | your license string 10 | 11 | 12 | -------------------------------------------------------------------------------- /2015-DS/wear-offline/wear/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | -------------------------------------------------------------------------------- /2015-EDS/DeviceLocation/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /2015-EDS/DeviceLocation/DeviceLocation_demo_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-EDS/DeviceLocation/DeviceLocation_demo_screenshot.png -------------------------------------------------------------------------------- /2015-EDS/DeviceLocation/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.1.2' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | maven { 19 | url 'https://esri.bintray.com/arcgis/' 20 | } 21 | } 22 | } 23 | 24 | task clean(type: Delete) { 25 | delete rootProject.buildDir 26 | } 27 | -------------------------------------------------------------------------------- /2015-EDS/DeviceLocation/device-location/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /2015-EDS/DeviceLocation/device-location/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-EDS/DeviceLocation/device-location/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-EDS/DeviceLocation/device-location/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-EDS/DeviceLocation/device-location/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-EDS/DeviceLocation/device-location/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-EDS/DeviceLocation/device-location/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-EDS/DeviceLocation/device-location/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-EDS/DeviceLocation/device-location/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-EDS/DeviceLocation/device-location/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-EDS/DeviceLocation/device-location/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-EDS/DeviceLocation/device-location/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | > 2 | 8 | 9 | -------------------------------------------------------------------------------- /2015-EDS/DeviceLocation/device-location/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /2015-EDS/DeviceLocation/device-location/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | #43A047 7 | #E53935 8 | 9 | -------------------------------------------------------------------------------- /2015-EDS/DeviceLocation/device-location/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /2015-EDS/DeviceLocation/device-location/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | DeviceLocation 3 | Location 4 | Compasss 5 | Navigation 6 | LocationDisplayManager cannot run because location permission was denied 7 | 8 | -------------------------------------------------------------------------------- /2015-EDS/DeviceLocation/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-EDS/DeviceLocation/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /2015-EDS/DeviceLocation/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sun Jun 26 16:26:41 PDT 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.10-all.zip 7 | -------------------------------------------------------------------------------- /2015-EDS/DeviceLocation/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':device-location' 2 | -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/JumpZoom_demo_screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-EDS/JumpZoom/JumpZoom_demo_screenshot1.png -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/JumpZoom_demo_screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-EDS/JumpZoom/JumpZoom_demo_screenshot2.png -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.2.3' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | maven { 19 | url 'https://esri.bintray.com/arcgis' 20 | } 21 | } 22 | } 23 | 24 | task clean(type: Delete) { 25 | delete rootProject.buildDir 26 | } 27 | -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-EDS/JumpZoom/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Dec 07 10:04:44 CET 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 | -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/jump-zoom/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/jump-zoom/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/shellygill/Library/Android/sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/jump-zoom/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-EDS/JumpZoom/jump-zoom/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/jump-zoom/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/jump-zoom/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-EDS/JumpZoom/jump-zoom/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/jump-zoom/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-EDS/JumpZoom/jump-zoom/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/jump-zoom/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-EDS/JumpZoom/jump-zoom/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/jump-zoom/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-EDS/JumpZoom/jump-zoom/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/jump-zoom/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2015-EDS/JumpZoom/jump-zoom/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/jump-zoom/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | > 2 | 8 | 9 | -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/jump-zoom/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/jump-zoom/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #4CAF50 6 | 7 | -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/jump-zoom/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 160dp 5 | 6 | 16dp 7 | 16dp 8 | 16dp 9 | 10 | -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/jump-zoom/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | JumpZoom 3 | 4 | Open navigation drawer 5 | Close navigation drawer 6 | 7 | Choose a place 8 | ...and jump to zoom 9 | 10 | Berlin Congress Center 11 | Brandenberg Gate 12 | Neuschwanstein Castle 13 | Köln Cathedral 14 | 15 | 16 | -------------------------------------------------------------------------------- /2015-EDS/JumpZoom/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':jump-zoom' 2 | -------------------------------------------------------------------------------- /2016-DS/Geometrydemo/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | 9 | # StarUML diagram files 10 | *.mdj 11 | -------------------------------------------------------------------------------- /2016-DS/Geometrydemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /2016-DS/Geometrydemo/app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /usr/local/Cellar/android-sdk/24.3.4/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /2016-DS/Geometrydemo/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /2016-DS/Geometrydemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/Geometrydemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /2016-DS/Geometrydemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/Geometrydemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /2016-DS/Geometrydemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/Geometrydemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2016-DS/Geometrydemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/Geometrydemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2016-DS/Geometrydemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/Geometrydemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2016-DS/Geometrydemo/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /2016-DS/Geometrydemo/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /2016-DS/Geometrydemo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /2016-DS/Geometrydemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /2016-DS/Geometrydemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Geometry demo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /2016-DS/Geometrydemo/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.3.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | maven { 19 | url 'https://esri.bintray.com/arcgis' 20 | } 21 | } 22 | } 23 | 24 | task clean(type: Delete) { 25 | delete rootProject.buildDir 26 | } 27 | -------------------------------------------------------------------------------- /2016-DS/Geometrydemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/Geometrydemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /2016-DS/Geometrydemo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Mar 07 10:07:52 PST 2017 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-3.3-all.zip 7 | -------------------------------------------------------------------------------- /2016-DS/Geometrydemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/Screenshot_GeofenceAlerts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/Screenshot_GeofenceAlerts.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/drawable/geofence_bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/drawable/geofence_bright.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_action_location_searching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_action_location_searching.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_action_place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_action_place.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_add_alert_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_add_alert_white_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_fence_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_fence_simple.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_geofence_bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_geofence_bright.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_notifications_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_notifications_black_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_pause_circle_outline_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_pause_circle_outline_black_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_place_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_place_black_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_play_circle_outline_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/ic_play_circle_outline_black_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/sdk_gps_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-hdpi/sdk_gps_navigation.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_action_location_searching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_action_location_searching.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_action_place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_action_place.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_add_alert_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_add_alert_white_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_fence_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_fence_simple.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_geofence_bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_geofence_bright.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_notifications_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_notifications_black_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_pause_circle_outline_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_pause_circle_outline_black_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_place_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_place_black_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_play_circle_outline_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/ic_play_circle_outline_black_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/sdk_gps_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-mdpi/sdk_gps_navigation.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_action_location_searching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_action_location_searching.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_action_place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_action_place.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_add_alert_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_add_alert_white_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_fence_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_fence_simple.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_geofence_bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_geofence_bright.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_notifications_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_notifications_black_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_pause_circle_outline_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_pause_circle_outline_black_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_place_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_place_black_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_play_circle_outline_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/ic_play_circle_outline_black_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/sdk_gps_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xhdpi/sdk_gps_navigation.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_action_location_searching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_action_location_searching.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_action_place.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_action_place.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_add_alert_white_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_add_alert_white_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_fence_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_fence_simple.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_geofence_bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_geofence_bright.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_notifications_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_notifications_black_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_pause_circle_outline_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_pause_circle_outline_black_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_place_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_place_black_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_play_circle_outline_black_48dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/ic_play_circle_outline_black_48dp.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/sdk_gps_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/app/src/main/res/drawable-xxhdpi/sdk_gps_navigation.png -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/menu/menu_list.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #66000000 4 | 5 | #2196f3 6 | #1976D2 7 | #a5d6a7 8 | 9 | #d20b0d 10 | #8a0a0c 11 | #FF333333 12 | 13 | 14 | -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8dp 4 | 8dp 5 | 16dp 6 | 16dp 7 | 32dp 8 | 9 | -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.3.0' 9 | } 10 | } 11 | 12 | allprojects { 13 | repositories { 14 | jcenter() 15 | maven { 16 | url 'https://esri.bintray.com/arcgis' 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/LocalGeofence/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Fri Apr 01 14:45:17 PDT 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.2-all.zip 7 | -------------------------------------------------------------------------------- /2016-DS/LocalGeofence/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /2016-DS/WearCollection/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures -------------------------------------------------------------------------------- /2016-DS/WearCollection/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:2.0.0-beta6' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | 21 | task clean(type: Delete) { 22 | delete rootProject.buildDir 23 | } 24 | -------------------------------------------------------------------------------- /2016-DS/WearCollection/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/WearCollection/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /2016-DS/WearCollection/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 28 10:00:20 PST 2015 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.10-all.zip 7 | -------------------------------------------------------------------------------- /2016-DS/WearCollection/mobile/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /2016-DS/WearCollection/mobile/src/androidTest/java/com/esri/arcgisruntime/wearcollection/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.esri.arcgisruntime.wearcollection; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /2016-DS/WearCollection/mobile/src/main/res/menu/menu_collection.xml: -------------------------------------------------------------------------------- 1 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /2016-DS/WearCollection/mobile/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/WearCollection/mobile/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /2016-DS/WearCollection/mobile/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/WearCollection/mobile/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /2016-DS/WearCollection/mobile/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/WearCollection/mobile/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2016-DS/WearCollection/mobile/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/WearCollection/mobile/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2016-DS/WearCollection/mobile/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/WearCollection/mobile/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2016-DS/WearCollection/mobile/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | -------------------------------------------------------------------------------- /2016-DS/WearCollection/mobile/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /2016-DS/WearCollection/mobile/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /2016-DS/WearCollection/mobile/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /2016-DS/WearCollection/mobile/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Wear Collection 3 | Settings 4 | Add a Layer 5 | Layer name 6 | Layer URL 7 | Add 8 | Cancel 9 | 10 | -------------------------------------------------------------------------------- /2016-DS/WearCollection/mobile/src/test/java/com/esri/arcgisruntime/wearcollection/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.esri.arcgisruntime.wearcollection; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /2016-DS/WearCollection/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':mobile', ':wear' 2 | -------------------------------------------------------------------------------- /2016-DS/WearCollection/wear/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /2016-DS/WearCollection/wear/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # By default, the flags in this file are appended to flags specified 3 | # in /Users/mich6984/Development/android-sdk/tools/proguard/proguard-android.txt 4 | # You can edit the include path and order by changing the proguardFiles 5 | # directive in build.gradle. 6 | # 7 | # For more details, see 8 | # http://developer.android.com/guide/developing/tools/proguard.html 9 | 10 | # Add any project specific keep options here: 11 | 12 | # If your project uses WebView with JS, uncomment the following 13 | # and specify the fully qualified class name to the JavaScript interface 14 | # class: 15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 16 | # public *; 17 | #} 18 | -------------------------------------------------------------------------------- /2016-DS/WearCollection/wear/src/main/res/drawable/circle.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /2016-DS/WearCollection/wear/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/WearCollection/wear/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /2016-DS/WearCollection/wear/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/WearCollection/wear/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /2016-DS/WearCollection/wear/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/WearCollection/wear/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2016-DS/WearCollection/wear/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/WearCollection/wear/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /2016-DS/WearCollection/wear/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FF000000 4 | -------------------------------------------------------------------------------- /2016-DS/WearCollection/wear/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 50 4 | -------------------------------------------------------------------------------- /2016-DS/WearCollection/wear/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Wear Collection 3 | Fetching previous feature layers... 4 | Fetching feature types... 5 | Collecting new feature... 6 | Successfully collected feature! 7 | Failed to collect feature. 8 | 9 | -------------------------------------------------------------------------------- /2016-DS/java-quartz-routing-demo/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'java' 2 | apply plugin: 'application' 3 | apply plugin: 'eclipse' 4 | apply plugin: 'idea' 5 | apply plugin: 'com.esri.arcgisruntime.java' 6 | 7 | buildscript{ 8 | repositories { 9 | jcenter() 10 | maven{ 11 | url 'http://esri.bintray.com/arcgis' 12 | } 13 | } 14 | dependencies{ 15 | classpath 'com.esri.arcgisruntime:gradle-arcgis-java-plugin:0.9.0' 16 | } 17 | } 18 | 19 | run{ 20 | mainClassName = 'com.esri.arcgisruntime.demo.routing.RouteDemo' 21 | } 22 | 23 | 24 | dependencies { 25 | compile 'commons-codec:commons-codec:1.+' 26 | compile 'commons-logging:commons-logging:1.1.+' 27 | compile 'org.controlsfx:controlsfx:8.40.+' 28 | } 29 | -------------------------------------------------------------------------------- /2016-DS/java-quartz-routing-demo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/2016-DS/java-quartz-routing-demo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /2016-DS/java-quartz-routing-demo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Jul 21 09:22:43 PDT 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.13-all.zip 7 | -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/Screenshot_GeocodeAndRoute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeocodeAndRoute/Screenshot_GeocodeAndRoute.png -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeocodeAndRoute/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/app/src/main/res/drawable/ic_cancel_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/app/src/main/res/drawable/ic_subdirectory_arrow_right_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/app/src/main/res/drawable/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeocodeAndRoute/app/src/main/res/drawable/pin.png -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/app/src/main/res/drawable/pin_blank_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeocodeAndRoute/app/src/main/res/drawable/pin_blank_orange.png -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/app/src/main/res/drawable/pin_circle_blue_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeocodeAndRoute/app/src/main/res/drawable/pin_circle_blue_d.png -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- 1 | 3 | 9 | -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/app/src/main/res/menu/activity_geocode_route_drawer.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeocodeAndRoute/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeocodeAndRoute/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeocodeAndRoute/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeocodeAndRoute/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeocodeAndRoute/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FFC107 6 | #ffffff 7 | 8 | -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 160dp 5 | 6 | 16dp 7 | 16dp 8 | 16dp 9 | 10 | -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:3.0.0-alpha6' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | maven { url 'https://esri.bintray.com/arcgis' } 19 | } 20 | } 21 | 22 | task clean(type: Delete) { 23 | delete rootProject.buildDir 24 | } 25 | -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeocodeAndRoute/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Jul 18 00:16:05 EDT 2017 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-4.1-milestone-1-all.zip 7 | -------------------------------------------------------------------------------- /android-demos/GeocodeAndRoute/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Esri welcomes contributions from anyone and everyone. Please see our [guidelines for contributing](https://github.com/esri/contributing). -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | local.properties 16 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/java/com/arcgisruntime/sample/geotriggermonitoringdemo/GeotriggerApplication.kt: -------------------------------------------------------------------------------- 1 | package com.arcgisruntime.sample.geotriggermonitoringdemo 2 | 3 | import android.app.Application 4 | import dagger.hilt.android.HiltAndroidApp 5 | 6 | // Required for Hilt 7 | @HiltAndroidApp 8 | class GeotriggerApplication : Application() -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/java/com/arcgisruntime/sample/geotriggermonitoringdemo/model/MapDatabase.kt: -------------------------------------------------------------------------------- 1 | package com.arcgisruntime.sample.geotriggermonitoringdemo.model 2 | 3 | import androidx.room.Database 4 | import androidx.room.RoomDatabase 5 | 6 | @Database( 7 | entities = [PointOfInterest::class], 8 | version = 3 9 | ) 10 | abstract class MapDatabase : RoomDatabase() { 11 | abstract fun pointOfInterestDao(): PointOfInterestDao 12 | } -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/java/com/arcgisruntime/sample/geotriggermonitoringdemo/model/PointOfInterest.kt: -------------------------------------------------------------------------------- 1 | package com.arcgisruntime.sample.geotriggermonitoringdemo.model 2 | 3 | import androidx.room.Entity 4 | import androidx.room.PrimaryKey 5 | 6 | @Entity 7 | data class PointOfInterest( 8 | @PrimaryKey(autoGenerate = true) 9 | val id: Int, 10 | val pointX: Double, 11 | val pointY: Double 12 | ) 13 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Geotrigger Monitoring Demo 3 | your-api-key 4 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | buildscript { 3 | repositories { 4 | google() 5 | mavenCentral() 6 | maven { url 'https://esri.jfrog.io/artifactory/arcgis' } 7 | } 8 | dependencies { 9 | classpath "com.android.tools.build:gradle:7.0.1" 10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.20" 11 | classpath 'com.google.dagger:hilt-android-gradle-plugin:2.38.1' 12 | } 13 | } 14 | 15 | task clean(type: Delete) { 16 | delete rootProject.buildDir 17 | } -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Oct 04 09:08:16 BST 2021 2 | distributionBase=GRADLE_USER_HOME 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip 4 | distributionPath=wrapper/dists 5 | zipStorePath=wrapper/dists 6 | zipStoreBase=GRADLE_USER_HOME 7 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithGeotriggers/settings.gradle: -------------------------------------------------------------------------------- 1 | dependencyResolutionManagement { 2 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 3 | repositories { 4 | google() 5 | mavenCentral() 6 | maven { url 'https://esri.jfrog.io/artifactory/arcgis' } 7 | } 8 | } 9 | rootProject.name = "Geotrigger Monitoring Demo" 10 | include ':app' 11 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | local.properties 16 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/java/com/arcgisruntime/sample/geotriggermonitoringdemo/GeotriggerApplication.kt: -------------------------------------------------------------------------------- 1 | package com.arcgisruntime.sample.geotriggermonitoringdemo 2 | 3 | import android.app.Application 4 | import dagger.hilt.android.HiltAndroidApp 5 | 6 | // Required for Hilt 7 | @HiltAndroidApp 8 | class GeotriggerApplication : Application() -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/java/com/arcgisruntime/sample/geotriggermonitoringdemo/model/MapDatabase.kt: -------------------------------------------------------------------------------- 1 | package com.arcgisruntime.sample.geotriggermonitoringdemo.model 2 | 3 | import androidx.room.Database 4 | import androidx.room.RoomDatabase 5 | 6 | @Database( 7 | entities = [PointOfInterest::class], 8 | version = 3 9 | ) 10 | abstract class MapDatabase : RoomDatabase() { 11 | abstract fun pointOfInterestDao(): PointOfInterestDao 12 | } -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/java/com/arcgisruntime/sample/geotriggermonitoringdemo/model/PointOfInterest.kt: -------------------------------------------------------------------------------- 1 | package com.arcgisruntime.sample.geotriggermonitoringdemo.model 2 | 3 | import androidx.room.Entity 4 | import androidx.room.PrimaryKey 5 | 6 | @Entity 7 | data class PointOfInterest( 8 | @PrimaryKey(autoGenerate = true) 9 | val id: Int, 10 | val pointX: Double, 11 | val pointY: Double 12 | ) 13 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFBB86FC 4 | #FF6200EE 5 | #FF3700B3 6 | #FF03DAC5 7 | #FF018786 8 | #FF000000 9 | #FFFFFFFF 10 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Geotrigger Monitoring Demo 3 | your-api-key 4 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | buildscript { 3 | repositories { 4 | google() 5 | mavenCentral() 6 | maven { url 'https://esri.jfrog.io/artifactory/arcgis' } 7 | } 8 | dependencies { 9 | classpath "com.android.tools.build:gradle:7.0.1" 10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.20" 11 | classpath 'com.google.dagger:hilt-android-gradle-plugin:2.38.1' 12 | } 13 | } 14 | 15 | task clean(type: Delete) { 16 | delete rootProject.buildDir 17 | } -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Oct 04 09:08:16 BST 2021 2 | distributionBase=GRADLE_USER_HOME 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip 4 | distributionPath=wrapper/dists 5 | zipStorePath=wrapper/dists 6 | zipStoreBase=GRADLE_USER_HOME 7 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/GeotriggerMonitoringDemo-WithoutGeotriggers/settings.gradle: -------------------------------------------------------------------------------- 1 | dependencyResolutionManagement { 2 | repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) 3 | repositories { 4 | google() 5 | mavenCentral() 6 | maven { url 'https://esri.jfrog.io/artifactory/arcgis' } 7 | } 8 | } 9 | rootProject.name = "Geotrigger Monitoring Demo" 10 | include ':app' 11 | -------------------------------------------------------------------------------- /android-demos/GeotriggerMonitoring/android-geotrigger-monitoring-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/android-demos/GeotriggerMonitoring/android-geotrigger-monitoring-demo.png -------------------------------------------------------------------------------- /java-demos/java-maven-callout/callout-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/java-demos/java-maven-callout/callout-app.png -------------------------------------------------------------------------------- /kotlin-demos/MobleMapPackage/.gitignore: -------------------------------------------------------------------------------- 1 | # Local configuration file (sdk path, etc) 2 | local.properties 3 | .gradle/ 4 | 5 | # Intellij project files 6 | *.ipr 7 | *.iml 8 | .idea/ 9 | build/ 10 | 11 | # SublimeText 12 | /*.sublime-project 13 | *.sublime-workspace 14 | 15 | # OS generated files # 16 | ###################### 17 | .DS_Store 18 | .DS_Store? 19 | ._* 20 | .Spotlight-V100 21 | .Trashes 22 | Icon? 23 | ehthumbs.db 24 | Thumbs.db 25 | -------------------------------------------------------------------------------- /kotlin-demos/MobleMapPackage/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /kotlin-demos/MobleMapPackage/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/MobleMapPackage/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /kotlin-demos/MobleMapPackage/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/MobleMapPackage/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /kotlin-demos/MobleMapPackage/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/MobleMapPackage/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /kotlin-demos/MobleMapPackage/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/MobleMapPackage/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /kotlin-demos/MobleMapPackage/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/MobleMapPackage/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /kotlin-demos/MobleMapPackage/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #2196F3 4 | #1976D2 5 | #4CAF50 6 | 7 | -------------------------------------------------------------------------------- /kotlin-demos/MobleMapPackage/app/src/main/res/values/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | ArcGIS/samples/MapPackage 4 | Yellowstone 5 | -------------------------------------------------------------------------------- /kotlin-demos/MobleMapPackage/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Mobile Map Package 3 | Open Mobile Map Package could not open because WRITE permission was denied. 4 | 5 | -------------------------------------------------------------------------------- /kotlin-demos/MobleMapPackage/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /kotlin-demos/MobleMapPackage/build.gradle: -------------------------------------------------------------------------------- 1 | buildscript { 2 | ext.kotlin_version = '1.1.2-4' 3 | repositories { 4 | jcenter() 5 | } 6 | dependencies { 7 | classpath 'com.android.tools.build:gradle:3.0.0-alpha6' 8 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 9 | } 10 | } 11 | 12 | allprojects { 13 | repositories { 14 | jcenter() 15 | maven{ url 'https://esri.bintray.com/arcgis' } 16 | } 17 | } 18 | 19 | task clean(type: Delete) { 20 | delete rootProject.buildDir 21 | } 22 | -------------------------------------------------------------------------------- /kotlin-demos/MobleMapPackage/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/MobleMapPackage/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /kotlin-demos/MobleMapPackage/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Mon Jul 17 23:59:48 EDT 2017 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-4.1-milestone-1-all.zip 7 | -------------------------------------------------------------------------------- /kotlin-demos/MobleMapPackage/open-mmpk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/MobleMapPackage/open-mmpk.png -------------------------------------------------------------------------------- /kotlin-demos/MobleMapPackage/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/.gitignore: -------------------------------------------------------------------------------- 1 | # Local configuration file (sdk path, etc) 2 | local.properties 3 | .gradle/ 4 | 5 | # Intellij project files 6 | *.ipr 7 | *.iml 8 | .idea/ 9 | build/ 10 | 11 | # OS generated files # 12 | ###################### 13 | .DS_Store 14 | .DS_Store? 15 | ._* 16 | .Spotlight-V100 17 | .Trashes 18 | Icon? 19 | ehthumbs.db 20 | Thumbs.db -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/drawable/ic_home_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/drawable/ic_looks_3_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/drawable/ic_looks_one_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/drawable/ic_looks_two_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 10 | -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/WebTiledLayerKt/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #D84315 4 | #BF360C 5 | #03A9F4 6 | 7 | -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | WebTiledLayerKt 3 | Home 4 | OSM France 5 | OSM CH 6 | GSI Japan 7 | 8 | -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/WebTiledLayerKt/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sun Oct 15 17:20:20 BST 2017 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-4.1-all.zip 7 | -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /kotlin-demos/WebTiledLayerKt/web-tiled-layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/WebTiledLayerKt/web-tiled-layer.png -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/README.md: -------------------------------------------------------------------------------- 1 | # Change Basemaps 2 | 3 | ![Change Basemaps App](change-basemaps.png) 4 | 5 | The Change Basemaps sample app shows how you can change basemaps from the ```ActionBar``` overflow button. You can easily add more basemaps by extending the menu items and implementing them in the ```onCreateOptionsMenu``` and ```onOptionsItemSelected``` methods. 6 | 7 | ## Features 8 | * Map 9 | * MapView 10 | * Basemap 11 | * ViewPoint 12 | 13 | ## Sample Design 14 | The ```ActionBar``` overflow button lists a group of basemaps to choose from. The basemaps types are created from the ```Basemap``` class and passed to the ```Map```. 15 | -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/change-basemaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/change-basemaps/change-basemaps.png -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/change-basemaps/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Jul 18 00:34:40 EDT 2017 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-4.1-milestone-1-all.zip 7 | -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/change-basemaps/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/change-basemaps/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/change-basemaps/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/change-basemaps/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/change-basemaps/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/change-basemaps/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/change-basemaps/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/change-basemaps/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/change-basemaps/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-runtime-demos-android/7b461402a86efc53f9ca1519f95110c84cd154aa/kotlin-demos/change-basemaps/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #2196F3 4 | #1976D2 5 | #BBDEFB 6 | #4CAF50 7 | 8 | -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Change Basemaps 3 | 4 | Streets 5 | Topographic 6 | Gray 7 | Oceans 8 | 9 | -------------------------------------------------------------------------------- /kotlin-demos/change-basemaps/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | --------------------------------------------------------------------------------