├── .github └── workflows │ └── test.yaml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── library └── messaging │ ├── .gitignore │ ├── CMakeLists.txt │ ├── build.gradle │ └── src │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ ├── messaging.cpp │ ├── messaging.h │ └── messaging │ │ └── lib │ │ └── arm64-v8a │ │ └── include │ │ └── libmessaging │ │ └── messaging.hpp │ └── java │ └── ai │ └── comma │ └── messaging │ ├── Context.java │ ├── Loader.java │ ├── Message.java │ ├── Poller.java │ ├── PubSocket.java │ └── SubSocket.java ├── offroad ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── App.js ├── README.md ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ ├── OpenSans-BoldItalic.ttf │ │ │ │ ├── OpenSans-ExtraBold.ttf │ │ │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ │ │ ├── OpenSans-Italic.ttf │ │ │ │ ├── OpenSans-Light.ttf │ │ │ │ ├── OpenSans-LightItalic.ttf │ │ │ │ ├── OpenSans-Regular.ttf │ │ │ │ ├── OpenSans-Semibold.ttf │ │ │ │ └── OpenSans-SemiboldItalic.ttf │ │ │ ├── java │ │ │ ├── ai │ │ │ │ └── comma │ │ │ │ │ ├── openpilot │ │ │ │ │ └── cereal │ │ │ │ │ └── plus │ │ │ │ │ └── offroad │ │ │ │ │ ├── ArrayUtils.kt │ │ │ │ │ ├── CellularModule.kt │ │ │ │ │ ├── ChffrPlusModule.kt │ │ │ │ │ ├── ChffrPlusParams.kt │ │ │ │ │ ├── CloudLog.kt │ │ │ │ │ ├── HomePackage.kt │ │ │ │ │ ├── LayoutModule.kt │ │ │ │ │ ├── LogEvent.java │ │ │ │ │ ├── LoggingModule.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MainApplication.java │ │ │ │ │ ├── NavDestinationPoller.kt │ │ │ │ │ ├── NetworkSpeedSampler.kt │ │ │ │ │ ├── OfflineGeocoderModule.kt │ │ │ │ │ ├── ThermalPoller.kt │ │ │ │ │ ├── WifiModule.kt │ │ │ │ │ └── WifiScanner.kt │ │ │ ├── com │ │ │ │ └── logentries │ │ │ │ │ ├── logger │ │ │ │ │ ├── AsyncLoggingWorker.java │ │ │ │ │ └── LogStorage.java │ │ │ │ │ ├── misc │ │ │ │ │ └── Utils.java │ │ │ │ │ └── net │ │ │ │ │ └── LogentriesClient.java │ │ │ └── geocode │ │ │ │ ├── GeoName.java │ │ │ │ ├── ReverseGeoCode.java │ │ │ │ └── kdtree │ │ │ │ ├── KDNode.java │ │ │ │ ├── KDNodeComparator.java │ │ │ │ └── KDTree.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── gradient_blue.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── raw │ │ │ └── cities5000.txt │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ ├── sentry.properties │ └── settings.gradle ├── app.json ├── assets │ └── fonts │ │ ├── OpenSans-Bold.ttf │ │ ├── OpenSans-BoldItalic.ttf │ │ ├── OpenSans-ExtraBold.ttf │ │ ├── OpenSans-ExtraBoldItalic.ttf │ │ ├── OpenSans-Italic.ttf │ │ ├── OpenSans-Light.ttf │ │ ├── OpenSans-LightItalic.ttf │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-Semibold.ttf │ │ └── OpenSans-SemiboldItalic.ttf ├── babel.config.js ├── build.sh ├── index.js ├── js │ ├── components │ │ ├── Home │ │ │ ├── Home.js │ │ │ ├── HomeStyles.js │ │ │ └── index.js │ │ ├── Loader │ │ │ ├── Loader.js │ │ │ ├── LoaderStyles.js │ │ │ └── index.js │ │ ├── ScrollThrough │ │ │ ├── ScrollThrough.js │ │ │ ├── ScrollThroughStyles.js │ │ │ └── index.js │ │ ├── Settings │ │ │ ├── Settings.js │ │ │ ├── SettingsStyles.js │ │ │ └── index.js │ │ ├── SettingsWifi │ │ │ ├── SettingsWifi.js │ │ │ └── index.js │ │ ├── SetupQr │ │ │ ├── SetupQr.js │ │ │ ├── SetupQrStyles.js │ │ │ └── index.js │ │ ├── SetupTerms │ │ │ ├── Documents.js │ │ │ ├── SetupTerms.js │ │ │ ├── SetupTermsStyles.js │ │ │ └── index.js │ │ ├── SetupWifi │ │ │ ├── SetupWifi.js │ │ │ ├── SetupWifiStyles.js │ │ │ └── index.js │ │ ├── UpdatePrompt │ │ │ ├── UpdatePrompt.js │ │ │ └── index.js │ │ └── training │ │ │ ├── Onboarding │ │ │ ├── Onboarding.js │ │ │ ├── OnboardingStyles.js │ │ │ └── index.js │ │ │ └── step.js │ ├── config.js │ ├── img │ │ ├── circled-checkmark.png │ │ ├── icon_app_store.png │ │ ├── icon_calibration.png │ │ ├── icon_checkmark.png │ │ ├── icon_chevron_right.png │ │ ├── icon_connect_app.png │ │ ├── icon_eon.png │ │ ├── icon_map.png │ │ ├── icon_map_speed.png │ │ ├── icon_menu.png │ │ ├── icon_metric.png │ │ ├── icon_minus.png │ │ ├── icon_monitoring.png │ │ ├── icon_network.png │ │ ├── icon_openpilot.png │ │ ├── icon_openpilot_mirrored.png │ │ ├── icon_play_store.png │ │ ├── icon_plus.png │ │ ├── icon_road.png │ │ ├── icon_settings.png │ │ ├── icon_shell.png │ │ ├── icon_speed_limit.png │ │ ├── icon_user.png │ │ ├── icon_warning.png │ │ ├── illustration_arrow.png │ │ ├── illustration_sim_absent.png │ │ ├── illustration_sim_present.png │ │ ├── illustration_training_lane_01.png │ │ ├── illustration_training_lane_02.png │ │ ├── illustration_training_lead_01.png │ │ ├── illustration_training_lead_02.png │ │ ├── illustration_weather_clear_day.png │ │ ├── illustration_weather_clear_night.png │ │ ├── illustration_weather_cloudy.png │ │ ├── illustration_weather_partly_cloudy_day.png │ │ ├── illustration_weather_partly_cloudy_night.png │ │ ├── illustration_weather_rain.png │ │ ├── illustration_weather_snow.png │ │ ├── illustration_weather_wind.png │ │ ├── indicator_wifi_0.png │ │ ├── indicator_wifi_100.png │ │ ├── indicator_wifi_25.png │ │ ├── indicator_wifi_50.png │ │ ├── indicator_wifi_75.png │ │ ├── photo_baybridge_a_01.jpg │ │ ├── photo_baybridge_b_01.jpg │ │ ├── photo_monitoring_01.jpg │ │ ├── photo_pedals_01.jpg │ │ ├── photo_traffic_light_01.jpg │ │ ├── photo_turn_signal_02.jpg │ │ ├── photo_wheel_buttons_01.jpg │ │ └── photo_wheel_hands_01.jpg │ ├── native │ │ ├── ChffrPlus.js │ │ ├── Geocoder.js │ │ ├── Layout.js │ │ ├── Logging.js │ │ ├── Sim.js │ │ └── Wifi.js │ ├── navigators │ │ └── StackNavigator.js │ ├── store │ │ ├── driving │ │ │ ├── actions.js │ │ │ └── reducer.js │ │ ├── environment │ │ │ ├── actions.js │ │ │ └── reducer.js │ │ ├── host │ │ │ ├── SimState.js │ │ │ ├── actions.js │ │ │ └── reducer.js │ │ ├── index.js │ │ ├── nav │ │ │ ├── actions.js │ │ │ └── reducer.js │ │ ├── params │ │ │ ├── actions.js │ │ │ └── reducer.js │ │ └── uploads │ │ │ ├── actions.js │ │ │ └── reducer.js │ ├── styles │ │ └── gradients.js │ ├── themes │ │ ├── ChffrPlusTheme │ │ │ ├── ChffrPlusTheme.js │ │ │ └── index.js │ │ └── index.js │ ├── timers │ │ └── UploadProgressTimer.js │ └── utils │ │ ├── AppStateListener.js │ │ ├── DestinationListener.js │ │ ├── GeocodeListener.js │ │ ├── HomeButtonListener.js │ │ ├── SettingsButtonListener.js │ │ ├── SimStateListener.js │ │ ├── ThermalListener.js │ │ ├── WifiStateListener.js │ │ ├── bytes.js │ │ ├── conversions.js │ │ ├── nav.js │ │ ├── number.js │ │ ├── pluralize.js │ │ ├── url.js │ │ └── version.js ├── package.json ├── rn-cli-config.js └── yarn.lock └── tools └── signapk ├── build_android.sh ├── certificate.pem ├── key.pk8 ├── platform.pk8 ├── platform.x509.pem ├── signapk.android.jar ├── signapk.jar └── signapk_android /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/README.md -------------------------------------------------------------------------------- /library/messaging/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/library/messaging/.gitignore -------------------------------------------------------------------------------- /library/messaging/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/library/messaging/CMakeLists.txt -------------------------------------------------------------------------------- /library/messaging/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/library/messaging/build.gradle -------------------------------------------------------------------------------- /library/messaging/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/library/messaging/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/messaging/src/main/cpp/messaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/library/messaging/src/main/cpp/messaging.cpp -------------------------------------------------------------------------------- /library/messaging/src/main/cpp/messaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/library/messaging/src/main/cpp/messaging.h -------------------------------------------------------------------------------- /library/messaging/src/main/cpp/messaging/lib/arm64-v8a/include/libmessaging/messaging.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/library/messaging/src/main/cpp/messaging/lib/arm64-v8a/include/libmessaging/messaging.hpp -------------------------------------------------------------------------------- /library/messaging/src/main/java/ai/comma/messaging/Context.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/library/messaging/src/main/java/ai/comma/messaging/Context.java -------------------------------------------------------------------------------- /library/messaging/src/main/java/ai/comma/messaging/Loader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/library/messaging/src/main/java/ai/comma/messaging/Loader.java -------------------------------------------------------------------------------- /library/messaging/src/main/java/ai/comma/messaging/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/library/messaging/src/main/java/ai/comma/messaging/Message.java -------------------------------------------------------------------------------- /library/messaging/src/main/java/ai/comma/messaging/Poller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/library/messaging/src/main/java/ai/comma/messaging/Poller.java -------------------------------------------------------------------------------- /library/messaging/src/main/java/ai/comma/messaging/PubSocket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/library/messaging/src/main/java/ai/comma/messaging/PubSocket.java -------------------------------------------------------------------------------- /library/messaging/src/main/java/ai/comma/messaging/SubSocket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/library/messaging/src/main/java/ai/comma/messaging/SubSocket.java -------------------------------------------------------------------------------- /offroad/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/.flowconfig -------------------------------------------------------------------------------- /offroad/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/.gitignore -------------------------------------------------------------------------------- /offroad/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /offroad/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/App.js -------------------------------------------------------------------------------- /offroad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/README.md -------------------------------------------------------------------------------- /offroad/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/BUCK -------------------------------------------------------------------------------- /offroad/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/build.gradle -------------------------------------------------------------------------------- /offroad/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/build_defs.bzl -------------------------------------------------------------------------------- /offroad/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /offroad/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /offroad/android/app/src/main/assets/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/assets/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /offroad/android/app/src/main/assets/fonts/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/assets/fonts/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /offroad/android/app/src/main/assets/fonts/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/assets/fonts/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /offroad/android/app/src/main/assets/fonts/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/assets/fonts/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /offroad/android/app/src/main/assets/fonts/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/assets/fonts/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /offroad/android/app/src/main/assets/fonts/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/assets/fonts/OpenSans-Light.ttf -------------------------------------------------------------------------------- /offroad/android/app/src/main/assets/fonts/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/assets/fonts/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /offroad/android/app/src/main/assets/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/assets/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /offroad/android/app/src/main/assets/fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/assets/fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /offroad/android/app/src/main/assets/fonts/OpenSans-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/assets/fonts/OpenSans-SemiboldItalic.ttf -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/ai/comma/openpilot/cereal: -------------------------------------------------------------------------------- 1 | ../../../../../../../../../../cereal/gen/java -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/ai/comma/plus/offroad/ArrayUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/ai/comma/plus/offroad/ArrayUtils.kt -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/ai/comma/plus/offroad/CellularModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/ai/comma/plus/offroad/CellularModule.kt -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/ai/comma/plus/offroad/ChffrPlusModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/ai/comma/plus/offroad/ChffrPlusModule.kt -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/ai/comma/plus/offroad/ChffrPlusParams.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/ai/comma/plus/offroad/ChffrPlusParams.kt -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/ai/comma/plus/offroad/CloudLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/ai/comma/plus/offroad/CloudLog.kt -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/ai/comma/plus/offroad/HomePackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/ai/comma/plus/offroad/HomePackage.kt -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/ai/comma/plus/offroad/LayoutModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/ai/comma/plus/offroad/LayoutModule.kt -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/ai/comma/plus/offroad/LogEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/ai/comma/plus/offroad/LogEvent.java -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/ai/comma/plus/offroad/LoggingModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/ai/comma/plus/offroad/LoggingModule.kt -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/ai/comma/plus/offroad/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/ai/comma/plus/offroad/MainActivity.kt -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/ai/comma/plus/offroad/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/ai/comma/plus/offroad/MainApplication.java -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/ai/comma/plus/offroad/NavDestinationPoller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/ai/comma/plus/offroad/NavDestinationPoller.kt -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/ai/comma/plus/offroad/NetworkSpeedSampler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/ai/comma/plus/offroad/NetworkSpeedSampler.kt -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/ai/comma/plus/offroad/OfflineGeocoderModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/ai/comma/plus/offroad/OfflineGeocoderModule.kt -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/ai/comma/plus/offroad/ThermalPoller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/ai/comma/plus/offroad/ThermalPoller.kt -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/ai/comma/plus/offroad/WifiModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/ai/comma/plus/offroad/WifiModule.kt -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/ai/comma/plus/offroad/WifiScanner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/ai/comma/plus/offroad/WifiScanner.kt -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/com/logentries/logger/AsyncLoggingWorker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/com/logentries/logger/AsyncLoggingWorker.java -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/com/logentries/logger/LogStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/com/logentries/logger/LogStorage.java -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/com/logentries/misc/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/com/logentries/misc/Utils.java -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/com/logentries/net/LogentriesClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/com/logentries/net/LogentriesClient.java -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/geocode/GeoName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/geocode/GeoName.java -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/geocode/ReverseGeoCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/geocode/ReverseGeoCode.java -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/geocode/kdtree/KDNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/geocode/kdtree/KDNode.java -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/geocode/kdtree/KDNodeComparator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/geocode/kdtree/KDNodeComparator.java -------------------------------------------------------------------------------- /offroad/android/app/src/main/java/geocode/kdtree/KDTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/java/geocode/kdtree/KDTree.java -------------------------------------------------------------------------------- /offroad/android/app/src/main/res/drawable/gradient_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/res/drawable/gradient_blue.xml -------------------------------------------------------------------------------- /offroad/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /offroad/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /offroad/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /offroad/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /offroad/android/app/src/main/res/raw/cities5000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/res/raw/cities5000.txt -------------------------------------------------------------------------------- /offroad/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /offroad/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /offroad/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/build.gradle -------------------------------------------------------------------------------- /offroad/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/gradle.properties -------------------------------------------------------------------------------- /offroad/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /offroad/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /offroad/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/gradlew -------------------------------------------------------------------------------- /offroad/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/gradlew.bat -------------------------------------------------------------------------------- /offroad/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/keystores/BUCK -------------------------------------------------------------------------------- /offroad/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /offroad/android/sentry.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/sentry.properties -------------------------------------------------------------------------------- /offroad/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/android/settings.gradle -------------------------------------------------------------------------------- /offroad/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/app.json -------------------------------------------------------------------------------- /offroad/assets/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/assets/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /offroad/assets/fonts/OpenSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/assets/fonts/OpenSans-BoldItalic.ttf -------------------------------------------------------------------------------- /offroad/assets/fonts/OpenSans-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/assets/fonts/OpenSans-ExtraBold.ttf -------------------------------------------------------------------------------- /offroad/assets/fonts/OpenSans-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/assets/fonts/OpenSans-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /offroad/assets/fonts/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/assets/fonts/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /offroad/assets/fonts/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/assets/fonts/OpenSans-Light.ttf -------------------------------------------------------------------------------- /offroad/assets/fonts/OpenSans-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/assets/fonts/OpenSans-LightItalic.ttf -------------------------------------------------------------------------------- /offroad/assets/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/assets/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /offroad/assets/fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/assets/fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /offroad/assets/fonts/OpenSans-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/assets/fonts/OpenSans-SemiboldItalic.ttf -------------------------------------------------------------------------------- /offroad/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/babel.config.js -------------------------------------------------------------------------------- /offroad/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/build.sh -------------------------------------------------------------------------------- /offroad/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/index.js -------------------------------------------------------------------------------- /offroad/js/components/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/Home/Home.js -------------------------------------------------------------------------------- /offroad/js/components/Home/HomeStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/Home/HomeStyles.js -------------------------------------------------------------------------------- /offroad/js/components/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/Home/index.js -------------------------------------------------------------------------------- /offroad/js/components/Loader/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/Loader/Loader.js -------------------------------------------------------------------------------- /offroad/js/components/Loader/LoaderStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/Loader/LoaderStyles.js -------------------------------------------------------------------------------- /offroad/js/components/Loader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/Loader/index.js -------------------------------------------------------------------------------- /offroad/js/components/ScrollThrough/ScrollThrough.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/ScrollThrough/ScrollThrough.js -------------------------------------------------------------------------------- /offroad/js/components/ScrollThrough/ScrollThroughStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/ScrollThrough/ScrollThroughStyles.js -------------------------------------------------------------------------------- /offroad/js/components/ScrollThrough/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/ScrollThrough/index.js -------------------------------------------------------------------------------- /offroad/js/components/Settings/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/Settings/Settings.js -------------------------------------------------------------------------------- /offroad/js/components/Settings/SettingsStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/Settings/SettingsStyles.js -------------------------------------------------------------------------------- /offroad/js/components/Settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/Settings/index.js -------------------------------------------------------------------------------- /offroad/js/components/SettingsWifi/SettingsWifi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/SettingsWifi/SettingsWifi.js -------------------------------------------------------------------------------- /offroad/js/components/SettingsWifi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/SettingsWifi/index.js -------------------------------------------------------------------------------- /offroad/js/components/SetupQr/SetupQr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/SetupQr/SetupQr.js -------------------------------------------------------------------------------- /offroad/js/components/SetupQr/SetupQrStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/SetupQr/SetupQrStyles.js -------------------------------------------------------------------------------- /offroad/js/components/SetupQr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/SetupQr/index.js -------------------------------------------------------------------------------- /offroad/js/components/SetupTerms/Documents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/SetupTerms/Documents.js -------------------------------------------------------------------------------- /offroad/js/components/SetupTerms/SetupTerms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/SetupTerms/SetupTerms.js -------------------------------------------------------------------------------- /offroad/js/components/SetupTerms/SetupTermsStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/SetupTerms/SetupTermsStyles.js -------------------------------------------------------------------------------- /offroad/js/components/SetupTerms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/SetupTerms/index.js -------------------------------------------------------------------------------- /offroad/js/components/SetupWifi/SetupWifi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/SetupWifi/SetupWifi.js -------------------------------------------------------------------------------- /offroad/js/components/SetupWifi/SetupWifiStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/SetupWifi/SetupWifiStyles.js -------------------------------------------------------------------------------- /offroad/js/components/SetupWifi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/SetupWifi/index.js -------------------------------------------------------------------------------- /offroad/js/components/UpdatePrompt/UpdatePrompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/UpdatePrompt/UpdatePrompt.js -------------------------------------------------------------------------------- /offroad/js/components/UpdatePrompt/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/UpdatePrompt/index.js -------------------------------------------------------------------------------- /offroad/js/components/training/Onboarding/Onboarding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/training/Onboarding/Onboarding.js -------------------------------------------------------------------------------- /offroad/js/components/training/Onboarding/OnboardingStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/training/Onboarding/OnboardingStyles.js -------------------------------------------------------------------------------- /offroad/js/components/training/Onboarding/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/training/Onboarding/index.js -------------------------------------------------------------------------------- /offroad/js/components/training/step.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/components/training/step.js -------------------------------------------------------------------------------- /offroad/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/config.js -------------------------------------------------------------------------------- /offroad/js/img/circled-checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/circled-checkmark.png -------------------------------------------------------------------------------- /offroad/js/img/icon_app_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_app_store.png -------------------------------------------------------------------------------- /offroad/js/img/icon_calibration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_calibration.png -------------------------------------------------------------------------------- /offroad/js/img/icon_checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_checkmark.png -------------------------------------------------------------------------------- /offroad/js/img/icon_chevron_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_chevron_right.png -------------------------------------------------------------------------------- /offroad/js/img/icon_connect_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_connect_app.png -------------------------------------------------------------------------------- /offroad/js/img/icon_eon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_eon.png -------------------------------------------------------------------------------- /offroad/js/img/icon_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_map.png -------------------------------------------------------------------------------- /offroad/js/img/icon_map_speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_map_speed.png -------------------------------------------------------------------------------- /offroad/js/img/icon_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_menu.png -------------------------------------------------------------------------------- /offroad/js/img/icon_metric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_metric.png -------------------------------------------------------------------------------- /offroad/js/img/icon_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_minus.png -------------------------------------------------------------------------------- /offroad/js/img/icon_monitoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_monitoring.png -------------------------------------------------------------------------------- /offroad/js/img/icon_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_network.png -------------------------------------------------------------------------------- /offroad/js/img/icon_openpilot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_openpilot.png -------------------------------------------------------------------------------- /offroad/js/img/icon_openpilot_mirrored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_openpilot_mirrored.png -------------------------------------------------------------------------------- /offroad/js/img/icon_play_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_play_store.png -------------------------------------------------------------------------------- /offroad/js/img/icon_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_plus.png -------------------------------------------------------------------------------- /offroad/js/img/icon_road.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_road.png -------------------------------------------------------------------------------- /offroad/js/img/icon_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_settings.png -------------------------------------------------------------------------------- /offroad/js/img/icon_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_shell.png -------------------------------------------------------------------------------- /offroad/js/img/icon_speed_limit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_speed_limit.png -------------------------------------------------------------------------------- /offroad/js/img/icon_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_user.png -------------------------------------------------------------------------------- /offroad/js/img/icon_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/icon_warning.png -------------------------------------------------------------------------------- /offroad/js/img/illustration_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/illustration_arrow.png -------------------------------------------------------------------------------- /offroad/js/img/illustration_sim_absent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/illustration_sim_absent.png -------------------------------------------------------------------------------- /offroad/js/img/illustration_sim_present.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/illustration_sim_present.png -------------------------------------------------------------------------------- /offroad/js/img/illustration_training_lane_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/illustration_training_lane_01.png -------------------------------------------------------------------------------- /offroad/js/img/illustration_training_lane_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/illustration_training_lane_02.png -------------------------------------------------------------------------------- /offroad/js/img/illustration_training_lead_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/illustration_training_lead_01.png -------------------------------------------------------------------------------- /offroad/js/img/illustration_training_lead_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/illustration_training_lead_02.png -------------------------------------------------------------------------------- /offroad/js/img/illustration_weather_clear_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/illustration_weather_clear_day.png -------------------------------------------------------------------------------- /offroad/js/img/illustration_weather_clear_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/illustration_weather_clear_night.png -------------------------------------------------------------------------------- /offroad/js/img/illustration_weather_cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/illustration_weather_cloudy.png -------------------------------------------------------------------------------- /offroad/js/img/illustration_weather_partly_cloudy_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/illustration_weather_partly_cloudy_day.png -------------------------------------------------------------------------------- /offroad/js/img/illustration_weather_partly_cloudy_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/illustration_weather_partly_cloudy_night.png -------------------------------------------------------------------------------- /offroad/js/img/illustration_weather_rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/illustration_weather_rain.png -------------------------------------------------------------------------------- /offroad/js/img/illustration_weather_snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/illustration_weather_snow.png -------------------------------------------------------------------------------- /offroad/js/img/illustration_weather_wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/illustration_weather_wind.png -------------------------------------------------------------------------------- /offroad/js/img/indicator_wifi_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/indicator_wifi_0.png -------------------------------------------------------------------------------- /offroad/js/img/indicator_wifi_100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/indicator_wifi_100.png -------------------------------------------------------------------------------- /offroad/js/img/indicator_wifi_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/indicator_wifi_25.png -------------------------------------------------------------------------------- /offroad/js/img/indicator_wifi_50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/indicator_wifi_50.png -------------------------------------------------------------------------------- /offroad/js/img/indicator_wifi_75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/indicator_wifi_75.png -------------------------------------------------------------------------------- /offroad/js/img/photo_baybridge_a_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/photo_baybridge_a_01.jpg -------------------------------------------------------------------------------- /offroad/js/img/photo_baybridge_b_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/photo_baybridge_b_01.jpg -------------------------------------------------------------------------------- /offroad/js/img/photo_monitoring_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/photo_monitoring_01.jpg -------------------------------------------------------------------------------- /offroad/js/img/photo_pedals_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/photo_pedals_01.jpg -------------------------------------------------------------------------------- /offroad/js/img/photo_traffic_light_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/photo_traffic_light_01.jpg -------------------------------------------------------------------------------- /offroad/js/img/photo_turn_signal_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/photo_turn_signal_02.jpg -------------------------------------------------------------------------------- /offroad/js/img/photo_wheel_buttons_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/photo_wheel_buttons_01.jpg -------------------------------------------------------------------------------- /offroad/js/img/photo_wheel_hands_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/img/photo_wheel_hands_01.jpg -------------------------------------------------------------------------------- /offroad/js/native/ChffrPlus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/native/ChffrPlus.js -------------------------------------------------------------------------------- /offroad/js/native/Geocoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/native/Geocoder.js -------------------------------------------------------------------------------- /offroad/js/native/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/native/Layout.js -------------------------------------------------------------------------------- /offroad/js/native/Logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/native/Logging.js -------------------------------------------------------------------------------- /offroad/js/native/Sim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/native/Sim.js -------------------------------------------------------------------------------- /offroad/js/native/Wifi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/native/Wifi.js -------------------------------------------------------------------------------- /offroad/js/navigators/StackNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/navigators/StackNavigator.js -------------------------------------------------------------------------------- /offroad/js/store/driving/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/store/driving/actions.js -------------------------------------------------------------------------------- /offroad/js/store/driving/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/store/driving/reducer.js -------------------------------------------------------------------------------- /offroad/js/store/environment/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/store/environment/actions.js -------------------------------------------------------------------------------- /offroad/js/store/environment/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/store/environment/reducer.js -------------------------------------------------------------------------------- /offroad/js/store/host/SimState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/store/host/SimState.js -------------------------------------------------------------------------------- /offroad/js/store/host/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/store/host/actions.js -------------------------------------------------------------------------------- /offroad/js/store/host/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/store/host/reducer.js -------------------------------------------------------------------------------- /offroad/js/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/store/index.js -------------------------------------------------------------------------------- /offroad/js/store/nav/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/store/nav/actions.js -------------------------------------------------------------------------------- /offroad/js/store/nav/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/store/nav/reducer.js -------------------------------------------------------------------------------- /offroad/js/store/params/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/store/params/actions.js -------------------------------------------------------------------------------- /offroad/js/store/params/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/store/params/reducer.js -------------------------------------------------------------------------------- /offroad/js/store/uploads/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/store/uploads/actions.js -------------------------------------------------------------------------------- /offroad/js/store/uploads/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/store/uploads/reducer.js -------------------------------------------------------------------------------- /offroad/js/styles/gradients.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/styles/gradients.js -------------------------------------------------------------------------------- /offroad/js/themes/ChffrPlusTheme/ChffrPlusTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/themes/ChffrPlusTheme/ChffrPlusTheme.js -------------------------------------------------------------------------------- /offroad/js/themes/ChffrPlusTheme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/themes/ChffrPlusTheme/index.js -------------------------------------------------------------------------------- /offroad/js/themes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/themes/index.js -------------------------------------------------------------------------------- /offroad/js/timers/UploadProgressTimer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/timers/UploadProgressTimer.js -------------------------------------------------------------------------------- /offroad/js/utils/AppStateListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/utils/AppStateListener.js -------------------------------------------------------------------------------- /offroad/js/utils/DestinationListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/utils/DestinationListener.js -------------------------------------------------------------------------------- /offroad/js/utils/GeocodeListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/utils/GeocodeListener.js -------------------------------------------------------------------------------- /offroad/js/utils/HomeButtonListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/utils/HomeButtonListener.js -------------------------------------------------------------------------------- /offroad/js/utils/SettingsButtonListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/utils/SettingsButtonListener.js -------------------------------------------------------------------------------- /offroad/js/utils/SimStateListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/utils/SimStateListener.js -------------------------------------------------------------------------------- /offroad/js/utils/ThermalListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/utils/ThermalListener.js -------------------------------------------------------------------------------- /offroad/js/utils/WifiStateListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/utils/WifiStateListener.js -------------------------------------------------------------------------------- /offroad/js/utils/bytes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/utils/bytes.js -------------------------------------------------------------------------------- /offroad/js/utils/conversions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/utils/conversions.js -------------------------------------------------------------------------------- /offroad/js/utils/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/utils/nav.js -------------------------------------------------------------------------------- /offroad/js/utils/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/utils/number.js -------------------------------------------------------------------------------- /offroad/js/utils/pluralize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/utils/pluralize.js -------------------------------------------------------------------------------- /offroad/js/utils/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/utils/url.js -------------------------------------------------------------------------------- /offroad/js/utils/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/js/utils/version.js -------------------------------------------------------------------------------- /offroad/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/package.json -------------------------------------------------------------------------------- /offroad/rn-cli-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/rn-cli-config.js -------------------------------------------------------------------------------- /offroad/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/offroad/yarn.lock -------------------------------------------------------------------------------- /tools/signapk/build_android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/tools/signapk/build_android.sh -------------------------------------------------------------------------------- /tools/signapk/certificate.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/tools/signapk/certificate.pem -------------------------------------------------------------------------------- /tools/signapk/key.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/tools/signapk/key.pk8 -------------------------------------------------------------------------------- /tools/signapk/platform.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/tools/signapk/platform.pk8 -------------------------------------------------------------------------------- /tools/signapk/platform.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/tools/signapk/platform.x509.pem -------------------------------------------------------------------------------- /tools/signapk/signapk.android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/tools/signapk/signapk.android.jar -------------------------------------------------------------------------------- /tools/signapk/signapk.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/tools/signapk/signapk.jar -------------------------------------------------------------------------------- /tools/signapk/signapk_android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commaai/openpilot-apks/HEAD/tools/signapk/signapk_android --------------------------------------------------------------------------------