├── .gitignore ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── bom └── build.gradle.kts ├── ci ├── common.sh ├── publish.sh └── run_gradle_task.sh ├── doc ├── README.md ├── general │ ├── design_patterns.md │ └── developer_setup.md ├── release │ └── release_process.md └── testing │ └── testing_strategy.md ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── kdoc └── build.gradle.kts ├── lint.xml ├── microapps ├── .gitignore ├── ArFlyoverApp │ ├── .gitignore │ ├── ArFlyoverApp-screenshot1.png │ ├── ArFlyoverApp-screenshot2.png │ ├── ArFlyoverApp-screenshot3.png │ ├── README.md │ └── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── arcgismaps │ │ │ └── toolkit │ │ │ └── arflyoverapp │ │ │ ├── MainActivity.kt │ │ │ ├── PointOfInterest.kt │ │ │ ├── screens │ │ │ └── MainScreen.kt │ │ │ └── ui │ │ │ └── theme │ │ │ └── Color.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml ├── ArTabletopApp │ ├── .gitignore │ ├── README.md │ └── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── arcgismaps │ │ │ └── toolkit │ │ │ └── artabletopapp │ │ │ ├── MainActivity.kt │ │ │ ├── screens │ │ │ └── MainScreen.kt │ │ │ └── ui │ │ │ └── theme │ │ │ └── Color.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml ├── ArWorldScaleApp │ ├── .gitignore │ ├── README.md │ └── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── arcgismaps │ │ │ └── toolkit │ │ │ └── arworldscaleapp │ │ │ ├── MainActivity.kt │ │ │ ├── screens │ │ │ └── MainScreen.kt │ │ │ └── ui │ │ │ └── theme │ │ │ └── Color.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── baseline_straighten_24.xml │ │ └── ic_launcher_background.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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml ├── AuthenticationApp │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgismaps │ │ │ │ └── toolkit │ │ │ │ └── authenticationapp │ │ │ │ ├── AuthenticationAppViewModel.kt │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.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 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ └── screenshot.png ├── BasemapGalleryApp │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgismaps │ │ │ │ └── toolkit │ │ │ │ └── basemapgalleryapp │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── ViewModel.kt │ │ │ │ ├── screens │ │ │ │ └── MainScreen.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ └── Color.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.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 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ └── screenshot.png ├── CompassApp │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgismaps │ │ │ │ └── toolkit │ │ │ │ └── compassapp │ │ │ │ ├── MainActivity.kt │ │ │ │ └── screens │ │ │ │ └── MainScreen.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.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 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ └── screenshot.jpg ├── FeatureFormsApp │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgismaps │ │ │ │ └── toolkit │ │ │ │ └── featureformsapp │ │ │ │ ├── FeatureFormApplication.kt │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── data │ │ │ │ ├── PortalItemRepository.kt │ │ │ │ ├── PortalSettings.kt │ │ │ │ ├── local │ │ │ │ │ ├── ItemCacheDao.kt │ │ │ │ │ ├── ItemData.kt │ │ │ │ │ └── UrlHistoryDao.kt │ │ │ │ └── network │ │ │ │ │ └── ItemRemoteDataSource.kt │ │ │ │ ├── di │ │ │ │ ├── CoroutinesModule.kt │ │ │ │ ├── DataModule.kt │ │ │ │ └── PersistenceModule.kt │ │ │ │ ├── navigation │ │ │ │ └── Navigator.kt │ │ │ │ ├── screens │ │ │ │ ├── bottomsheet │ │ │ │ │ ├── BottomSheetScaffold.kt │ │ │ │ │ ├── InternalMutatorMutex.kt │ │ │ │ │ ├── SheetDefaults.kt │ │ │ │ │ ├── SheetLayout.kt │ │ │ │ │ ├── Strings.kt │ │ │ │ │ └── SwipeableV2.kt │ │ │ │ ├── browse │ │ │ │ │ ├── AsyncImage.kt │ │ │ │ │ ├── MapListScreen.kt │ │ │ │ │ └── MapListViewModel.kt │ │ │ │ ├── login │ │ │ │ │ ├── LoginScreen.kt │ │ │ │ │ └── LoginViewModel.kt │ │ │ │ └── map │ │ │ │ │ ├── AddFeatureSheet.kt │ │ │ │ │ ├── MapScreen.kt │ │ │ │ │ └── MapViewModel.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_default_map.xml │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_topographic_map.jpeg │ │ │ ├── ic_world.xml │ │ │ ├── icon_history.xml │ │ │ └── icon_restore.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 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ ├── screenshot2.png │ └── screenshot3.png ├── FloorFilterApp │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgismaps │ │ │ │ └── toolkit │ │ │ │ └── floorfilterapp │ │ │ │ ├── MainActivity.kt │ │ │ │ └── screens │ │ │ │ ├── FloorFilterViewModel.kt │ │ │ │ └── MainScreen.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.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 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ └── screenshots │ │ ├── facilityfilter.png │ │ ├── facilityselector.png │ │ ├── floorselector.png │ │ ├── sitebutton.png │ │ ├── sitefilter.png │ │ └── siteselector.png ├── LegendApp │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgismaps │ │ │ │ └── toolkit │ │ │ │ └── legendapp │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── screens │ │ │ │ ├── LegendViewModel.kt │ │ │ │ └── MainScreen.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ └── Color.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.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 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ └── screenshot.png ├── MapViewCalloutApp │ ├── .gitignore │ ├── README.md │ └── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── arcgismaps │ │ │ └── toolkit │ │ │ └── mapviewcalloutapp │ │ │ ├── MainActivity.kt │ │ │ └── screens │ │ │ ├── FeatureScreen.kt │ │ │ ├── MainScreen.kt │ │ │ ├── MapViewModel.kt │ │ │ └── TapLocationScreen.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml ├── MapViewGeometryEditorApp │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgismaps │ │ │ │ └── toolkit │ │ │ │ └── mapviewgeometryeditorapp │ │ │ │ ├── MainActivity.kt │ │ │ │ └── screens │ │ │ │ └── MainScreen.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.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 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ └── screenshot.png ├── MapViewIdentifyApp │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgismaps │ │ │ │ └── toolkit │ │ │ │ └── mapviewidentifyapp │ │ │ │ ├── MainActivity.kt │ │ │ │ └── screens │ │ │ │ ├── IdentifyViewModel.kt │ │ │ │ └── MainScreen.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.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 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ └── screenshot.png ├── MapViewInsetsApp │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgismaps │ │ │ │ └── toolkit │ │ │ │ └── mapviewinsetsapp │ │ │ │ ├── MainActivity.kt │ │ │ │ └── screens │ │ │ │ └── MainScreen.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.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 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ └── screenshot.png ├── MapViewLocationDisplayApp │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgismaps │ │ │ │ └── toolkit │ │ │ │ └── mapviewlocationdisplayapp │ │ │ │ ├── MainActivity.kt │ │ │ │ └── screens │ │ │ │ └── MainScreen.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.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 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ └── screenshot.png ├── MapViewSetViewpointApp │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgismaps │ │ │ │ └── toolkit │ │ │ │ └── mapviewsetviewpointapp │ │ │ │ ├── MainActivity.kt │ │ │ │ └── screens │ │ │ │ └── MainScreen.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.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 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ └── screenshot.png ├── MicroappsLib │ ├── .gitignore │ ├── build.gradle.kts │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── esri │ │ └── microappslib │ │ └── theme │ │ ├── Color.kt │ │ └── Theme.kt ├── OfflineMapAreasApp │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgismaps │ │ │ │ └── toolkit │ │ │ │ └── offlinemapareasapp │ │ │ │ ├── MainActivity.kt │ │ │ │ └── screens │ │ │ │ ├── MainScreen.kt │ │ │ │ └── OfflineViewModel.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.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 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ ├── microapp_screenshot.png │ ├── offline_map_screenshot.png │ └── open_map_screenshot.png ├── OverviewMapApp │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgismaps │ │ │ │ └── toolkit │ │ │ │ └── overviewmapapp │ │ │ │ ├── MainActivity.kt │ │ │ │ ├── ViewModel.kt │ │ │ │ ├── screens │ │ │ │ └── MainScreen.kt │ │ │ │ └── ui │ │ │ │ └── theme │ │ │ │ └── Color.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.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 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ └── screenshot.png ├── PopupApp │ ├── .gitignore │ ├── README.md │ └── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── arcgismaps │ │ │ └── toolkit │ │ │ └── popupapp │ │ │ ├── MainActivity.kt │ │ │ ├── screens │ │ │ └── mapscreen │ │ │ │ ├── MainScreen.kt │ │ │ │ └── MapViewModel.kt │ │ │ └── ui │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml ├── ScalebarApp │ ├── .gitignore │ ├── README.md │ └── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── arcgismaps │ │ │ └── toolkit │ │ │ └── scalebarapp │ │ │ ├── MainActivity.kt │ │ │ ├── screens │ │ │ └── MainScreen.kt │ │ │ └── ui │ │ │ └── theme │ │ │ └── Color.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml ├── SceneViewAnalysisOverlayApp │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgismaps │ │ │ │ └── toolkit │ │ │ │ └── sceneviewanalysisoverlayapp │ │ │ │ ├── MainActivity.kt │ │ │ │ └── screens │ │ │ │ └── MainScreen.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.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 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ └── screenshot.png ├── SceneViewCalloutApp │ ├── .gitignore │ ├── README.md │ └── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── arcgismaps │ │ │ └── toolkit │ │ │ └── sceneviewcalloutapp │ │ │ ├── MainActivity.kt │ │ │ └── screens │ │ │ ├── MainScreen.kt │ │ │ └── SceneViewModel.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml ├── SceneViewCameraControllerApp │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgismaps │ │ │ │ └── toolkit │ │ │ │ └── sceneviewcameracontrollerapp │ │ │ │ ├── MainActivity.kt │ │ │ │ └── screens │ │ │ │ └── MainScreen.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.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 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ └── screenshot.png ├── SceneViewLightingOptionsApp │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgismaps │ │ │ │ └── toolkit │ │ │ │ └── sceneviewlightingoptionsapp │ │ │ │ ├── MainActivity.kt │ │ │ │ └── screens │ │ │ │ ├── DropdownMenuAlertDialog.kt │ │ │ │ ├── MainScreen.kt │ │ │ │ └── RgbaSlider.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.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 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ └── screenshot.png ├── SceneViewSetViewpointApp │ ├── .gitignore │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── arcgismaps │ │ │ │ └── toolkit │ │ │ │ └── sceneviewsetviewpointapp │ │ │ │ ├── MainActivity.kt │ │ │ │ └── screens │ │ │ │ └── MainScreen.kt │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.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 │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ └── data_extraction_rules.xml │ └── screenshot.png ├── TemplateApp │ ├── .gitignore │ └── app │ │ ├── .gitignore │ │ ├── build.gradle.kts │ │ ├── proguard-rules.pro │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── arcgismaps │ │ │ └── toolkit │ │ │ └── templateapp │ │ │ ├── MainActivity.kt │ │ │ ├── screens │ │ │ └── MainScreen.kt │ │ │ └── ui │ │ │ └── theme │ │ │ └── Color.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml └── UtilityNetworkTraceApp │ ├── .gitignore │ ├── README.md │ ├── app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── arcgismaps │ │ │ └── toolkit │ │ │ └── utilitynetworktraceapp │ │ │ ├── MainActivity.kt │ │ │ ├── screens │ │ │ ├── MainScreen.kt │ │ │ └── TraceViewModel.kt │ │ │ └── ui │ │ │ └── theme │ │ │ └── Color.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml │ └── screenshots │ ├── advancedoptions.png │ ├── startingpointproperties.png │ ├── trace.png │ ├── traceconfigs.png │ └── traceresults.png ├── new-component-starter.sh ├── new-microapp-starter.sh ├── secrets.defaults.properties ├── settings.gradle.kts ├── t9nmanifest.txt └── toolkit ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── ar ├── .gitignore ├── README.md ├── api │ └── ar.api ├── build.gradle.kts ├── consumer-rules.pro ├── flyover-screenshot.png ├── src │ ├── androidTest │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── arcgismaps │ │ │ └── toolkit │ │ │ └── ar │ │ │ ├── JoysliderTests.kt │ │ │ ├── LocationFilteringTests.kt │ │ │ ├── PeDataTests.kt │ │ │ ├── VPSAvailabilityTests.kt │ │ │ └── WorldScaleTrackingModeTests.kt │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ ├── pedata │ │ │ └── egm96.grd │ │ ├── shaders │ │ │ ├── background_show_camera.frag │ │ │ ├── background_show_camera.vert │ │ │ ├── plane.frag │ │ │ └── plane.vert │ │ └── textures │ │ │ └── trigrid.png │ │ ├── java │ │ └── com │ │ │ └── arcgismaps │ │ │ └── toolkit │ │ │ └── ar │ │ │ ├── Errors.kt │ │ │ ├── FlyoverSceneView.kt │ │ │ ├── FlyoverSceneViewProxy.kt │ │ │ ├── FlyoverSceneViewScope.kt │ │ │ ├── FlyoverSceneViewStatus.kt │ │ │ ├── TableTopSceneView.kt │ │ │ ├── TableTopSceneViewProxy.kt │ │ │ ├── TableTopSceneViewScope.kt │ │ │ ├── TableTopSceneViewStatus.kt │ │ │ ├── WorldScaleCalibrationViewColorScheme.kt │ │ │ ├── WorldScaleCalibrationViewDefaults.kt │ │ │ ├── WorldScaleCalibrationViewTypography.kt │ │ │ ├── WorldScaleSceneView.kt │ │ │ ├── WorldScaleSceneViewProxy.kt │ │ │ ├── WorldScaleSceneViewScope.kt │ │ │ ├── WorldScaleSceneViewStatus.kt │ │ │ ├── WorldScaleTrackingMode.kt │ │ │ ├── WorldScaleVpsAvailability.kt │ │ │ └── internal │ │ │ ├── ArCameraFeed.kt │ │ │ ├── ArErrorType.kt │ │ │ ├── ArHelpers.kt │ │ │ ├── ArSessionWrapper.kt │ │ │ ├── CalibrationState.kt │ │ │ ├── DefaultThemeTokens.kt │ │ │ ├── GeospatialTrackingCameraController.kt │ │ │ ├── Joyslider.kt │ │ │ ├── PeData.kt │ │ │ ├── WorldScaleCameraController.kt │ │ │ ├── WorldScaleHeadingProvider.kt │ │ │ ├── WorldTrackingCameraController.kt │ │ │ └── render │ │ │ ├── CameraFeedRenderer.kt │ │ │ ├── DebugUtil.kt │ │ │ ├── DisplayRotationHelper.kt │ │ │ ├── Framebuffer.java │ │ │ ├── GLError.java │ │ │ ├── GpuBuffer.java │ │ │ ├── IndexBuffer.java │ │ │ ├── Mesh.java │ │ │ ├── PlaneRenderer.kt │ │ │ ├── Shader.java │ │ │ ├── SurfaceDrawHandler.kt │ │ │ ├── Texture.java │ │ │ └── VertexBuffer.java │ │ └── res │ │ ├── drawable-anydpi │ │ ├── ic_action_add.xml │ │ └── ic_action_reduce.xml │ │ ├── drawable-hdpi │ │ ├── ic_action_add.png │ │ └── ic_action_reduce.png │ │ ├── drawable-mdpi │ │ ├── ic_action_add.png │ │ └── ic_action_reduce.png │ │ ├── drawable-xhdpi │ │ ├── ic_action_add.png │ │ └── ic_action_reduce.png │ │ ├── drawable-xxhdpi │ │ ├── ic_action_add.png │ │ └── ic_action_reduce.png │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-bg │ │ └── strings.xml │ │ ├── values-bs │ │ └── strings.xml │ │ ├── values-ca │ │ └── strings.xml │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-da │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-el │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-et │ │ └── strings.xml │ │ ├── values-fi │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-hr │ │ └── strings.xml │ │ ├── values-hu │ │ └── strings.xml │ │ ├── values-in │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-iw │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-ko │ │ └── strings.xml │ │ ├── values-lt │ │ └── strings.xml │ │ ├── values-lv │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-no │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-sk │ │ └── strings.xml │ │ ├── values-sl │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-th │ │ └── strings.xml │ │ ├── values-tr │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-vi │ │ └── strings.xml │ │ ├── values-zh-rHK │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values-zh │ │ └── strings.xml │ │ └── values │ │ └── strings.xml ├── tabletop-screenshot.png └── worldscale-screenshot.png ├── authentication ├── .gitignore ├── README.md ├── api │ └── authentication.api ├── build.gradle.kts ├── consumer-rules.pro ├── src │ ├── androidTest │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── arcgismaps │ │ │ └── toolkit │ │ │ └── authentication │ │ │ ├── AuthenticatorStateActivity.kt │ │ │ ├── BrowserUserLauncherTests.kt │ │ │ ├── IapAuthenticatorTest.kt │ │ │ ├── OAuthDefaultConfigurationTests.kt │ │ │ ├── OAuthUserLauncherTests.kt │ │ │ ├── ServerTrustTests.kt │ │ │ ├── TestAuthenticationUtils.kt │ │ │ ├── UiDeviceExtensions.kt │ │ │ └── UsernamePasswordTests.kt │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── arcgismaps │ │ │ └── toolkit │ │ │ └── authentication │ │ │ ├── AuthenticationActivity.kt │ │ │ ├── Authenticator.kt │ │ │ ├── AuthenticatorState.kt │ │ │ ├── ClientCertificateChallenge.kt │ │ │ ├── Extensions.kt │ │ │ ├── IapAuthenticator.kt │ │ │ ├── OAuthAuthenticator.kt │ │ │ ├── OAuthUserSignInActivity.kt │ │ │ ├── OAuthWebView.kt │ │ │ ├── ServerTrustAuthenticator.kt │ │ │ ├── ServerTrustChallenge.kt │ │ │ ├── UsernamePasswordAuthenticator.kt │ │ │ └── UsernamePasswordChallenge.kt │ │ └── res │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-bg │ │ └── strings.xml │ │ ├── values-bs │ │ └── strings.xml │ │ ├── values-ca │ │ └── strings.xml │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-da │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-el │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-et │ │ └── strings.xml │ │ ├── values-fi │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-hr │ │ └── strings.xml │ │ ├── values-hu │ │ └── strings.xml │ │ ├── values-in │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-iw │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-ko │ │ └── strings.xml │ │ ├── values-lt │ │ └── strings.xml │ │ ├── values-lv │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-no │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-sk │ │ └── strings.xml │ │ ├── values-sl │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-th │ │ └── strings.xml │ │ ├── values-tr │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-vi │ │ └── strings.xml │ │ ├── values-zh-rHK │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ ├── values-zh │ │ └── strings.xml │ │ └── values │ │ └── strings.xml └── username-password-prompt.png ├── basemapgallery ├── .gitignore ├── README.md ├── api │ └── basemapgallery.api ├── build.gradle.kts ├── consumer-rules.pro ├── screenshot.png └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── arcgismaps │ │ └── toolkit │ │ └── basemapgallery │ │ ├── BasemapGallery.kt │ │ └── BasemapGalleryItem.kt │ └── res │ └── drawable │ └── basemap.xml ├── compass ├── .gitignore ├── README.md ├── api │ └── compass.api ├── build.gradle.kts ├── consumer-rules.pro ├── screenshot.jpg └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── arcgismaps │ │ └── toolkit │ │ └── compass │ │ └── CompassTests.kt │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── arcgismaps │ │ └── toolkit │ │ └── compass │ │ └── Compass.kt │ └── res │ └── drawable │ └── ic_compass.xml ├── composable-map ├── .gitignore ├── README.md ├── build.gradle.kts ├── consumer-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── arcgismaps │ │ └── toolkit │ │ └── composablemap │ │ ├── ComposableMapTests.kt │ │ └── DuplexFlowStateTests.kt │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── arcgismaps │ │ └── toolkit │ │ └── composablemap │ │ ├── ComposableMap.kt │ │ ├── DuplexFlow.kt │ │ └── MapInterface.kt │ └── test │ └── java │ └── com │ └── arcgismaps │ └── toolkit │ └── composablemap │ └── DuplexFlowTests.kt ├── featureforms ├── .gitignore ├── README.md ├── api │ └── featureforms.api ├── build.gradle.kts ├── consumer-rules.pro ├── screenshots │ ├── attachments_form_element.png │ ├── barcode_input.png │ ├── combo_input.png │ ├── combo_picker.png │ ├── date_time_input.png │ ├── group_element_collapsed.png │ ├── group_element_expanded.png │ ├── radio_input.png │ ├── read_only.png │ ├── switch_input.png │ ├── text_area_input.png │ ├── text_form_element.png │ ├── text_input.png │ ├── ua_form_element.png │ ├── ua_network_sources.png │ └── utility_associations.png └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── arcgismaps │ │ └── toolkit │ │ └── featureforms │ │ ├── AttachmentTests.kt │ │ ├── BarcodeTests.kt │ │ ├── ComboBoxFieldTests.kt │ │ ├── DateTimeFieldTests.kt │ │ ├── FeatureFormTestRunner.kt │ │ ├── FormTextFieldNumericTests.kt │ │ ├── FormTextFieldRangeNumericTests.kt │ │ ├── FormTextFieldTests.kt │ │ ├── GroupElementTests.kt │ │ ├── ImageUtil.kt │ │ ├── RadioButtonFieldTests.kt │ │ ├── SemanticsNodeUtil.kt │ │ ├── SwitchFieldTests.kt │ │ ├── TestChallengeHandler.kt │ │ ├── TextFormElementTests.kt │ │ ├── ThemingTests.kt │ │ ├── UtilityAssociationsFormElementTests.kt │ │ └── UtilityNetworkNavigationTests.kt │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── arcgismaps │ │ └── toolkit │ │ └── featureforms │ │ ├── FeatureForm.kt │ │ ├── FeatureFormState.kt │ │ ├── internal │ │ ├── components │ │ │ ├── attachment │ │ │ │ ├── AttachmentElementState.kt │ │ │ │ ├── AttachmentErrorDialog.kt │ │ │ │ ├── AttachmentFormElement.kt │ │ │ │ ├── AttachmentFormElementDefaults.kt │ │ │ │ ├── AttachmentTile.kt │ │ │ │ ├── DeleteAttachmentDialog.kt │ │ │ │ └── RenameAttachmentDialog.kt │ │ │ ├── barcode │ │ │ │ ├── BarcodeImageAnalyzer.kt │ │ │ │ ├── BarcodeScanner.kt │ │ │ │ ├── BarcodeTextField.kt │ │ │ │ ├── BarcodeTextFieldDefaults.kt │ │ │ │ ├── BarcodeTextFieldState.kt │ │ │ │ └── TransformUtils.kt │ │ │ ├── base │ │ │ │ ├── BaseFieldState.kt │ │ │ │ ├── BaseGroupState.kt │ │ │ │ ├── BaseTextField.kt │ │ │ │ ├── BaseTextFieldDefaults.kt │ │ │ │ ├── FieldValidation.kt │ │ │ │ ├── Flows.kt │ │ │ │ ├── FormElementState.kt │ │ │ │ └── FormStateCollection.kt │ │ │ ├── codedvalue │ │ │ │ ├── CodedValueFieldState.kt │ │ │ │ ├── ComboBoxDialog.kt │ │ │ │ ├── ComboBoxField.kt │ │ │ │ ├── ComboBoxFieldState.kt │ │ │ │ ├── RadioButtonField.kt │ │ │ │ ├── RadioButtonFieldState.kt │ │ │ │ ├── SwitchField.kt │ │ │ │ └── SwitchFieldState.kt │ │ │ ├── datetime │ │ │ │ ├── DateTimeField.kt │ │ │ │ ├── DateTimeFieldState.kt │ │ │ │ ├── DateUtil.kt │ │ │ │ └── picker │ │ │ │ │ ├── DateTimePicker.kt │ │ │ │ │ ├── DateTimePickerState.kt │ │ │ │ │ ├── date │ │ │ │ │ ├── CalenderModel.kt │ │ │ │ │ ├── DateInput.kt │ │ │ │ │ ├── DatePicker.kt │ │ │ │ │ ├── DatePickerTokens.kt │ │ │ │ │ └── SnapFlingBehavior.kt │ │ │ │ │ ├── material3 │ │ │ │ │ ├── Strings.kt │ │ │ │ │ └── Tokens.kt │ │ │ │ │ └── time │ │ │ │ │ ├── TimePicker.kt │ │ │ │ │ ├── TimePickerTokens.kt │ │ │ │ │ └── TouchExplorationStateProvider.kt │ │ │ ├── dialogs │ │ │ │ └── ConfirmationDialogs.kt │ │ │ ├── formelement │ │ │ │ ├── FieldElement.kt │ │ │ │ └── GroupElement.kt │ │ │ ├── text │ │ │ │ ├── FormTextField.kt │ │ │ │ ├── FormTextFieldState.kt │ │ │ │ ├── Markdown.kt │ │ │ │ ├── TextFormElement.kt │ │ │ │ └── TextFormElementState.kt │ │ │ └── utilitynetwork │ │ │ │ ├── ContentVisibleControl.kt │ │ │ │ ├── FractionAlongEdgeControl.kt │ │ │ │ ├── UtilityAssociationDetails.kt │ │ │ │ ├── UtilityAssociations.kt │ │ │ │ ├── UtilityAssociationsElement.kt │ │ │ │ ├── UtilityAssociationsElementState.kt │ │ │ │ └── UtilityTerminalControl.kt │ │ ├── navigation │ │ │ ├── FeatureFormNavHost.kt │ │ │ ├── NavigationAction.kt │ │ │ └── NavigationRoute.kt │ │ ├── screens │ │ │ ├── ContentAwareTopBar.kt │ │ │ ├── FeatureFormScreen.kt │ │ │ ├── UNAssociationsFilterScreen.kt │ │ │ └── UNAssociationsScreen.kt │ │ └── utils │ │ │ ├── AttachmentCaptureFileProvider.kt │ │ │ ├── AttachmentsFileProvider.kt │ │ │ ├── CorePrototypes.kt │ │ │ ├── Dialog.kt │ │ │ └── Utils.kt │ │ └── theme │ │ ├── DefaultThemeTokens.kt │ │ ├── FeatureFormDefaults.kt │ │ └── FeatureFormTheme.kt │ └── res │ ├── drawable │ ├── barcode_scanner.xml │ ├── baseline_cloud_download_16.xml │ ├── baseline_cloud_download_24.xml │ ├── connection_end_left.xml │ ├── connection_end_right.xml │ ├── connection_mid.xml │ └── connection_to_connection.xml │ ├── values-ar │ └── strings.xml │ ├── values-bg │ └── strings.xml │ ├── values-bs │ └── strings.xml │ ├── values-ca │ └── strings.xml │ ├── values-cs │ └── strings.xml │ ├── values-da │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-el │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-et │ └── strings.xml │ ├── values-fi │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-hr │ └── strings.xml │ ├── values-hu │ └── strings.xml │ ├── values-in │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-iw │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-ko │ └── strings.xml │ ├── values-lt │ └── strings.xml │ ├── values-lv │ └── strings.xml │ ├── values-nl │ └── strings.xml │ ├── values-no │ └── strings.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt-rBR │ └── strings.xml │ ├── values-pt-rPT │ └── strings.xml │ ├── values-ro │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-sk │ └── strings.xml │ ├── values-sl │ └── strings.xml │ ├── values-sr │ └── strings.xml │ ├── values-sv │ └── strings.xml │ ├── values-th │ └── strings.xml │ ├── values-tr │ └── strings.xml │ ├── values-uk │ └── strings.xml │ ├── values-vi │ └── strings.xml │ ├── values-zh-rHK │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ ├── values-zh │ └── strings.xml │ ├── values │ └── strings.xml │ └── xml │ ├── feature_forms_attachments.xml │ └── feature_forms_captured_attachments.xml ├── geoview-compose ├── README.md ├── api │ └── geoview-compose.api ├── build.gradle.kts ├── mapview_screenshot.png ├── sceneview_screenshot.png ├── screenshot.png └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── arcgismaps │ │ └── toolkit │ │ └── geoviewcompose │ │ ├── MapViewProxyTests.kt │ │ ├── ViewpointPersistenceTests.kt │ │ └── callout │ │ ├── CalloutScenarios.kt │ │ └── CalloutTests.kt │ └── main │ └── java │ └── com │ └── arcgismaps │ └── toolkit │ └── geoviewcompose │ ├── GeoViewProxy.kt │ ├── GeoViewScope.kt │ ├── MapView.kt │ ├── MapViewProxy.kt │ ├── OverviewMap.kt │ ├── SceneView.kt │ ├── SceneViewProxy.kt │ ├── ViewpointPersistence.kt │ ├── samples │ └── GeoViewDocSamples.kt │ └── theme │ └── CalloutTheme.kt ├── indoors ├── .gitignore ├── README.md ├── api │ └── indoors.api ├── build.gradle.kts ├── consumer-rules.pro ├── screenshot.png └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── arcgismaps │ │ └── toolkit │ │ └── indoors │ │ └── FloorFilterTests.kt │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── arcgismaps │ │ └── toolkit │ │ └── indoors │ │ ├── FloorFilter.kt │ │ ├── FloorFilterError.kt │ │ ├── FloorFilterState.kt │ │ └── SiteAndFacilitySelector.kt │ └── res │ ├── drawable │ ├── ic_chevron_left_32.xml │ ├── ic_chevron_right_32.xml │ ├── ic_search_32.xml │ ├── ic_site_facility_24.xml │ ├── ic_x_24.xml │ └── ic_x_32.xml │ ├── values-ar │ └── strings.xml │ ├── values-bg │ └── strings.xml │ ├── values-bs │ └── strings.xml │ ├── values-ca │ └── strings.xml │ ├── values-cs │ └── strings.xml │ ├── values-da │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-el │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-et │ └── strings.xml │ ├── values-fi │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-hr │ └── strings.xml │ ├── values-hu │ └── strings.xml │ ├── values-in │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-iw │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-ko │ └── strings.xml │ ├── values-lt │ └── strings.xml │ ├── values-lv │ └── strings.xml │ ├── values-nl │ └── strings.xml │ ├── values-no │ └── strings.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt-rBR │ └── strings.xml │ ├── values-pt-rPT │ └── strings.xml │ ├── values-ro │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-sk │ └── strings.xml │ ├── values-sl │ └── strings.xml │ ├── values-sr │ └── strings.xml │ ├── values-sv │ └── strings.xml │ ├── values-th │ └── strings.xml │ ├── values-tr │ └── strings.xml │ ├── values-uk │ └── strings.xml │ ├── values-vi │ └── strings.xml │ ├── values-zh-rHK │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ ├── values-zh │ └── strings.xml │ └── values │ └── strings.xml ├── legend ├── .gitignore ├── README.md ├── api │ └── legend.api ├── build.gradle.kts ├── consumer-rules.pro ├── screenshot.png └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── arcgismaps │ │ └── toolkit │ │ └── legend │ │ ├── LegendTests.kt │ │ └── LegendUsageScenarios.kt │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── arcgismaps │ │ └── toolkit │ │ └── legend │ │ ├── Legend.kt │ │ └── theme │ │ └── Theme.kt │ └── res │ ├── values-ar │ └── strings.xml │ ├── values-bg │ └── strings.xml │ ├── values-bs │ └── strings.xml │ ├── values-ca │ └── strings.xml │ ├── values-cs │ └── strings.xml │ ├── values-da │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-el │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-et │ └── strings.xml │ ├── values-fi │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-hr │ └── strings.xml │ ├── values-hu │ └── strings.xml │ ├── values-in │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-iw │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-ko │ └── strings.xml │ ├── values-lt │ └── strings.xml │ ├── values-lv │ └── strings.xml │ ├── values-nl │ └── strings.xml │ ├── values-no │ └── strings.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt-rBR │ └── strings.xml │ ├── values-pt-rPT │ └── strings.xml │ ├── values-ro │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-sk │ └── strings.xml │ ├── values-sl │ └── strings.xml │ ├── values-sr │ └── strings.xml │ ├── values-sv │ └── strings.xml │ ├── values-th │ └── strings.xml │ ├── values-tr │ └── strings.xml │ ├── values-uk │ └── strings.xml │ ├── values-vi │ └── strings.xml │ ├── values-zh-rHK │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ ├── values-zh │ └── strings.xml │ └── values │ └── strings.xml ├── offline ├── .gitignore ├── README.md ├── api │ └── offline.api ├── build.gradle.kts ├── consumer-rules.pro ├── ondemand_screenshot.png ├── preplanned_screenshot.png └── src │ ├── androidTest │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── arcgismaps │ │ └── toolkit │ │ └── offline │ │ ├── OfflineMapAreasScenarios.kt │ │ └── OfflineMapAreasTests.kt │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── arcgismaps │ │ └── toolkit │ │ └── offline │ │ ├── OfflineMapAreaMetadata.kt │ │ ├── OfflineMapAreas.kt │ │ ├── OfflineMapInfo.kt │ │ ├── OfflineMapState.kt │ │ ├── OfflineRepository.kt │ │ ├── internal │ │ └── utils │ │ │ ├── Buttons.kt │ │ │ ├── Utils.kt │ │ │ └── ZoomLevel.kt │ │ ├── ondemand │ │ ├── OnDemandMapAreaSelector.kt │ │ ├── OnDemandMapAreas.kt │ │ └── OnDemandMapAreasState.kt │ │ ├── preplanned │ │ ├── PreplannedMapAreas.kt │ │ └── PreplannedMapAreasState.kt │ │ ├── theme │ │ └── OfflineMapAreasTheme.kt │ │ ├── ui │ │ ├── MapAreaDetailsScreen.kt │ │ ├── OfflineMapAreasStatusScreen.kt │ │ ├── gestures │ │ │ ├── AnchoredDraggable.kt │ │ │ └── InternalMutatorMutex.kt │ │ └── material3 │ │ │ ├── ModalBottomSheet.kt │ │ │ ├── SheetDefaults.kt │ │ │ └── tokens │ │ │ ├── ColorSchemeKeyTokens.kt │ │ │ ├── ElevationTokens.kt │ │ │ ├── ScrimTokens.kt │ │ │ ├── ShapeKeyTokens.kt │ │ │ └── SheetBottomTokens.kt │ │ └── workmanager │ │ ├── Constants.kt │ │ ├── OfflineURLs.kt │ │ ├── OnDemandMapAreaJobWorker.kt │ │ ├── PreplannedMapAreaJobWorker.kt │ │ ├── WorkManagerUtils.kt │ │ └── WorkerNotification.kt │ └── res │ ├── drawable │ └── download_24px.xml │ └── values │ ├── strings.xml │ └── styles.xml ├── popup ├── .gitignore ├── README.md ├── api │ └── popup.api ├── build.gradle.kts ├── consumer-rules.pro ├── screenshot.png └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── arcgismaps │ │ └── toolkit │ │ └── popup │ │ ├── Popup.kt │ │ └── internal │ │ ├── element │ │ ├── attachment │ │ │ ├── AttachmentTile.kt │ │ │ ├── AttachmentsElementDefaults.kt │ │ │ ├── AttachmentsElementState.kt │ │ │ └── AttachmentsPopupElement.kt │ │ ├── fieldselement │ │ │ ├── FieldsElementState.kt │ │ │ └── FieldsPopupElement.kt │ │ ├── media │ │ │ ├── MediaElementDefaults.kt │ │ │ ├── MediaElementState.kt │ │ │ ├── MediaPopupElement.kt │ │ │ └── MediaTile.kt │ │ ├── state │ │ │ ├── PopupElementState.kt │ │ │ └── StateCollection.kt │ │ └── textelement │ │ │ ├── TextElementState.kt │ │ │ └── TextPopupElement.kt │ │ ├── ui │ │ ├── expandablecard │ │ │ ├── ExpandableCard.kt │ │ │ ├── ExpandableCardState.kt │ │ │ └── theme │ │ │ │ ├── DefaultThemeTokens.kt │ │ │ │ ├── ExpandableCardDefaults.kt │ │ │ │ └── ExpandableCardTheme.kt │ │ └── fileviewer │ │ │ ├── FileViewer.kt │ │ │ └── ViewableFile.kt │ │ └── util │ │ └── MediaImageProvider.kt │ └── res │ ├── values-ar │ └── strings.xml │ ├── values-bg │ └── strings.xml │ ├── values-bs │ └── strings.xml │ ├── values-ca │ └── strings.xml │ ├── values-cs │ └── strings.xml │ ├── values-da │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-el │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-et │ └── strings.xml │ ├── values-fi │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-hr │ └── strings.xml │ ├── values-hu │ └── strings.xml │ ├── values-in │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-iw │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-ko │ └── strings.xml │ ├── values-lt │ └── strings.xml │ ├── values-lv │ └── strings.xml │ ├── values-nl │ └── strings.xml │ ├── values-no │ └── strings.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt-rBR │ └── strings.xml │ ├── values-pt-rPT │ └── strings.xml │ ├── values-ro │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-sk │ └── strings.xml │ ├── values-sl │ └── strings.xml │ ├── values-sr │ └── strings.xml │ ├── values-sv │ └── strings.xml │ ├── values-th │ └── strings.xml │ ├── values-tr │ └── strings.xml │ ├── values-uk │ └── strings.xml │ ├── values-vi │ └── strings.xml │ ├── values-zh-rHK │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ ├── values-zh │ └── strings.xml │ ├── values │ └── strings.xml │ └── xml │ └── files.xml ├── scalebar ├── .gitignore ├── README.md ├── api │ └── scalebar.api ├── build.gradle.kts ├── consumer-rules.pro ├── screenshot.png └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── arcgismaps │ │ └── toolkit │ │ └── scalebar │ │ ├── ScalebarComputationsTest.kt │ │ └── ScalebarTests.kt │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── arcgismaps │ └── toolkit │ └── scalebar │ ├── Scalebar.kt │ ├── ScalebarStyle.kt │ ├── internal │ ├── ScalebarDivision.kt │ ├── ScalebarProperties.kt │ ├── ScalebarRenderer.kt │ └── ScalebarUtils.kt │ └── theme │ └── ScalebarTheme.kt ├── template ├── .gitignore ├── api │ └── template.api ├── build.gradle.kts ├── consumer-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── arcgismaps │ └── toolkit │ └── template │ ├── Template.kt │ └── TemplateInterface.kt └── utilitynetworks ├── .gitignore ├── README.md ├── api └── utilitynetworks.api ├── build.gradle.kts ├── consumer-rules.pro ├── screenshot.png └── src ├── androidTest └── java │ └── com │ └── arcgismaps │ └── toolkit │ └── utilitynetworks │ ├── TraceToolTestRunner.kt │ ├── TraceToolTests.kt │ └── TraceToolUsageScenarios.kt └── main ├── AndroidManifest.xml ├── java └── com │ └── arcgismaps │ └── toolkit │ └── utilitynetworks │ ├── Trace.kt │ ├── TraceError.kt │ ├── TraceState.kt │ ├── internal │ └── util │ │ ├── AdvancedOptionsRow.kt │ │ ├── ExpandableCardWithLabel.kt │ │ ├── TabRow.kt │ │ ├── TitleRow.kt │ │ └── UpButton.kt │ └── ui │ ├── AddStartingPointScreen.kt │ ├── ClearAllResultsDialog.kt │ ├── FeatureResultsDetailsScreen.kt │ ├── StartingPointDetailsScreen.kt │ ├── StartingPointRow.kt │ ├── Text.kt │ ├── TraceColors.kt │ ├── TraceErrorDialog.kt │ ├── TraceNavigation.kt │ ├── TraceOptionsScreen.kt │ ├── TraceResultScreen.kt │ ├── expandablecard │ ├── ExpandableCard.kt │ ├── ExpandableCardState.kt │ └── theme │ │ ├── DefaultThemeTokens.kt │ │ ├── ExpandableCardDefaults.kt │ │ └── ExpandableCardTheme.kt │ ├── gestures │ ├── AnchoredDraggable.kt │ └── InternalMutatorMutex.kt │ └── material3 │ ├── ColorSchemeKeyTokens.kt │ ├── ElevationTokens.kt │ ├── ShapeKeyTokens.kt │ ├── Slider.kt │ ├── SliderTokens.kt │ └── TypographyKeyTokens.kt └── res ├── values-ar └── strings.xml ├── values-bg └── strings.xml ├── values-bs └── strings.xml ├── values-ca └── strings.xml ├── values-cs └── strings.xml ├── values-da └── strings.xml ├── values-de └── strings.xml ├── values-el └── strings.xml ├── values-es └── strings.xml ├── values-et └── strings.xml ├── values-fi └── strings.xml ├── values-fr └── strings.xml ├── values-hr └── strings.xml ├── values-hu └── strings.xml ├── values-in └── strings.xml ├── values-it └── strings.xml ├── values-iw └── strings.xml ├── values-ja └── strings.xml ├── values-ko └── strings.xml ├── values-lt └── strings.xml ├── values-lv └── strings.xml ├── values-nl └── strings.xml ├── values-no └── strings.xml ├── values-pl └── strings.xml ├── values-pt-rBR └── strings.xml ├── values-pt-rPT └── strings.xml ├── values-ro └── strings.xml ├── values-ru └── strings.xml ├── values-sk └── strings.xml ├── values-sl └── strings.xml ├── values-sr └── strings.xml ├── values-sv └── strings.xml ├── values-th └── strings.xml ├── values-tr └── strings.xml ├── values-uk └── strings.xml ├── values-vi └── strings.xml ├── values-zh-rHK └── strings.xml ├── values-zh-rTW └── strings.xml ├── values-zh └── strings.xml └── values └── strings.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /bom/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/bom/build.gradle.kts -------------------------------------------------------------------------------- /ci/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/ci/common.sh -------------------------------------------------------------------------------- /ci/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/ci/publish.sh -------------------------------------------------------------------------------- /ci/run_gradle_task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/ci/run_gradle_task.sh -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/general/design_patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/doc/general/design_patterns.md -------------------------------------------------------------------------------- /doc/general/developer_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/doc/general/developer_setup.md -------------------------------------------------------------------------------- /doc/release/release_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/doc/release/release_process.md -------------------------------------------------------------------------------- /doc/testing/testing_strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/doc/testing/testing_strategy.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/gradlew.bat -------------------------------------------------------------------------------- /kdoc/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/kdoc/build.gradle.kts -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/lint.xml -------------------------------------------------------------------------------- /microapps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/.gitignore -------------------------------------------------------------------------------- /microapps/ArFlyoverApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArFlyoverApp/.gitignore -------------------------------------------------------------------------------- /microapps/ArFlyoverApp/ArFlyoverApp-screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArFlyoverApp/ArFlyoverApp-screenshot1.png -------------------------------------------------------------------------------- /microapps/ArFlyoverApp/ArFlyoverApp-screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArFlyoverApp/ArFlyoverApp-screenshot2.png -------------------------------------------------------------------------------- /microapps/ArFlyoverApp/ArFlyoverApp-screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArFlyoverApp/ArFlyoverApp-screenshot3.png -------------------------------------------------------------------------------- /microapps/ArFlyoverApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArFlyoverApp/README.md -------------------------------------------------------------------------------- /microapps/ArFlyoverApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/ArFlyoverApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArFlyoverApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/ArFlyoverApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArFlyoverApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/ArFlyoverApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArFlyoverApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/ArFlyoverApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArFlyoverApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/ArFlyoverApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArFlyoverApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/ArFlyoverApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArFlyoverApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/ArFlyoverApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArFlyoverApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/ArFlyoverApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArFlyoverApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/ArFlyoverApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArFlyoverApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /microapps/ArTabletopApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArTabletopApp/.gitignore -------------------------------------------------------------------------------- /microapps/ArTabletopApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArTabletopApp/README.md -------------------------------------------------------------------------------- /microapps/ArTabletopApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/ArTabletopApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArTabletopApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/ArTabletopApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArTabletopApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/ArTabletopApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArTabletopApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/ArTabletopApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArTabletopApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/ArTabletopApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArTabletopApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/ArTabletopApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArTabletopApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/ArTabletopApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArTabletopApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /microapps/ArWorldScaleApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArWorldScaleApp/.gitignore -------------------------------------------------------------------------------- /microapps/ArWorldScaleApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArWorldScaleApp/README.md -------------------------------------------------------------------------------- /microapps/ArWorldScaleApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/ArWorldScaleApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArWorldScaleApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/ArWorldScaleApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArWorldScaleApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/ArWorldScaleApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArWorldScaleApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/ArWorldScaleApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArWorldScaleApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/ArWorldScaleApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArWorldScaleApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/ArWorldScaleApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArWorldScaleApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/ArWorldScaleApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ArWorldScaleApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /microapps/AuthenticationApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/AuthenticationApp/.gitignore -------------------------------------------------------------------------------- /microapps/AuthenticationApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/AuthenticationApp/README.md -------------------------------------------------------------------------------- /microapps/AuthenticationApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/AuthenticationApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/AuthenticationApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/AuthenticationApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/AuthenticationApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/AuthenticationApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/AuthenticationApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/AuthenticationApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/AuthenticationApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/AuthenticationApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/AuthenticationApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/AuthenticationApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/AuthenticationApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/AuthenticationApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/AuthenticationApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /microapps/AuthenticationApp/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/AuthenticationApp/screenshot.png -------------------------------------------------------------------------------- /microapps/BasemapGalleryApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/BasemapGalleryApp/.gitignore -------------------------------------------------------------------------------- /microapps/BasemapGalleryApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/BasemapGalleryApp/README.md -------------------------------------------------------------------------------- /microapps/BasemapGalleryApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/BasemapGalleryApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/BasemapGalleryApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/BasemapGalleryApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/BasemapGalleryApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/BasemapGalleryApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/BasemapGalleryApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/BasemapGalleryApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/BasemapGalleryApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/BasemapGalleryApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/BasemapGalleryApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/BasemapGalleryApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/BasemapGalleryApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/BasemapGalleryApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/BasemapGalleryApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /microapps/BasemapGalleryApp/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/BasemapGalleryApp/screenshot.png -------------------------------------------------------------------------------- /microapps/CompassApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/CompassApp/.gitignore -------------------------------------------------------------------------------- /microapps/CompassApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/CompassApp/README.md -------------------------------------------------------------------------------- /microapps/CompassApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/CompassApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/CompassApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/CompassApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/CompassApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/CompassApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/CompassApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/CompassApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/CompassApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/CompassApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/CompassApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/CompassApp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/CompassApp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/CompassApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/CompassApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/CompassApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/CompassApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/CompassApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/CompassApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/CompassApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/CompassApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/CompassApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/CompassApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /microapps/CompassApp/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/CompassApp/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /microapps/CompassApp/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/CompassApp/screenshot.jpg -------------------------------------------------------------------------------- /microapps/FeatureFormsApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FeatureFormsApp/.gitignore -------------------------------------------------------------------------------- /microapps/FeatureFormsApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FeatureFormsApp/README.md -------------------------------------------------------------------------------- /microapps/FeatureFormsApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/FeatureFormsApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FeatureFormsApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/FeatureFormsApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FeatureFormsApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/FeatureFormsApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FeatureFormsApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/FeatureFormsApp/app/src/main/res/drawable/ic_world.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FeatureFormsApp/app/src/main/res/drawable/ic_world.xml -------------------------------------------------------------------------------- /microapps/FeatureFormsApp/app/src/main/res/drawable/icon_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FeatureFormsApp/app/src/main/res/drawable/icon_history.xml -------------------------------------------------------------------------------- /microapps/FeatureFormsApp/app/src/main/res/drawable/icon_restore.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FeatureFormsApp/app/src/main/res/drawable/icon_restore.xml -------------------------------------------------------------------------------- /microapps/FeatureFormsApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FeatureFormsApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/FeatureFormsApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FeatureFormsApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/FeatureFormsApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FeatureFormsApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/FeatureFormsApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FeatureFormsApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /microapps/FeatureFormsApp/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FeatureFormsApp/screenshot2.png -------------------------------------------------------------------------------- /microapps/FeatureFormsApp/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FeatureFormsApp/screenshot3.png -------------------------------------------------------------------------------- /microapps/FloorFilterApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FloorFilterApp/.gitignore -------------------------------------------------------------------------------- /microapps/FloorFilterApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FloorFilterApp/README.md -------------------------------------------------------------------------------- /microapps/FloorFilterApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/FloorFilterApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FloorFilterApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/FloorFilterApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FloorFilterApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/FloorFilterApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FloorFilterApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/FloorFilterApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FloorFilterApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/FloorFilterApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FloorFilterApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/FloorFilterApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FloorFilterApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/FloorFilterApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FloorFilterApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /microapps/FloorFilterApp/screenshots/facilityfilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FloorFilterApp/screenshots/facilityfilter.png -------------------------------------------------------------------------------- /microapps/FloorFilterApp/screenshots/facilityselector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FloorFilterApp/screenshots/facilityselector.png -------------------------------------------------------------------------------- /microapps/FloorFilterApp/screenshots/floorselector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FloorFilterApp/screenshots/floorselector.png -------------------------------------------------------------------------------- /microapps/FloorFilterApp/screenshots/sitebutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FloorFilterApp/screenshots/sitebutton.png -------------------------------------------------------------------------------- /microapps/FloorFilterApp/screenshots/sitefilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FloorFilterApp/screenshots/sitefilter.png -------------------------------------------------------------------------------- /microapps/FloorFilterApp/screenshots/siteselector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/FloorFilterApp/screenshots/siteselector.png -------------------------------------------------------------------------------- /microapps/LegendApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/LegendApp/.gitignore -------------------------------------------------------------------------------- /microapps/LegendApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/LegendApp/README.md -------------------------------------------------------------------------------- /microapps/LegendApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/LegendApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/LegendApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/LegendApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/LegendApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/LegendApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/LegendApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/LegendApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/LegendApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/LegendApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/LegendApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/LegendApp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/LegendApp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/LegendApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/LegendApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/LegendApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/LegendApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/LegendApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/LegendApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/LegendApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/LegendApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/LegendApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/LegendApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/LegendApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/LegendApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /microapps/LegendApp/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/LegendApp/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /microapps/LegendApp/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/LegendApp/screenshot.png -------------------------------------------------------------------------------- /microapps/MapViewCalloutApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewCalloutApp/.gitignore -------------------------------------------------------------------------------- /microapps/MapViewCalloutApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewCalloutApp/README.md -------------------------------------------------------------------------------- /microapps/MapViewCalloutApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/MapViewCalloutApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewCalloutApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/MapViewCalloutApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewCalloutApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/MapViewCalloutApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewCalloutApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/MapViewCalloutApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewCalloutApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/MapViewCalloutApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewCalloutApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/MapViewCalloutApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewCalloutApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/MapViewCalloutApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewCalloutApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /microapps/MapViewGeometryEditorApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewGeometryEditorApp/.gitignore -------------------------------------------------------------------------------- /microapps/MapViewGeometryEditorApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewGeometryEditorApp/README.md -------------------------------------------------------------------------------- /microapps/MapViewGeometryEditorApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/MapViewGeometryEditorApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewGeometryEditorApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/MapViewGeometryEditorApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewGeometryEditorApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/MapViewGeometryEditorApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewGeometryEditorApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/MapViewGeometryEditorApp/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewGeometryEditorApp/screenshot.png -------------------------------------------------------------------------------- /microapps/MapViewIdentifyApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewIdentifyApp/.gitignore -------------------------------------------------------------------------------- /microapps/MapViewIdentifyApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewIdentifyApp/README.md -------------------------------------------------------------------------------- /microapps/MapViewIdentifyApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/MapViewIdentifyApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewIdentifyApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/MapViewIdentifyApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewIdentifyApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/MapViewIdentifyApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewIdentifyApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/MapViewIdentifyApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewIdentifyApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/MapViewIdentifyApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewIdentifyApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/MapViewIdentifyApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewIdentifyApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/MapViewIdentifyApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewIdentifyApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /microapps/MapViewIdentifyApp/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewIdentifyApp/screenshot.png -------------------------------------------------------------------------------- /microapps/MapViewInsetsApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewInsetsApp/.gitignore -------------------------------------------------------------------------------- /microapps/MapViewInsetsApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewInsetsApp/README.md -------------------------------------------------------------------------------- /microapps/MapViewInsetsApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/MapViewInsetsApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewInsetsApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/MapViewInsetsApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewInsetsApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/MapViewInsetsApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewInsetsApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/MapViewInsetsApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewInsetsApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/MapViewInsetsApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewInsetsApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/MapViewInsetsApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewInsetsApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/MapViewInsetsApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewInsetsApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /microapps/MapViewInsetsApp/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewInsetsApp/screenshot.png -------------------------------------------------------------------------------- /microapps/MapViewLocationDisplayApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewLocationDisplayApp/.gitignore -------------------------------------------------------------------------------- /microapps/MapViewLocationDisplayApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewLocationDisplayApp/README.md -------------------------------------------------------------------------------- /microapps/MapViewLocationDisplayApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/MapViewLocationDisplayApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewLocationDisplayApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/MapViewLocationDisplayApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewLocationDisplayApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/MapViewLocationDisplayApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewLocationDisplayApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/MapViewLocationDisplayApp/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewLocationDisplayApp/screenshot.png -------------------------------------------------------------------------------- /microapps/MapViewSetViewpointApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewSetViewpointApp/.gitignore -------------------------------------------------------------------------------- /microapps/MapViewSetViewpointApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewSetViewpointApp/README.md -------------------------------------------------------------------------------- /microapps/MapViewSetViewpointApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/MapViewSetViewpointApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewSetViewpointApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/MapViewSetViewpointApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewSetViewpointApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/MapViewSetViewpointApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewSetViewpointApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/MapViewSetViewpointApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewSetViewpointApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/MapViewSetViewpointApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewSetViewpointApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/MapViewSetViewpointApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewSetViewpointApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/MapViewSetViewpointApp/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MapViewSetViewpointApp/screenshot.png -------------------------------------------------------------------------------- /microapps/MicroappsLib/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /microapps/MicroappsLib/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MicroappsLib/build.gradle.kts -------------------------------------------------------------------------------- /microapps/MicroappsLib/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microapps/MicroappsLib/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/MicroappsLib/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/OfflineMapAreasApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OfflineMapAreasApp/.gitignore -------------------------------------------------------------------------------- /microapps/OfflineMapAreasApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OfflineMapAreasApp/README.md -------------------------------------------------------------------------------- /microapps/OfflineMapAreasApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/OfflineMapAreasApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OfflineMapAreasApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/OfflineMapAreasApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OfflineMapAreasApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/OfflineMapAreasApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OfflineMapAreasApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/OfflineMapAreasApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OfflineMapAreasApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/OfflineMapAreasApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OfflineMapAreasApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/OfflineMapAreasApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OfflineMapAreasApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/OfflineMapAreasApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OfflineMapAreasApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /microapps/OfflineMapAreasApp/microapp_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OfflineMapAreasApp/microapp_screenshot.png -------------------------------------------------------------------------------- /microapps/OfflineMapAreasApp/offline_map_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OfflineMapAreasApp/offline_map_screenshot.png -------------------------------------------------------------------------------- /microapps/OfflineMapAreasApp/open_map_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OfflineMapAreasApp/open_map_screenshot.png -------------------------------------------------------------------------------- /microapps/OverviewMapApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OverviewMapApp/.gitignore -------------------------------------------------------------------------------- /microapps/OverviewMapApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OverviewMapApp/README.md -------------------------------------------------------------------------------- /microapps/OverviewMapApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/OverviewMapApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OverviewMapApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/OverviewMapApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OverviewMapApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/OverviewMapApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OverviewMapApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/OverviewMapApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OverviewMapApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/OverviewMapApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OverviewMapApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/OverviewMapApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OverviewMapApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/OverviewMapApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OverviewMapApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /microapps/OverviewMapApp/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/OverviewMapApp/screenshot.png -------------------------------------------------------------------------------- /microapps/PopupApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/PopupApp/.gitignore -------------------------------------------------------------------------------- /microapps/PopupApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/PopupApp/README.md -------------------------------------------------------------------------------- /microapps/PopupApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/PopupApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/PopupApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/PopupApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/PopupApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/PopupApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/PopupApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/PopupApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/PopupApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/PopupApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/PopupApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/PopupApp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/PopupApp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/PopupApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/PopupApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/PopupApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/PopupApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/PopupApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/PopupApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/PopupApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/PopupApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/PopupApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/PopupApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/PopupApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/PopupApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /microapps/PopupApp/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/PopupApp/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /microapps/ScalebarApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ScalebarApp/.gitignore -------------------------------------------------------------------------------- /microapps/ScalebarApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ScalebarApp/README.md -------------------------------------------------------------------------------- /microapps/ScalebarApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/ScalebarApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ScalebarApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/ScalebarApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ScalebarApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/ScalebarApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ScalebarApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/ScalebarApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ScalebarApp/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/ScalebarApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ScalebarApp/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/ScalebarApp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ScalebarApp/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /microapps/ScalebarApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ScalebarApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/ScalebarApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ScalebarApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/ScalebarApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ScalebarApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/ScalebarApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ScalebarApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /microapps/ScalebarApp/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/ScalebarApp/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /microapps/SceneViewAnalysisOverlayApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewAnalysisOverlayApp/.gitignore -------------------------------------------------------------------------------- /microapps/SceneViewAnalysisOverlayApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewAnalysisOverlayApp/README.md -------------------------------------------------------------------------------- /microapps/SceneViewAnalysisOverlayApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/SceneViewAnalysisOverlayApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewAnalysisOverlayApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/SceneViewAnalysisOverlayApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewAnalysisOverlayApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/SceneViewAnalysisOverlayApp/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewAnalysisOverlayApp/screenshot.png -------------------------------------------------------------------------------- /microapps/SceneViewCalloutApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewCalloutApp/.gitignore -------------------------------------------------------------------------------- /microapps/SceneViewCalloutApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewCalloutApp/README.md -------------------------------------------------------------------------------- /microapps/SceneViewCalloutApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/SceneViewCalloutApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewCalloutApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/SceneViewCalloutApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewCalloutApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/SceneViewCalloutApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewCalloutApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/SceneViewCalloutApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewCalloutApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/SceneViewCalloutApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewCalloutApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/SceneViewCalloutApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewCalloutApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/SceneViewCalloutApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewCalloutApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /microapps/SceneViewCameraControllerApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewCameraControllerApp/.gitignore -------------------------------------------------------------------------------- /microapps/SceneViewCameraControllerApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewCameraControllerApp/README.md -------------------------------------------------------------------------------- /microapps/SceneViewCameraControllerApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/SceneViewCameraControllerApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewCameraControllerApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/SceneViewCameraControllerApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewCameraControllerApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/SceneViewCameraControllerApp/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewCameraControllerApp/screenshot.png -------------------------------------------------------------------------------- /microapps/SceneViewLightingOptionsApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewLightingOptionsApp/.gitignore -------------------------------------------------------------------------------- /microapps/SceneViewLightingOptionsApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewLightingOptionsApp/README.md -------------------------------------------------------------------------------- /microapps/SceneViewLightingOptionsApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/SceneViewLightingOptionsApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewLightingOptionsApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/SceneViewLightingOptionsApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewLightingOptionsApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/SceneViewLightingOptionsApp/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewLightingOptionsApp/screenshot.png -------------------------------------------------------------------------------- /microapps/SceneViewSetViewpointApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewSetViewpointApp/.gitignore -------------------------------------------------------------------------------- /microapps/SceneViewSetViewpointApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewSetViewpointApp/README.md -------------------------------------------------------------------------------- /microapps/SceneViewSetViewpointApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/SceneViewSetViewpointApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewSetViewpointApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/SceneViewSetViewpointApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewSetViewpointApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/SceneViewSetViewpointApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewSetViewpointApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/SceneViewSetViewpointApp/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/SceneViewSetViewpointApp/screenshot.png -------------------------------------------------------------------------------- /microapps/TemplateApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/TemplateApp/.gitignore -------------------------------------------------------------------------------- /microapps/TemplateApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/TemplateApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/TemplateApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/TemplateApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/TemplateApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/TemplateApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/TemplateApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/TemplateApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/TemplateApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /microapps/TemplateApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/TemplateApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /microapps/TemplateApp/app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/TemplateApp/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /microapps/TemplateApp/app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/TemplateApp/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /microapps/UtilityNetworkTraceApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/UtilityNetworkTraceApp/.gitignore -------------------------------------------------------------------------------- /microapps/UtilityNetworkTraceApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/UtilityNetworkTraceApp/README.md -------------------------------------------------------------------------------- /microapps/UtilityNetworkTraceApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /microapps/UtilityNetworkTraceApp/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/UtilityNetworkTraceApp/app/build.gradle.kts -------------------------------------------------------------------------------- /microapps/UtilityNetworkTraceApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/UtilityNetworkTraceApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /microapps/UtilityNetworkTraceApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/UtilityNetworkTraceApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /microapps/UtilityNetworkTraceApp/screenshots/advancedoptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/UtilityNetworkTraceApp/screenshots/advancedoptions.png -------------------------------------------------------------------------------- /microapps/UtilityNetworkTraceApp/screenshots/trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/UtilityNetworkTraceApp/screenshots/trace.png -------------------------------------------------------------------------------- /microapps/UtilityNetworkTraceApp/screenshots/traceconfigs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/UtilityNetworkTraceApp/screenshots/traceconfigs.png -------------------------------------------------------------------------------- /microapps/UtilityNetworkTraceApp/screenshots/traceresults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/microapps/UtilityNetworkTraceApp/screenshots/traceresults.png -------------------------------------------------------------------------------- /new-component-starter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/new-component-starter.sh -------------------------------------------------------------------------------- /new-microapp-starter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/new-microapp-starter.sh -------------------------------------------------------------------------------- /secrets.defaults.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/secrets.defaults.properties -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /t9nmanifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/t9nmanifest.txt -------------------------------------------------------------------------------- /toolkit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/.gitignore -------------------------------------------------------------------------------- /toolkit/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/CONTRIBUTING.md -------------------------------------------------------------------------------- /toolkit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/LICENSE -------------------------------------------------------------------------------- /toolkit/ar/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /toolkit/ar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/README.md -------------------------------------------------------------------------------- /toolkit/ar/api/ar.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/api/ar.api -------------------------------------------------------------------------------- /toolkit/ar/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/build.gradle.kts -------------------------------------------------------------------------------- /toolkit/ar/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/ar/flyover-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/flyover-screenshot.png -------------------------------------------------------------------------------- /toolkit/ar/src/androidTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/androidTest/AndroidManifest.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/assets/pedata/egm96.grd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/assets/pedata/egm96.grd -------------------------------------------------------------------------------- /toolkit/ar/src/main/assets/shaders/background_show_camera.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/assets/shaders/background_show_camera.frag -------------------------------------------------------------------------------- /toolkit/ar/src/main/assets/shaders/background_show_camera.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/assets/shaders/background_show_camera.vert -------------------------------------------------------------------------------- /toolkit/ar/src/main/assets/shaders/plane.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/assets/shaders/plane.frag -------------------------------------------------------------------------------- /toolkit/ar/src/main/assets/shaders/plane.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/assets/shaders/plane.vert -------------------------------------------------------------------------------- /toolkit/ar/src/main/assets/textures/trigrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/assets/textures/trigrid.png -------------------------------------------------------------------------------- /toolkit/ar/src/main/java/com/arcgismaps/toolkit/ar/Errors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/java/com/arcgismaps/toolkit/ar/Errors.kt -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/drawable-anydpi/ic_action_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/drawable-anydpi/ic_action_add.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/drawable-anydpi/ic_action_reduce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/drawable-anydpi/ic_action_reduce.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/drawable-hdpi/ic_action_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/drawable-hdpi/ic_action_add.png -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/drawable-hdpi/ic_action_reduce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/drawable-hdpi/ic_action_reduce.png -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/drawable-mdpi/ic_action_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/drawable-mdpi/ic_action_add.png -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/drawable-mdpi/ic_action_reduce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/drawable-mdpi/ic_action_reduce.png -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/drawable-xhdpi/ic_action_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/drawable-xhdpi/ic_action_add.png -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/drawable-xhdpi/ic_action_reduce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/drawable-xhdpi/ic_action_reduce.png -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/drawable-xxhdpi/ic_action_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/drawable-xxhdpi/ic_action_add.png -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/drawable-xxhdpi/ic_action_reduce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/drawable-xxhdpi/ic_action_reduce.png -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-bs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-bs/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-da/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-et/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-fi/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-hr/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-hu/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-iw/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-lt/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-lv/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-no/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-no/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-sl/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-sr/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-th/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /toolkit/ar/tabletop-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/tabletop-screenshot.png -------------------------------------------------------------------------------- /toolkit/ar/worldscale-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/ar/worldscale-screenshot.png -------------------------------------------------------------------------------- /toolkit/authentication/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /toolkit/authentication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/README.md -------------------------------------------------------------------------------- /toolkit/authentication/api/authentication.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/api/authentication.api -------------------------------------------------------------------------------- /toolkit/authentication/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/build.gradle.kts -------------------------------------------------------------------------------- /toolkit/authentication/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/authentication/src/androidTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/androidTest/AndroidManifest.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-bs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-bs/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-da/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-et/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-fi/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-hr/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-hu/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-iw/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-lt/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-lv/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-no/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-no/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-sl/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-sr/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-th/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /toolkit/authentication/username-password-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/authentication/username-password-prompt.png -------------------------------------------------------------------------------- /toolkit/basemapgallery/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /toolkit/basemapgallery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/basemapgallery/README.md -------------------------------------------------------------------------------- /toolkit/basemapgallery/api/basemapgallery.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/basemapgallery/api/basemapgallery.api -------------------------------------------------------------------------------- /toolkit/basemapgallery/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/basemapgallery/build.gradle.kts -------------------------------------------------------------------------------- /toolkit/basemapgallery/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/basemapgallery/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/basemapgallery/screenshot.png -------------------------------------------------------------------------------- /toolkit/basemapgallery/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/basemapgallery/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /toolkit/basemapgallery/src/main/res/drawable/basemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/basemapgallery/src/main/res/drawable/basemap.xml -------------------------------------------------------------------------------- /toolkit/compass/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /toolkit/compass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/compass/README.md -------------------------------------------------------------------------------- /toolkit/compass/api/compass.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/compass/api/compass.api -------------------------------------------------------------------------------- /toolkit/compass/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/compass/build.gradle.kts -------------------------------------------------------------------------------- /toolkit/compass/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/compass/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/compass/screenshot.jpg -------------------------------------------------------------------------------- /toolkit/compass/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/compass/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /toolkit/compass/src/main/res/drawable/ic_compass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/compass/src/main/res/drawable/ic_compass.xml -------------------------------------------------------------------------------- /toolkit/composable-map/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /toolkit/composable-map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/composable-map/README.md -------------------------------------------------------------------------------- /toolkit/composable-map/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/composable-map/build.gradle.kts -------------------------------------------------------------------------------- /toolkit/composable-map/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/composable-map/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/composable-map/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /toolkit/featureforms/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /toolkit/featureforms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/README.md -------------------------------------------------------------------------------- /toolkit/featureforms/api/featureforms.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/api/featureforms.api -------------------------------------------------------------------------------- /toolkit/featureforms/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/build.gradle.kts -------------------------------------------------------------------------------- /toolkit/featureforms/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/featureforms/screenshots/attachments_form_element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/screenshots/attachments_form_element.png -------------------------------------------------------------------------------- /toolkit/featureforms/screenshots/barcode_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/screenshots/barcode_input.png -------------------------------------------------------------------------------- /toolkit/featureforms/screenshots/combo_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/screenshots/combo_input.png -------------------------------------------------------------------------------- /toolkit/featureforms/screenshots/combo_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/screenshots/combo_picker.png -------------------------------------------------------------------------------- /toolkit/featureforms/screenshots/date_time_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/screenshots/date_time_input.png -------------------------------------------------------------------------------- /toolkit/featureforms/screenshots/group_element_collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/screenshots/group_element_collapsed.png -------------------------------------------------------------------------------- /toolkit/featureforms/screenshots/group_element_expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/screenshots/group_element_expanded.png -------------------------------------------------------------------------------- /toolkit/featureforms/screenshots/radio_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/screenshots/radio_input.png -------------------------------------------------------------------------------- /toolkit/featureforms/screenshots/read_only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/screenshots/read_only.png -------------------------------------------------------------------------------- /toolkit/featureforms/screenshots/switch_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/screenshots/switch_input.png -------------------------------------------------------------------------------- /toolkit/featureforms/screenshots/text_area_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/screenshots/text_area_input.png -------------------------------------------------------------------------------- /toolkit/featureforms/screenshots/text_form_element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/screenshots/text_form_element.png -------------------------------------------------------------------------------- /toolkit/featureforms/screenshots/text_input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/screenshots/text_input.png -------------------------------------------------------------------------------- /toolkit/featureforms/screenshots/ua_form_element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/screenshots/ua_form_element.png -------------------------------------------------------------------------------- /toolkit/featureforms/screenshots/ua_network_sources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/screenshots/ua_network_sources.png -------------------------------------------------------------------------------- /toolkit/featureforms/screenshots/utility_associations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/screenshots/utility_associations.png -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/drawable/barcode_scanner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/drawable/barcode_scanner.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/drawable/connection_end_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/drawable/connection_end_left.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/drawable/connection_mid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/drawable/connection_mid.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-bs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-bs/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-da/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-et/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-fi/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-hr/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-hu/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-iw/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-lt/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-lv/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-no/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-no/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-sl/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-sr/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-th/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /toolkit/featureforms/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/featureforms/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /toolkit/geoview-compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/geoview-compose/README.md -------------------------------------------------------------------------------- /toolkit/geoview-compose/api/geoview-compose.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/geoview-compose/api/geoview-compose.api -------------------------------------------------------------------------------- /toolkit/geoview-compose/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/geoview-compose/build.gradle.kts -------------------------------------------------------------------------------- /toolkit/geoview-compose/mapview_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/geoview-compose/mapview_screenshot.png -------------------------------------------------------------------------------- /toolkit/geoview-compose/sceneview_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/geoview-compose/sceneview_screenshot.png -------------------------------------------------------------------------------- /toolkit/geoview-compose/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/geoview-compose/screenshot.png -------------------------------------------------------------------------------- /toolkit/indoors/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /toolkit/indoors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/README.md -------------------------------------------------------------------------------- /toolkit/indoors/api/indoors.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/api/indoors.api -------------------------------------------------------------------------------- /toolkit/indoors/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/build.gradle.kts -------------------------------------------------------------------------------- /toolkit/indoors/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/indoors/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/screenshot.png -------------------------------------------------------------------------------- /toolkit/indoors/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/drawable/ic_chevron_left_32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/drawable/ic_chevron_left_32.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/drawable/ic_chevron_right_32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/drawable/ic_chevron_right_32.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/drawable/ic_search_32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/drawable/ic_search_32.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/drawable/ic_site_facility_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/drawable/ic_site_facility_24.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/drawable/ic_x_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/drawable/ic_x_24.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/drawable/ic_x_32.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/drawable/ic_x_32.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-bs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-bs/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-da/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-et/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-fi/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-hr/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-hu/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-iw/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-lt/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-lv/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-no/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-no/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-sl/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-sr/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-th/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /toolkit/indoors/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/indoors/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /toolkit/legend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/README.md -------------------------------------------------------------------------------- /toolkit/legend/api/legend.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/api/legend.api -------------------------------------------------------------------------------- /toolkit/legend/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/build.gradle.kts -------------------------------------------------------------------------------- /toolkit/legend/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/legend/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/screenshot.png -------------------------------------------------------------------------------- /toolkit/legend/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-bs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-bs/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-da/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-et/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-fi/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-hr/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-hu/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-iw/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-lt/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-lv/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-no/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-no/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-sl/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-sr/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-th/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /toolkit/legend/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/legend/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /toolkit/offline/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /toolkit/offline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/offline/README.md -------------------------------------------------------------------------------- /toolkit/offline/api/offline.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/offline/api/offline.api -------------------------------------------------------------------------------- /toolkit/offline/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/offline/build.gradle.kts -------------------------------------------------------------------------------- /toolkit/offline/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/offline/ondemand_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/offline/ondemand_screenshot.png -------------------------------------------------------------------------------- /toolkit/offline/preplanned_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/offline/preplanned_screenshot.png -------------------------------------------------------------------------------- /toolkit/offline/src/androidTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/offline/src/androidTest/AndroidManifest.xml -------------------------------------------------------------------------------- /toolkit/offline/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/offline/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /toolkit/offline/src/main/res/drawable/download_24px.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/offline/src/main/res/drawable/download_24px.xml -------------------------------------------------------------------------------- /toolkit/offline/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/offline/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /toolkit/offline/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/offline/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /toolkit/popup/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /toolkit/popup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/README.md -------------------------------------------------------------------------------- /toolkit/popup/api/popup.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/api/popup.api -------------------------------------------------------------------------------- /toolkit/popup/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/build.gradle.kts -------------------------------------------------------------------------------- /toolkit/popup/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/popup/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/screenshot.png -------------------------------------------------------------------------------- /toolkit/popup/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/java/com/arcgismaps/toolkit/popup/Popup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/java/com/arcgismaps/toolkit/popup/Popup.kt -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-bs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-bs/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-da/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-et/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-fi/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-hr/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-hu/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-iw/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-lt/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-lv/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-no/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-no/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-sl/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-sr/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-th/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /toolkit/popup/src/main/res/xml/files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/popup/src/main/res/xml/files.xml -------------------------------------------------------------------------------- /toolkit/scalebar/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /toolkit/scalebar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/scalebar/README.md -------------------------------------------------------------------------------- /toolkit/scalebar/api/scalebar.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/scalebar/api/scalebar.api -------------------------------------------------------------------------------- /toolkit/scalebar/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/scalebar/build.gradle.kts -------------------------------------------------------------------------------- /toolkit/scalebar/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/scalebar/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/scalebar/screenshot.png -------------------------------------------------------------------------------- /toolkit/scalebar/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/scalebar/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /toolkit/template/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /toolkit/template/api/template.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/template/api/template.api -------------------------------------------------------------------------------- /toolkit/template/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/template/build.gradle.kts -------------------------------------------------------------------------------- /toolkit/template/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/template/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/template/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /toolkit/utilitynetworks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/README.md -------------------------------------------------------------------------------- /toolkit/utilitynetworks/api/utilitynetworks.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/api/utilitynetworks.api -------------------------------------------------------------------------------- /toolkit/utilitynetworks/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/build.gradle.kts -------------------------------------------------------------------------------- /toolkit/utilitynetworks/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/utilitynetworks/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/screenshot.png -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-bs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-bs/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-da/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-et/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-fi/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-hr/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-hu/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-iw/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-ko/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-lt/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-lv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-lv/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-no/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-no/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-sl/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-sr/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-th/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-zh-rHK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-zh-rHK/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values-zh/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values-zh/strings.xml -------------------------------------------------------------------------------- /toolkit/utilitynetworks/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esri/arcgis-maps-sdk-kotlin-toolkit/HEAD/toolkit/utilitynetworks/src/main/res/values/strings.xml --------------------------------------------------------------------------------