├── .gitignore ├── ARTest ├── .gitignore ├── .idea │ ├── assetWizardSettings.xml │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ ├── sampledata │ │ └── models │ │ │ ├── materials.mtl │ │ │ ├── model.obj │ │ │ ├── model.sfa │ │ │ ├── test.mtl │ │ │ ├── test.obj │ │ │ └── test.sfa │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── arjo129 │ │ │ └── artest │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── arrow_route-web.png │ │ ├── assets │ │ │ ├── com1floor0.geojson │ │ │ ├── com1floor1.geojson │ │ │ ├── com1floor2.geojson │ │ │ ├── floor0.txt │ │ │ ├── floor1.txt │ │ │ └── floor2.txt │ │ ├── blue_marker-web.png │ │ ├── green_marker-web.png │ │ ├── ic_compass-web.png │ │ ├── ic_compass2-web.png │ │ ├── ic_happyStar-web.png │ │ ├── ic_location-web.png │ │ ├── ic_location_gps-web.png │ │ ├── ic_recent_books-web.png │ │ ├── ic_recents_gps-web.png │ │ ├── ic_star-web.png │ │ ├── java │ │ │ └── com │ │ │ │ └── arjo129 │ │ │ │ └── artest │ │ │ │ ├── ARActivity.java │ │ │ │ ├── CollectData.java │ │ │ │ ├── CompassActivity.java │ │ │ │ ├── DBLocationEngine.java │ │ │ │ ├── LoginActivity.java │ │ │ │ ├── MapActivity.java │ │ │ │ ├── Node.java │ │ │ │ ├── WifiActivity.java │ │ │ │ ├── arrendering │ │ │ │ ├── ARScene.java │ │ │ │ ├── ArrowPath.java │ │ │ │ ├── DirectionInstruction.java │ │ │ │ ├── DisplayRotationHelper.java │ │ │ │ ├── InitialArrow.java │ │ │ │ ├── StairException.java │ │ │ │ ├── StaircaseActivity.java │ │ │ │ └── VisualAnchorCompass.java │ │ │ │ ├── datacollection │ │ │ │ ├── ServerResponse.java │ │ │ │ ├── UploadConfirmation.java │ │ │ │ ├── WifiFingerprint.java │ │ │ │ └── WifiFingerprintList.java │ │ │ │ ├── device │ │ │ │ ├── CompassListener.java │ │ │ │ └── WifiLocation.java │ │ │ │ ├── indoorLocation │ │ │ │ ├── SecurityProvider.java │ │ │ │ ├── WifiNotificationListener.java │ │ │ │ └── WifiService.java │ │ │ │ └── places │ │ │ │ ├── BearingUtils.java │ │ │ │ ├── Connector.java │ │ │ │ ├── GridAdapter.java │ │ │ │ ├── PlaceLevel1.java │ │ │ │ ├── PlaceSearch.java │ │ │ │ ├── PlacesLectureTheatres.java │ │ │ │ ├── PlacesToGo.java │ │ │ │ ├── RecyclerAdapter.java │ │ │ │ ├── Routing.java │ │ │ │ └── SearchPlaces.java │ │ ├── my_launcher2-web.png │ │ ├── my_location-web.png │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── ic_compass.png │ │ │ ├── ic_login.png │ │ │ └── ic_wifi.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_compass.png │ │ │ ├── ic_login.png │ │ │ └── ic_wifi.png │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable-xhdpi │ │ │ ├── ic_compass.png │ │ │ ├── ic_login.png │ │ │ └── ic_wifi.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── green_marker.png │ │ │ ├── ic_compass.png │ │ │ ├── ic_login.png │ │ │ ├── ic_wifi.png │ │ │ └── purple_marker.png │ │ │ ├── drawable │ │ │ ├── baseline_library_books_black_18dp.png │ │ │ ├── baseline_location_on_black_18dp.png │ │ │ ├── baseline_person_pin_circle_black_18dp.png │ │ │ ├── baseline_public_black_18dp.png │ │ │ ├── baseline_share_black_18dp.png │ │ │ ├── baseline_star_black_18dp.png │ │ │ ├── destination.png │ │ │ ├── elevator_marker.png │ │ │ ├── ic_launcher_background.xml │ │ │ ├── my_launcher2_background.xml │ │ │ ├── my_location.png │ │ │ ├── staircase_marker.png │ │ │ ├── stairs_down.png │ │ │ ├── stairs_up.png │ │ │ └── toilet_marker.png │ │ │ ├── layout │ │ │ ├── activity_ar.xml │ │ │ ├── activity_collect_data.xml │ │ │ ├── activity_compass.xml │ │ │ ├── activity_login.xml │ │ │ ├── activity_map.xml │ │ │ ├── activity_place_level1.xml │ │ │ ├── activity_places_lecture_theatres.xml │ │ │ ├── activity_places_to_go.xml │ │ │ ├── activity_staircase.xml │ │ │ ├── activity_upload_confirmation.xml │ │ │ ├── activity_wifi.xml │ │ │ ├── ar_imageview.xml │ │ │ ├── grid_item.xml │ │ │ ├── lt_layout.xml │ │ │ ├── tool_tips.xml │ │ │ ├── toolbar_layout.xml │ │ │ └── upload_listview.xml │ │ │ ├── menu │ │ │ ├── collectdata.xml │ │ │ ├── confirmupload.xml │ │ │ ├── main_menu.xml │ │ │ └── menu_lt.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── arrow_route.xml │ │ │ ├── arrow_route_round.xml │ │ │ ├── ic_launcher.xml │ │ │ ├── ic_launcher_round.xml │ │ │ ├── ic_location_gps.xml │ │ │ ├── ic_location_gps_round.xml │ │ │ ├── ic_recents_gps.xml │ │ │ ├── ic_recents_gps_round.xml │ │ │ ├── my_launcher2.xml │ │ │ ├── my_launcher2_round.xml │ │ │ ├── my_location.xml │ │ │ └── my_location_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── arrow_route.png │ │ │ ├── arrow_route_foreground.png │ │ │ ├── arrow_route_round.png │ │ │ ├── baseline_navigation.png │ │ │ ├── baseline_search.png │ │ │ ├── green_marker_foreground.png │ │ │ ├── ic_compass.png │ │ │ ├── ic_compass2.png │ │ │ ├── ic_happy_star_foreground.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ ├── ic_location.png │ │ │ ├── ic_location_gps.png │ │ │ ├── ic_location_gps_foreground.png │ │ │ ├── ic_location_gps_round.png │ │ │ ├── ic_recent_books.png │ │ │ ├── ic_recents_foreground.png │ │ │ ├── ic_recents_gps.png │ │ │ ├── ic_recents_gps_round.png │ │ │ ├── ic_star.png │ │ │ ├── my_launcher2.png │ │ │ ├── my_launcher2_foreground.png │ │ │ ├── my_launcher2_round.png │ │ │ ├── my_location.png │ │ │ ├── my_location_foreground.png │ │ │ └── my_location_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── arrow_route.png │ │ │ ├── arrow_route_foreground.png │ │ │ ├── arrow_route_round.png │ │ │ ├── com1building.jpg │ │ │ ├── green_marker_foreground.png │ │ │ ├── ic_compass.png │ │ │ ├── ic_compass2.png │ │ │ ├── ic_happy_star_foreground.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ ├── ic_location.png │ │ │ ├── ic_location_gps.png │ │ │ ├── ic_location_gps_foreground.png │ │ │ ├── ic_location_gps_round.png │ │ │ ├── ic_recent_books.png │ │ │ ├── ic_recents_foreground.png │ │ │ ├── ic_recents_gps.png │ │ │ ├── ic_recents_gps_round.png │ │ │ ├── ic_star.png │ │ │ ├── mipmap-hdpi │ │ │ │ └── my_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── my_launcher.png │ │ │ ├── my_launcher2.png │ │ │ ├── my_launcher2_foreground.png │ │ │ ├── my_launcher2_round.png │ │ │ ├── my_location.png │ │ │ ├── my_location_foreground.png │ │ │ └── my_location_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── arrow_route.png │ │ │ ├── arrow_route_foreground.png │ │ │ ├── arrow_route_round.png │ │ │ ├── green_marker_foreground.png │ │ │ ├── ic_compass.png │ │ │ ├── ic_compass2.png │ │ │ ├── ic_happy_star_foreground.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ ├── ic_location.png │ │ │ ├── ic_location_gps.png │ │ │ ├── ic_location_gps_foreground.png │ │ │ ├── ic_location_gps_round.png │ │ │ ├── ic_recent_books.png │ │ │ ├── ic_recents_foreground.png │ │ │ ├── ic_recents_gps.png │ │ │ ├── ic_recents_gps_round.png │ │ │ ├── ic_star.png │ │ │ ├── my_launcher2.png │ │ │ ├── my_launcher2_foreground.png │ │ │ ├── my_launcher2_round.png │ │ │ ├── my_location.png │ │ │ ├── my_location_foreground.png │ │ │ └── my_location_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── arrow_route.png │ │ │ ├── arrow_route_foreground.png │ │ │ ├── arrow_route_round.png │ │ │ ├── green_marker_foreground.png │ │ │ ├── ic_compass.png │ │ │ ├── ic_compass2.png │ │ │ ├── ic_happy_star_foreground.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ ├── ic_location.png │ │ │ ├── ic_location_gps.png │ │ │ ├── ic_location_gps_foreground.png │ │ │ ├── ic_location_gps_round.png │ │ │ ├── ic_recent_books.png │ │ │ ├── ic_recents_foreground.png │ │ │ ├── ic_recents_gps.png │ │ │ ├── ic_recents_gps_round.png │ │ │ ├── ic_star.png │ │ │ ├── my_launcher2.png │ │ │ ├── my_launcher2_foreground.png │ │ │ ├── my_launcher2_round.png │ │ │ ├── my_location.png │ │ │ ├── my_location_foreground.png │ │ │ ├── my_location_round.png │ │ │ └── switch_locations.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── arrow_route.png │ │ │ ├── arrow_route_foreground.png │ │ │ ├── arrow_route_round.png │ │ │ ├── green_marker_foreground.png │ │ │ ├── ic_compass.png │ │ │ ├── ic_compass2.png │ │ │ ├── ic_happy_star_foreground.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_round.png │ │ │ ├── ic_location.png │ │ │ ├── ic_location_gps.png │ │ │ ├── ic_location_gps_foreground.png │ │ │ ├── ic_location_gps_round.png │ │ │ ├── ic_recent_books.png │ │ │ ├── ic_recents_foreground.png │ │ │ ├── ic_recents_gps.png │ │ │ ├── ic_recents_gps_round.png │ │ │ ├── ic_star.png │ │ │ ├── my_launcher2.png │ │ │ ├── my_launcher2_foreground.png │ │ │ ├── my_launcher2_round.png │ │ │ ├── my_location.png │ │ │ ├── my_location_foreground.png │ │ │ └── my_location_round.png │ │ │ ├── raw │ │ │ ├── model.sfb │ │ │ ├── publickey.bks │ │ │ └── test.sfb │ │ │ └── values │ │ │ ├── arrays.xml │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── my_launcher2_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── res │ │ └── raw │ │ │ └── test.sfb │ │ └── test │ │ └── java │ │ └── com │ │ └── arjo129 │ │ └── artest │ │ └── ExampleUnitTest.java ├── build.gradle ├── git ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | ARTest/.idea/caches/build_file_checksums.ser 3 | -------------------------------------------------------------------------------- /ARTest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/.gitignore -------------------------------------------------------------------------------- /ARTest/.idea/assetWizardSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/.idea/assetWizardSettings.xml -------------------------------------------------------------------------------- /ARTest/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /ARTest/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /ARTest/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/.idea/gradle.xml -------------------------------------------------------------------------------- /ARTest/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/.idea/misc.xml -------------------------------------------------------------------------------- /ARTest/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /ARTest/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/.idea/vcs.xml -------------------------------------------------------------------------------- /ARTest/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /ARTest/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/build.gradle -------------------------------------------------------------------------------- /ARTest/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/proguard-rules.pro -------------------------------------------------------------------------------- /ARTest/app/sampledata/models/materials.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/sampledata/models/materials.mtl -------------------------------------------------------------------------------- /ARTest/app/sampledata/models/model.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/sampledata/models/model.obj -------------------------------------------------------------------------------- /ARTest/app/sampledata/models/model.sfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/sampledata/models/model.sfa -------------------------------------------------------------------------------- /ARTest/app/sampledata/models/test.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/sampledata/models/test.mtl -------------------------------------------------------------------------------- /ARTest/app/sampledata/models/test.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/sampledata/models/test.obj -------------------------------------------------------------------------------- /ARTest/app/sampledata/models/test.sfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/sampledata/models/test.sfa -------------------------------------------------------------------------------- /ARTest/app/src/androidTest/java/com/arjo129/artest/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/androidTest/java/com/arjo129/artest/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /ARTest/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/arrow_route-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/arrow_route-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/assets/com1floor0.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/assets/com1floor0.geojson -------------------------------------------------------------------------------- /ARTest/app/src/main/assets/com1floor1.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/assets/com1floor1.geojson -------------------------------------------------------------------------------- /ARTest/app/src/main/assets/com1floor2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/assets/com1floor2.geojson -------------------------------------------------------------------------------- /ARTest/app/src/main/assets/floor0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/assets/floor0.txt -------------------------------------------------------------------------------- /ARTest/app/src/main/assets/floor1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/assets/floor1.txt -------------------------------------------------------------------------------- /ARTest/app/src/main/assets/floor2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/assets/floor2.txt -------------------------------------------------------------------------------- /ARTest/app/src/main/blue_marker-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/blue_marker-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/green_marker-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/green_marker-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/ic_compass-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/ic_compass-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/ic_compass2-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/ic_compass2-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/ic_happyStar-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/ic_happyStar-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/ic_location-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/ic_location-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/ic_location_gps-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/ic_location_gps-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/ic_recent_books-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/ic_recent_books-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/ic_recents_gps-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/ic_recents_gps-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/ic_star-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/ic_star-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/ARActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/ARActivity.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/CollectData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/CollectData.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/CompassActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/CompassActivity.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/DBLocationEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/DBLocationEngine.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/LoginActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/LoginActivity.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/MapActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/MapActivity.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/Node.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/Node.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/WifiActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/WifiActivity.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/arrendering/ARScene.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/arrendering/ARScene.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/arrendering/ArrowPath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/arrendering/ArrowPath.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/arrendering/DirectionInstruction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/arrendering/DirectionInstruction.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/arrendering/DisplayRotationHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/arrendering/DisplayRotationHelper.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/arrendering/InitialArrow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/arrendering/InitialArrow.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/arrendering/StairException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/arrendering/StairException.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/arrendering/StaircaseActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/arrendering/StaircaseActivity.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/arrendering/VisualAnchorCompass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/arrendering/VisualAnchorCompass.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/datacollection/ServerResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/datacollection/ServerResponse.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/datacollection/UploadConfirmation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/datacollection/UploadConfirmation.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/datacollection/WifiFingerprint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/datacollection/WifiFingerprint.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/datacollection/WifiFingerprintList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/datacollection/WifiFingerprintList.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/device/CompassListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/device/CompassListener.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/device/WifiLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/device/WifiLocation.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/indoorLocation/SecurityProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/indoorLocation/SecurityProvider.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/indoorLocation/WifiNotificationListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/indoorLocation/WifiNotificationListener.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/indoorLocation/WifiService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/indoorLocation/WifiService.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/places/BearingUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/places/BearingUtils.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/places/Connector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/places/Connector.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/places/GridAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/places/GridAdapter.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/places/PlaceLevel1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/places/PlaceLevel1.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/places/PlaceSearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/places/PlaceSearch.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/places/PlacesLectureTheatres.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/places/PlacesLectureTheatres.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/places/PlacesToGo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/places/PlacesToGo.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/places/RecyclerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/places/RecyclerAdapter.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/places/Routing.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/places/Routing.java -------------------------------------------------------------------------------- /ARTest/app/src/main/java/com/arjo129/artest/places/SearchPlaces.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/java/com/arjo129/artest/places/SearchPlaces.java -------------------------------------------------------------------------------- /ARTest/app/src/main/my_launcher2-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/my_launcher2-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/my_location-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/my_location-web.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-hdpi/ic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-hdpi/ic_compass.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-hdpi/ic_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-hdpi/ic_login.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-hdpi/ic_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-hdpi/ic_wifi.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-mdpi/ic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-mdpi/ic_compass.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-mdpi/ic_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-mdpi/ic_login.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-mdpi/ic_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-mdpi/ic_wifi.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-xhdpi/ic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-xhdpi/ic_compass.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-xhdpi/ic_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-xhdpi/ic_login.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-xhdpi/ic_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-xhdpi/ic_wifi.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-xxhdpi/green_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-xxhdpi/green_marker.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-xxhdpi/ic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-xxhdpi/ic_compass.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-xxhdpi/ic_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-xxhdpi/ic_login.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-xxhdpi/ic_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-xxhdpi/ic_wifi.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable-xxhdpi/purple_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable-xxhdpi/purple_marker.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/baseline_library_books_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/baseline_library_books_black_18dp.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/baseline_location_on_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/baseline_location_on_black_18dp.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/baseline_person_pin_circle_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/baseline_person_pin_circle_black_18dp.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/baseline_public_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/baseline_public_black_18dp.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/baseline_share_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/baseline_share_black_18dp.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/baseline_star_black_18dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/baseline_star_black_18dp.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/destination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/destination.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/elevator_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/elevator_marker.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/my_launcher2_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/my_launcher2_background.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/my_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/my_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/staircase_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/staircase_marker.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/stairs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/stairs_down.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/stairs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/stairs_up.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/drawable/toilet_marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/drawable/toilet_marker.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/activity_ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/layout/activity_ar.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/activity_collect_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/layout/activity_collect_data.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/activity_compass.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/layout/activity_compass.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/activity_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/layout/activity_login.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/activity_map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/layout/activity_map.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/activity_place_level1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/layout/activity_place_level1.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/activity_places_lecture_theatres.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/layout/activity_places_lecture_theatres.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/activity_places_to_go.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/layout/activity_places_to_go.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/activity_staircase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/layout/activity_staircase.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/activity_upload_confirmation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/layout/activity_upload_confirmation.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/activity_wifi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/layout/activity_wifi.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/ar_imageview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/layout/ar_imageview.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/grid_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/layout/grid_item.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/lt_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/layout/lt_layout.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/tool_tips.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/layout/tool_tips.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/toolbar_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/layout/toolbar_layout.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/layout/upload_listview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/layout/upload_listview.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/menu/collectdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/menu/collectdata.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/menu/confirmupload.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/menu/confirmupload.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/menu/main_menu.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/menu/menu_lt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/menu/menu_lt.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/arrow_route.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-anydpi-v26/arrow_route.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/arrow_route_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-anydpi-v26/arrow_route_round.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/ic_location_gps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-anydpi-v26/ic_location_gps.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/ic_location_gps_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-anydpi-v26/ic_location_gps_round.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/ic_recents_gps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-anydpi-v26/ic_recents_gps.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/ic_recents_gps_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-anydpi-v26/ic_recents_gps_round.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/my_launcher2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-anydpi-v26/my_launcher2.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/my_launcher2_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-anydpi-v26/my_launcher2_round.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/my_location.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-anydpi-v26/my_location.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-anydpi-v26/my_location_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-anydpi-v26/my_location_round.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/arrow_route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/arrow_route.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/arrow_route_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/arrow_route_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/arrow_route_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/arrow_route_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/baseline_navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/baseline_navigation.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/baseline_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/baseline_search.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/green_marker_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/green_marker_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_compass.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_compass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_compass2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_happy_star_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_happy_star_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_location_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_location_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_location_gps_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_location_gps_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_location_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_location_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_recent_books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_recent_books.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_recents_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_recents_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_recents_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_recents_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_recents_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_recents_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/ic_star.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/my_launcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/my_launcher2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/my_launcher2_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/my_launcher2_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/my_launcher2_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/my_launcher2_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/my_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/my_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/my_location_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/my_location_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-hdpi/my_location_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-hdpi/my_location_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/arrow_route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/arrow_route.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/arrow_route_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/arrow_route_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/arrow_route_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/arrow_route_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/com1building.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/com1building.jpg -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/green_marker_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/green_marker_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_compass.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_compass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_compass2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_happy_star_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_happy_star_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_location_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_location_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_location_gps_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_location_gps_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_location_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_location_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_recent_books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_recent_books.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_recents_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_recents_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_recents_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_recents_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_recents_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_recents_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/ic_star.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/mipmap-hdpi/my_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/mipmap-hdpi/my_launcher.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/mipmap-xxxhdpi/my_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/mipmap-xxxhdpi/my_launcher.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/my_launcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/my_launcher2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/my_launcher2_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/my_launcher2_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/my_launcher2_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/my_launcher2_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/my_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/my_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/my_location_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/my_location_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-mdpi/my_location_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-mdpi/my_location_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/arrow_route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/arrow_route.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/arrow_route_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/arrow_route_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/arrow_route_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/arrow_route_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/green_marker_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/green_marker_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_compass.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_compass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_compass2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_happy_star_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_happy_star_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_location_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_location_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_location_gps_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_location_gps_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_location_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_location_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_recent_books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_recent_books.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_recents_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_recents_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_recents_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_recents_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_recents_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_recents_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/ic_star.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/my_launcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/my_launcher2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/my_launcher2_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/my_launcher2_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/my_launcher2_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/my_launcher2_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/my_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/my_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/my_location_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/my_location_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xhdpi/my_location_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xhdpi/my_location_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/arrow_route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/arrow_route.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/arrow_route_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/arrow_route_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/arrow_route_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/arrow_route_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/green_marker_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/green_marker_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_compass.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_compass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_compass2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_happy_star_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_happy_star_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_location_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_location_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_location_gps_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_location_gps_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_location_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_location_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_recent_books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_recent_books.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_recents_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_recents_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_recents_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_recents_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_recents_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_recents_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/ic_star.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/my_launcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/my_launcher2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/my_launcher2_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/my_launcher2_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/my_launcher2_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/my_launcher2_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/my_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/my_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/my_location_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/my_location_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/my_location_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/my_location_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxhdpi/switch_locations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxhdpi/switch_locations.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/arrow_route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/arrow_route.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/arrow_route_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/arrow_route_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/arrow_route_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/arrow_route_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/green_marker_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/green_marker_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_compass.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_compass2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_compass2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_happy_star_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_happy_star_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_location_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_location_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_location_gps_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_location_gps_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_location_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_location_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_recent_books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_recent_books.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_recents_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_recents_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_recents_gps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_recents_gps.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_recents_gps_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_recents_gps_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/ic_star.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/my_launcher2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/my_launcher2.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/my_launcher2_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/my_launcher2_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/my_launcher2_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/my_launcher2_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/my_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/my_location.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/my_location_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/my_location_foreground.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/mipmap-xxxhdpi/my_location_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/mipmap-xxxhdpi/my_location_round.png -------------------------------------------------------------------------------- /ARTest/app/src/main/res/raw/model.sfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/raw/model.sfb -------------------------------------------------------------------------------- /ARTest/app/src/main/res/raw/publickey.bks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/raw/publickey.bks -------------------------------------------------------------------------------- /ARTest/app/src/main/res/raw/test.sfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/raw/test.sfb -------------------------------------------------------------------------------- /ARTest/app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/values/my_launcher2_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/values/my_launcher2_background.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ARTest/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /ARTest/app/src/res/raw/test.sfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/res/raw/test.sfb -------------------------------------------------------------------------------- /ARTest/app/src/test/java/com/arjo129/artest/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/app/src/test/java/com/arjo129/artest/ExampleUnitTest.java -------------------------------------------------------------------------------- /ARTest/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/build.gradle -------------------------------------------------------------------------------- /ARTest/git: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ARTest/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/gradle.properties -------------------------------------------------------------------------------- /ARTest/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ARTest/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ARTest/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/gradlew -------------------------------------------------------------------------------- /ARTest/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/ARTest/gradlew.bat -------------------------------------------------------------------------------- /ARTest/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chel-seyy/Android-App-AR-Map-Navigation/HEAD/README.md --------------------------------------------------------------------------------