├── .gitignore ├── AndroidManifest.xml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── calendarsync ├── AndroidManifest.xml ├── build.gradle ├── src │ └── com │ │ └── google │ │ └── android │ │ ├── connecteddevice │ │ └── calendarsync │ │ │ ├── android │ │ │ ├── AttendeeContentDelegate.java │ │ │ ├── BaseContentDelegate.java │ │ │ ├── CalendarContentDelegate.java │ │ │ ├── CalendarSyncAccess.java │ │ │ ├── ContentOwnership.java │ │ │ ├── EventContentDelegate.java │ │ │ ├── FieldTranslator.java │ │ │ ├── HandlerScheduler.java │ │ │ └── ResolverCalendarsObservable.java │ │ │ └── common │ │ │ ├── AttendeeManager.java │ │ │ ├── BaseCalendarSync.java │ │ │ ├── BaseComponentBuilder.java │ │ │ ├── CalendarManager.java │ │ │ ├── CalendarStore.java │ │ │ ├── CalendarsObservable.java │ │ │ ├── CommonLogger.java │ │ │ ├── ContentCleanerDelegate.java │ │ │ ├── ContentManager.java │ │ │ ├── EventManager.java │ │ │ ├── PlatformContentDelegate.java │ │ │ ├── RemoteSender.java │ │ │ ├── ReplicaCalendarSync.java │ │ │ ├── ReplicaCalendarSyncComponent.java │ │ │ ├── Scheduler.java │ │ │ ├── SourceCalendarSync.java │ │ │ ├── SourceCalendarSyncComponent.java │ │ │ ├── TimeProtoUtil.java │ │ │ ├── TimeWindow.java │ │ │ ├── package-info.java │ │ │ └── update.proto │ │ └── libraries │ │ └── car │ │ └── calendarsync │ │ └── feature │ │ ├── CalendarSyncFeature.kt │ │ ├── CalendarSyncManagerV2.kt │ │ ├── CompanionFeature.kt │ │ ├── repository │ │ ├── AttendeeConverter.java │ │ ├── AttendeeRepository.java │ │ ├── BaseConverter.java │ │ ├── BaseRepository.java │ │ ├── CalendarConverter.java │ │ ├── CalendarRepository.java │ │ ├── EventConverter.java │ │ └── EventRepository.java │ │ └── settings.proto └── tests │ └── unit │ └── src │ └── com │ └── google │ └── android │ └── libraries │ └── car │ └── calendarsync │ ├── feature │ ├── CalendarSyncManagerNoPermissionTest.kt │ ├── CalendarSyncManagerV2Test.kt │ └── repository │ │ ├── AndroidManifest.xml │ │ ├── AttendeeConverterTest.java │ │ ├── CalendarConverterTest.java │ │ ├── CalendarProviderTest.java │ │ ├── Constants.java │ │ ├── EventConverterTest.java │ │ ├── MockAttendeeRepository.java │ │ └── MockEventRepository.java │ └── util │ └── FakeCursor.java ├── communication ├── AndroidManifest.xml ├── README.md ├── build.gradle ├── src │ └── com │ │ └── google │ │ └── android │ │ └── libraries │ │ └── car │ │ ├── communication │ │ └── messagingsync │ │ │ ├── DebugLogs.kt │ │ │ ├── MessagingNotificationHandler.kt │ │ │ ├── MessagingSyncManager.kt │ │ │ ├── MessagingUtils.kt │ │ │ ├── NotificationHandlerSharedState.kt │ │ │ ├── PhoneToCarMessageDAO.kt │ │ │ ├── TimeProvider.kt │ │ │ └── res │ │ │ └── values │ │ │ └── config.xml │ │ └── notifications │ │ ├── NotificationAccessUtils.kt │ │ ├── NotificationListener.kt │ │ ├── NotificationSyncManager.kt │ │ └── NotificationUtils.kt └── tests │ └── unit │ └── src │ └── com │ └── google │ └── android │ └── libraries │ └── car │ ├── communication │ └── messagingsync │ │ ├── MessagingNotificationHandlerTest.kt │ │ ├── MessagingSyncManagerTest.kt │ │ ├── MessagingUtilsTest.kt │ │ └── PhoneToCarMessageDAOTest.kt │ └── notifications │ ├── CoroutineTestRule.kt │ ├── MessageNotificationMocks.kt │ ├── NotificationAccessUtilsTest.kt │ ├── NotificationSyncManagerTest.kt │ ├── NotificationUtilsTest.kt │ └── SettingsNotificationHelper.kt ├── communicationproto ├── build.gradle └── src │ └── notification_msg.proto ├── companionprotos ├── build.gradle └── src │ ├── beacon_message.proto │ ├── capabilities_exchange.proto │ ├── device_message.proto │ ├── logging_message.proto │ ├── messageV1.proto │ ├── operation_type.proto │ ├── out_of_band_association.proto │ ├── packet.proto │ ├── periodic_ping_message.proto │ ├── query.proto │ ├── system_query.proto │ ├── verification_code.proto │ └── version_exchange.proto ├── connectionservice ├── AndroidManifest.xml ├── build.gradle ├── res │ └── values │ │ └── strings.xml ├── src │ └── com │ │ └── google │ │ └── android │ │ └── libraries │ │ └── car │ │ └── connectionservice │ │ ├── ConnectedDeviceBaseService.kt │ │ ├── EventLog.kt │ │ ├── FeatureManagerService.kt │ │ └── FeatureManagerServiceBinder.kt └── tests │ └── unit │ └── src │ └── com │ └── google │ └── android │ └── libraries │ └── car │ └── connectionservice │ └── ConnectedDeviceBaseServiceTest.kt ├── encryptionrunner ├── AndroidManifest.xml ├── build.gradle ├── src │ └── com │ │ └── google │ │ └── android │ │ └── encryptionrunner │ │ ├── EncryptionRunner.java │ │ ├── EncryptionRunnerFactory.java │ │ ├── FakeEncryptionRunner.java │ │ ├── HandshakeException.java │ │ ├── HandshakeMessage.java │ │ ├── Key.java │ │ ├── OobFakeEncryptionRunner.java │ │ ├── OobUkey2EncryptionRunner.java │ │ └── Ukey2EncryptionRunner.java └── tests │ └── unit │ └── src │ └── com │ └── google │ └── android │ └── encryptionrunner │ └── EncryptionRunnerTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── loggingsupport ├── AndroidManifest.xml ├── build.gradle ├── src │ └── com │ │ └── google │ │ └── android │ │ └── libraries │ │ └── car │ │ └── loggingsupport │ │ ├── LoggingManager.kt │ │ └── Utils.kt └── tests │ └── unit │ └── src │ └── com │ └── google │ └── android │ └── libraries │ └── car │ └── loggingsupport │ └── LoggingManagerTest.kt ├── settings.gradle ├── trustagent ├── AndroidManifest.xml ├── README.md ├── build.gradle ├── res │ └── values │ │ └── configs.xml ├── src │ └── com │ │ └── google │ │ └── android │ │ └── libraries │ │ └── car │ │ └── trustagent │ │ ├── AssociatedCar.kt │ │ ├── AssociatedCarDao.kt │ │ ├── AssociatedCarEntity.kt │ │ ├── AssociatedCarManager.kt │ │ ├── AssociatedCarManagerProvider.kt │ │ ├── AssociationHandler.kt │ │ ├── AssociationManager.kt │ │ ├── AssociationRequest.kt │ │ ├── BleManager.kt │ │ ├── BluetoothManagerWrapper.kt │ │ ├── BluetoothRfcommChannel.kt │ │ ├── CapabilityResolver.kt │ │ ├── Car.kt │ │ ├── CompanionDeviceManagerHandler.kt │ │ ├── ConnectedCarDatabase.kt │ │ ├── ConnectedDeviceManager.kt │ │ ├── ConnectionManager.kt │ │ ├── ConnectionResolver.kt │ │ ├── ContextExtensions.kt │ │ ├── DatabaseProvider.kt │ │ ├── DiscoveredCar.kt │ │ ├── DiscoveryRequest.kt │ │ ├── EncryptionRunnerManager.kt │ │ ├── FeatureManager.kt │ │ ├── FeatureSupportStatusProvider.kt │ │ ├── IntermediaryFeatureManager.kt │ │ ├── OobChannel.kt │ │ ├── OobChannelManager.kt │ │ ├── OobChannelManagerFactory.kt │ │ ├── OobConnectionManager.kt │ │ ├── OobData.kt │ │ ├── PassThroughOobChannel.kt │ │ ├── PendingCar.kt │ │ ├── PendingCarV2Association.kt │ │ ├── PendingCarV2Reconnection.kt │ │ ├── PendingCarV3Association.kt │ │ ├── PendingCarV4Association.kt │ │ ├── PeriodicPingManager.kt │ │ ├── Query.kt │ │ ├── SystemFeatureManager.kt │ │ ├── UriElements.kt │ │ ├── VersionResolver.kt │ │ ├── api │ │ └── PublicApi.kt │ │ ├── blemessagestream │ │ ├── AndroidManifest.xml │ │ ├── BluetoothConnectionManager.kt │ │ ├── BluetoothGattHandle.kt │ │ ├── BluetoothGattManager.kt │ │ ├── ConnectTask.kt │ │ ├── GattHandle.kt │ │ ├── GattHandleCallback.kt │ │ ├── MessageStream.kt │ │ ├── ReadMessageTask.kt │ │ ├── SppManager.kt │ │ ├── VarInt.kt │ │ └── version2 │ │ │ ├── BluetoothMessageStreamV2.kt │ │ │ ├── PacketFactory.kt │ │ │ └── PacketPayloadStream.kt │ │ ├── storage │ │ ├── CryptoHelper.kt │ │ ├── DeviceIdManager.kt │ │ └── KeyStoreCryptoHelper.kt │ │ └── util │ │ ├── Log.kt │ │ ├── LogRecord.kt │ │ ├── Logger.kt │ │ ├── TimeProvider.kt │ │ └── Util.kt └── tests │ └── unit │ ├── schemas │ └── com.google.android.libraries.car.trustagent.ConnectedCarDatabase │ │ ├── 3.json │ │ └── 4.json │ └── src │ └── com │ └── google │ └── android │ └── libraries │ └── car │ └── trustagent │ ├── AndroidManifest.xml │ ├── AssociatedCarManagerTest.kt │ ├── AssociationManagerCreateRawDataFilterTest.kt │ ├── AssociationManagerMissingBluetoothPermissionsTest.kt │ ├── AssociationManagerTest.kt │ ├── BluetoothRfcommChannelTest.kt │ ├── CapabilityResolverTest.kt │ ├── CarTest.kt │ ├── ConnectedDeviceManagerTest.kt │ ├── ConnectionManagerTest.kt │ ├── EncryptionRunnerManagerTest.kt │ ├── FakeBleManager.kt │ ├── FeatureManagerTest.kt │ ├── MigrationTest.kt │ ├── OobChannelManagerFactoryTest.kt │ ├── OobChannelManagerTest.kt │ ├── OobConnectionManagerTest.kt │ ├── PacketPayloadStreamTest.kt │ ├── PendingCarV2AssociationTest.kt │ ├── PendingCarV2ReconnectionTest.kt │ ├── PendingCarV3AssociationOobTest.kt │ ├── PendingCarV3AssociationTest.kt │ ├── PendingCarV4AssociationOobTest.kt │ ├── PendingCarV4AssociationTest.kt │ ├── PeriodicPingManagerTest.kt │ ├── SystemFeatureManagerTest.kt │ ├── TestAssociationHandler.kt │ ├── UriElementsTest.kt │ ├── VersionResolverTest.kt │ ├── blemessagestream │ ├── BluetoothGattManagerTest.kt │ ├── BluetoothMessageStreamV2Test.kt │ ├── FakeBluetoothConnectionManager.kt │ ├── MessageStreamTest.kt │ └── ReadMessageTaskTest.kt │ └── testutils │ ├── Base64CryptoHelper.kt │ ├── FakeKey.kt │ ├── FakeMessageStream.kt │ ├── FakeSecretKey.kt │ └── PlatformFakes.kt ├── trusteddevice ├── AndroidManifest.xml ├── build.gradle ├── src │ └── com │ │ └── google │ │ └── android │ │ └── libraries │ │ └── car │ │ └── trusteddevice │ │ ├── DeviceSecurityUtil.kt │ │ ├── PhoneUnlockedBroadcastReceiver.kt │ │ ├── TrustedDeviceFeature.kt │ │ ├── TrustedDeviceManager.kt │ │ └── storage │ │ ├── AndroidManifest.xml │ │ ├── Converters.kt │ │ ├── Credential.kt │ │ ├── DatabaseProvider.kt │ │ ├── FeatureState.kt │ │ ├── TrustedDeviceDao.kt │ │ ├── TrustedDeviceDatabase.kt │ │ ├── TrustedDeviceManagerStorage.kt │ │ └── UnlockHistory.kt └── tests │ └── unit │ ├── schemas │ └── com.google.android.libraries.car.trusteddevice.storage.TrustedDeviceDatabase │ │ ├── 3.json │ │ └── 4.json │ └── src │ └── com │ └── google │ └── android │ └── libraries │ └── car │ └── trusteddevice │ ├── TrustedDeviceManagerTest.kt │ └── storage │ ├── DatabaseMigrationTest.kt │ ├── FakeClock.java │ └── TrustedDeviceManagerStorageTest.kt └── trusteddeviceproto ├── build.gradle └── src ├── phone_auth.proto └── trusted_device_message.proto /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/README.md -------------------------------------------------------------------------------- /calendarsync/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/AndroidManifest.xml -------------------------------------------------------------------------------- /calendarsync/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/build.gradle -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/android/AttendeeContentDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/android/AttendeeContentDelegate.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/android/BaseContentDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/android/BaseContentDelegate.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/android/CalendarContentDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/android/CalendarContentDelegate.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/android/CalendarSyncAccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/android/CalendarSyncAccess.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/android/ContentOwnership.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/android/ContentOwnership.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/android/EventContentDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/android/EventContentDelegate.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/android/FieldTranslator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/android/FieldTranslator.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/android/HandlerScheduler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/android/HandlerScheduler.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/android/ResolverCalendarsObservable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/android/ResolverCalendarsObservable.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/AttendeeManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/AttendeeManager.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/BaseCalendarSync.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/BaseCalendarSync.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/BaseComponentBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/BaseComponentBuilder.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/CalendarManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/CalendarManager.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/CalendarStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/CalendarStore.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/CalendarsObservable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/CalendarsObservable.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/CommonLogger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/CommonLogger.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/ContentCleanerDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/ContentCleanerDelegate.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/ContentManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/ContentManager.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/EventManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/EventManager.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/PlatformContentDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/PlatformContentDelegate.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/RemoteSender.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/RemoteSender.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/ReplicaCalendarSync.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/ReplicaCalendarSync.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/ReplicaCalendarSyncComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/ReplicaCalendarSyncComponent.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/Scheduler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/Scheduler.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/SourceCalendarSync.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/SourceCalendarSync.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/SourceCalendarSyncComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/SourceCalendarSyncComponent.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/TimeProtoUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/TimeProtoUtil.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/TimeWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/TimeWindow.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/package-info.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/connecteddevice/calendarsync/common/update.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/connecteddevice/calendarsync/common/update.proto -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/libraries/car/calendarsync/feature/CalendarSyncFeature.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/libraries/car/calendarsync/feature/CalendarSyncFeature.kt -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/libraries/car/calendarsync/feature/CalendarSyncManagerV2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/libraries/car/calendarsync/feature/CalendarSyncManagerV2.kt -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/libraries/car/calendarsync/feature/CompanionFeature.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/libraries/car/calendarsync/feature/CompanionFeature.kt -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/libraries/car/calendarsync/feature/repository/AttendeeConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/libraries/car/calendarsync/feature/repository/AttendeeConverter.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/libraries/car/calendarsync/feature/repository/AttendeeRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/libraries/car/calendarsync/feature/repository/AttendeeRepository.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/libraries/car/calendarsync/feature/repository/BaseConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/libraries/car/calendarsync/feature/repository/BaseConverter.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/libraries/car/calendarsync/feature/repository/BaseRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/libraries/car/calendarsync/feature/repository/BaseRepository.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/libraries/car/calendarsync/feature/repository/CalendarConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/libraries/car/calendarsync/feature/repository/CalendarConverter.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/libraries/car/calendarsync/feature/repository/CalendarRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/libraries/car/calendarsync/feature/repository/CalendarRepository.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/libraries/car/calendarsync/feature/repository/EventConverter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/libraries/car/calendarsync/feature/repository/EventConverter.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/libraries/car/calendarsync/feature/repository/EventRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/libraries/car/calendarsync/feature/repository/EventRepository.java -------------------------------------------------------------------------------- /calendarsync/src/com/google/android/libraries/car/calendarsync/feature/settings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/src/com/google/android/libraries/car/calendarsync/feature/settings.proto -------------------------------------------------------------------------------- /calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/CalendarSyncManagerNoPermissionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/CalendarSyncManagerNoPermissionTest.kt -------------------------------------------------------------------------------- /calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/CalendarSyncManagerV2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/CalendarSyncManagerV2Test.kt -------------------------------------------------------------------------------- /calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/repository/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/repository/AndroidManifest.xml -------------------------------------------------------------------------------- /calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/repository/AttendeeConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/repository/AttendeeConverterTest.java -------------------------------------------------------------------------------- /calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/repository/CalendarConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/repository/CalendarConverterTest.java -------------------------------------------------------------------------------- /calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/repository/CalendarProviderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/repository/CalendarProviderTest.java -------------------------------------------------------------------------------- /calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/repository/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/repository/Constants.java -------------------------------------------------------------------------------- /calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/repository/EventConverterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/repository/EventConverterTest.java -------------------------------------------------------------------------------- /calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/repository/MockAttendeeRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/repository/MockAttendeeRepository.java -------------------------------------------------------------------------------- /calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/repository/MockEventRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/feature/repository/MockEventRepository.java -------------------------------------------------------------------------------- /calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/util/FakeCursor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/calendarsync/tests/unit/src/com/google/android/libraries/car/calendarsync/util/FakeCursor.java -------------------------------------------------------------------------------- /communication/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/AndroidManifest.xml -------------------------------------------------------------------------------- /communication/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/README.md -------------------------------------------------------------------------------- /communication/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/build.gradle -------------------------------------------------------------------------------- /communication/src/com/google/android/libraries/car/communication/messagingsync/DebugLogs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/src/com/google/android/libraries/car/communication/messagingsync/DebugLogs.kt -------------------------------------------------------------------------------- /communication/src/com/google/android/libraries/car/communication/messagingsync/MessagingNotificationHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/src/com/google/android/libraries/car/communication/messagingsync/MessagingNotificationHandler.kt -------------------------------------------------------------------------------- /communication/src/com/google/android/libraries/car/communication/messagingsync/MessagingSyncManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/src/com/google/android/libraries/car/communication/messagingsync/MessagingSyncManager.kt -------------------------------------------------------------------------------- /communication/src/com/google/android/libraries/car/communication/messagingsync/MessagingUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/src/com/google/android/libraries/car/communication/messagingsync/MessagingUtils.kt -------------------------------------------------------------------------------- /communication/src/com/google/android/libraries/car/communication/messagingsync/NotificationHandlerSharedState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/src/com/google/android/libraries/car/communication/messagingsync/NotificationHandlerSharedState.kt -------------------------------------------------------------------------------- /communication/src/com/google/android/libraries/car/communication/messagingsync/PhoneToCarMessageDAO.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/src/com/google/android/libraries/car/communication/messagingsync/PhoneToCarMessageDAO.kt -------------------------------------------------------------------------------- /communication/src/com/google/android/libraries/car/communication/messagingsync/TimeProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/src/com/google/android/libraries/car/communication/messagingsync/TimeProvider.kt -------------------------------------------------------------------------------- /communication/src/com/google/android/libraries/car/communication/messagingsync/res/values/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/src/com/google/android/libraries/car/communication/messagingsync/res/values/config.xml -------------------------------------------------------------------------------- /communication/src/com/google/android/libraries/car/notifications/NotificationAccessUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/src/com/google/android/libraries/car/notifications/NotificationAccessUtils.kt -------------------------------------------------------------------------------- /communication/src/com/google/android/libraries/car/notifications/NotificationListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/src/com/google/android/libraries/car/notifications/NotificationListener.kt -------------------------------------------------------------------------------- /communication/src/com/google/android/libraries/car/notifications/NotificationSyncManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/src/com/google/android/libraries/car/notifications/NotificationSyncManager.kt -------------------------------------------------------------------------------- /communication/src/com/google/android/libraries/car/notifications/NotificationUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/src/com/google/android/libraries/car/notifications/NotificationUtils.kt -------------------------------------------------------------------------------- /communication/tests/unit/src/com/google/android/libraries/car/communication/messagingsync/MessagingNotificationHandlerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/tests/unit/src/com/google/android/libraries/car/communication/messagingsync/MessagingNotificationHandlerTest.kt -------------------------------------------------------------------------------- /communication/tests/unit/src/com/google/android/libraries/car/communication/messagingsync/MessagingSyncManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/tests/unit/src/com/google/android/libraries/car/communication/messagingsync/MessagingSyncManagerTest.kt -------------------------------------------------------------------------------- /communication/tests/unit/src/com/google/android/libraries/car/communication/messagingsync/MessagingUtilsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/tests/unit/src/com/google/android/libraries/car/communication/messagingsync/MessagingUtilsTest.kt -------------------------------------------------------------------------------- /communication/tests/unit/src/com/google/android/libraries/car/communication/messagingsync/PhoneToCarMessageDAOTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/tests/unit/src/com/google/android/libraries/car/communication/messagingsync/PhoneToCarMessageDAOTest.kt -------------------------------------------------------------------------------- /communication/tests/unit/src/com/google/android/libraries/car/notifications/CoroutineTestRule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/tests/unit/src/com/google/android/libraries/car/notifications/CoroutineTestRule.kt -------------------------------------------------------------------------------- /communication/tests/unit/src/com/google/android/libraries/car/notifications/MessageNotificationMocks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/tests/unit/src/com/google/android/libraries/car/notifications/MessageNotificationMocks.kt -------------------------------------------------------------------------------- /communication/tests/unit/src/com/google/android/libraries/car/notifications/NotificationAccessUtilsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/tests/unit/src/com/google/android/libraries/car/notifications/NotificationAccessUtilsTest.kt -------------------------------------------------------------------------------- /communication/tests/unit/src/com/google/android/libraries/car/notifications/NotificationSyncManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/tests/unit/src/com/google/android/libraries/car/notifications/NotificationSyncManagerTest.kt -------------------------------------------------------------------------------- /communication/tests/unit/src/com/google/android/libraries/car/notifications/NotificationUtilsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/tests/unit/src/com/google/android/libraries/car/notifications/NotificationUtilsTest.kt -------------------------------------------------------------------------------- /communication/tests/unit/src/com/google/android/libraries/car/notifications/SettingsNotificationHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communication/tests/unit/src/com/google/android/libraries/car/notifications/SettingsNotificationHelper.kt -------------------------------------------------------------------------------- /communicationproto/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communicationproto/build.gradle -------------------------------------------------------------------------------- /communicationproto/src/notification_msg.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/communicationproto/src/notification_msg.proto -------------------------------------------------------------------------------- /companionprotos/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/companionprotos/build.gradle -------------------------------------------------------------------------------- /companionprotos/src/beacon_message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/companionprotos/src/beacon_message.proto -------------------------------------------------------------------------------- /companionprotos/src/capabilities_exchange.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/companionprotos/src/capabilities_exchange.proto -------------------------------------------------------------------------------- /companionprotos/src/device_message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/companionprotos/src/device_message.proto -------------------------------------------------------------------------------- /companionprotos/src/logging_message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/companionprotos/src/logging_message.proto -------------------------------------------------------------------------------- /companionprotos/src/messageV1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/companionprotos/src/messageV1.proto -------------------------------------------------------------------------------- /companionprotos/src/operation_type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/companionprotos/src/operation_type.proto -------------------------------------------------------------------------------- /companionprotos/src/out_of_band_association.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/companionprotos/src/out_of_band_association.proto -------------------------------------------------------------------------------- /companionprotos/src/packet.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/companionprotos/src/packet.proto -------------------------------------------------------------------------------- /companionprotos/src/periodic_ping_message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/companionprotos/src/periodic_ping_message.proto -------------------------------------------------------------------------------- /companionprotos/src/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/companionprotos/src/query.proto -------------------------------------------------------------------------------- /companionprotos/src/system_query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/companionprotos/src/system_query.proto -------------------------------------------------------------------------------- /companionprotos/src/verification_code.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/companionprotos/src/verification_code.proto -------------------------------------------------------------------------------- /companionprotos/src/version_exchange.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/companionprotos/src/version_exchange.proto -------------------------------------------------------------------------------- /connectionservice/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/connectionservice/AndroidManifest.xml -------------------------------------------------------------------------------- /connectionservice/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/connectionservice/build.gradle -------------------------------------------------------------------------------- /connectionservice/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/connectionservice/res/values/strings.xml -------------------------------------------------------------------------------- /connectionservice/src/com/google/android/libraries/car/connectionservice/ConnectedDeviceBaseService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/connectionservice/src/com/google/android/libraries/car/connectionservice/ConnectedDeviceBaseService.kt -------------------------------------------------------------------------------- /connectionservice/src/com/google/android/libraries/car/connectionservice/EventLog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/connectionservice/src/com/google/android/libraries/car/connectionservice/EventLog.kt -------------------------------------------------------------------------------- /connectionservice/src/com/google/android/libraries/car/connectionservice/FeatureManagerService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/connectionservice/src/com/google/android/libraries/car/connectionservice/FeatureManagerService.kt -------------------------------------------------------------------------------- /connectionservice/src/com/google/android/libraries/car/connectionservice/FeatureManagerServiceBinder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/connectionservice/src/com/google/android/libraries/car/connectionservice/FeatureManagerServiceBinder.kt -------------------------------------------------------------------------------- /connectionservice/tests/unit/src/com/google/android/libraries/car/connectionservice/ConnectedDeviceBaseServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/connectionservice/tests/unit/src/com/google/android/libraries/car/connectionservice/ConnectedDeviceBaseServiceTest.kt -------------------------------------------------------------------------------- /encryptionrunner/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/encryptionrunner/AndroidManifest.xml -------------------------------------------------------------------------------- /encryptionrunner/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/encryptionrunner/build.gradle -------------------------------------------------------------------------------- /encryptionrunner/src/com/google/android/encryptionrunner/EncryptionRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/encryptionrunner/src/com/google/android/encryptionrunner/EncryptionRunner.java -------------------------------------------------------------------------------- /encryptionrunner/src/com/google/android/encryptionrunner/EncryptionRunnerFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/encryptionrunner/src/com/google/android/encryptionrunner/EncryptionRunnerFactory.java -------------------------------------------------------------------------------- /encryptionrunner/src/com/google/android/encryptionrunner/FakeEncryptionRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/encryptionrunner/src/com/google/android/encryptionrunner/FakeEncryptionRunner.java -------------------------------------------------------------------------------- /encryptionrunner/src/com/google/android/encryptionrunner/HandshakeException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/encryptionrunner/src/com/google/android/encryptionrunner/HandshakeException.java -------------------------------------------------------------------------------- /encryptionrunner/src/com/google/android/encryptionrunner/HandshakeMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/encryptionrunner/src/com/google/android/encryptionrunner/HandshakeMessage.java -------------------------------------------------------------------------------- /encryptionrunner/src/com/google/android/encryptionrunner/Key.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/encryptionrunner/src/com/google/android/encryptionrunner/Key.java -------------------------------------------------------------------------------- /encryptionrunner/src/com/google/android/encryptionrunner/OobFakeEncryptionRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/encryptionrunner/src/com/google/android/encryptionrunner/OobFakeEncryptionRunner.java -------------------------------------------------------------------------------- /encryptionrunner/src/com/google/android/encryptionrunner/OobUkey2EncryptionRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/encryptionrunner/src/com/google/android/encryptionrunner/OobUkey2EncryptionRunner.java -------------------------------------------------------------------------------- /encryptionrunner/src/com/google/android/encryptionrunner/Ukey2EncryptionRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/encryptionrunner/src/com/google/android/encryptionrunner/Ukey2EncryptionRunner.java -------------------------------------------------------------------------------- /encryptionrunner/tests/unit/src/com/google/android/encryptionrunner/EncryptionRunnerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/encryptionrunner/tests/unit/src/com/google/android/encryptionrunner/EncryptionRunnerTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/gradlew -------------------------------------------------------------------------------- /loggingsupport/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/loggingsupport/AndroidManifest.xml -------------------------------------------------------------------------------- /loggingsupport/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/loggingsupport/build.gradle -------------------------------------------------------------------------------- /loggingsupport/src/com/google/android/libraries/car/loggingsupport/LoggingManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/loggingsupport/src/com/google/android/libraries/car/loggingsupport/LoggingManager.kt -------------------------------------------------------------------------------- /loggingsupport/src/com/google/android/libraries/car/loggingsupport/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/loggingsupport/src/com/google/android/libraries/car/loggingsupport/Utils.kt -------------------------------------------------------------------------------- /loggingsupport/tests/unit/src/com/google/android/libraries/car/loggingsupport/LoggingManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/loggingsupport/tests/unit/src/com/google/android/libraries/car/loggingsupport/LoggingManagerTest.kt -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/settings.gradle -------------------------------------------------------------------------------- /trustagent/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/AndroidManifest.xml -------------------------------------------------------------------------------- /trustagent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/README.md -------------------------------------------------------------------------------- /trustagent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/build.gradle -------------------------------------------------------------------------------- /trustagent/res/values/configs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/res/values/configs.xml -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/AssociatedCar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/AssociatedCar.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/AssociatedCarDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/AssociatedCarDao.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/AssociatedCarEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/AssociatedCarEntity.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/AssociatedCarManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/AssociatedCarManager.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/AssociatedCarManagerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/AssociatedCarManagerProvider.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/AssociationHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/AssociationHandler.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/AssociationManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/AssociationManager.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/AssociationRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/AssociationRequest.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/BleManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/BleManager.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/BluetoothManagerWrapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/BluetoothManagerWrapper.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/BluetoothRfcommChannel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/BluetoothRfcommChannel.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/CapabilityResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/CapabilityResolver.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/Car.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/Car.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/CompanionDeviceManagerHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/CompanionDeviceManagerHandler.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/ConnectedCarDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/ConnectedCarDatabase.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/ConnectedDeviceManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/ConnectedDeviceManager.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/ConnectionManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/ConnectionManager.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/ConnectionResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/ConnectionResolver.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/ContextExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/ContextExtensions.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/DatabaseProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/DatabaseProvider.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/DiscoveredCar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/DiscoveredCar.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/DiscoveryRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/DiscoveryRequest.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/EncryptionRunnerManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/EncryptionRunnerManager.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/FeatureManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/FeatureManager.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/FeatureSupportStatusProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/FeatureSupportStatusProvider.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/IntermediaryFeatureManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/IntermediaryFeatureManager.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/OobChannel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/OobChannel.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/OobChannelManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/OobChannelManager.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/OobChannelManagerFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/OobChannelManagerFactory.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/OobConnectionManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/OobConnectionManager.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/OobData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/OobData.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/PassThroughOobChannel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/PassThroughOobChannel.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/PendingCar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/PendingCar.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/PendingCarV2Association.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/PendingCarV2Association.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/PendingCarV2Reconnection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/PendingCarV2Reconnection.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/PendingCarV3Association.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/PendingCarV3Association.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/PendingCarV4Association.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/PendingCarV4Association.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/PeriodicPingManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/PeriodicPingManager.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/Query.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/Query.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/SystemFeatureManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/SystemFeatureManager.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/UriElements.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/UriElements.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/VersionResolver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/VersionResolver.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/api/PublicApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/api/PublicApi.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/AndroidManifest.xml -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/BluetoothConnectionManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/BluetoothConnectionManager.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/BluetoothGattHandle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/BluetoothGattHandle.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/BluetoothGattManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/BluetoothGattManager.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/ConnectTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/ConnectTask.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/GattHandle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/GattHandle.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/GattHandleCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/GattHandleCallback.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/MessageStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/MessageStream.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/ReadMessageTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/ReadMessageTask.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/SppManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/SppManager.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/VarInt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/VarInt.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/version2/BluetoothMessageStreamV2.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/version2/BluetoothMessageStreamV2.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/version2/PacketFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/version2/PacketFactory.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/version2/PacketPayloadStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/blemessagestream/version2/PacketPayloadStream.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/storage/CryptoHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/storage/CryptoHelper.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/storage/DeviceIdManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/storage/DeviceIdManager.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/storage/KeyStoreCryptoHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/storage/KeyStoreCryptoHelper.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/util/Log.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/util/Log.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/util/LogRecord.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/util/LogRecord.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/util/Logger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/util/Logger.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/util/TimeProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/util/TimeProvider.kt -------------------------------------------------------------------------------- /trustagent/src/com/google/android/libraries/car/trustagent/util/Util.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/src/com/google/android/libraries/car/trustagent/util/Util.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/schemas/com.google.android.libraries.car.trustagent.ConnectedCarDatabase/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/schemas/com.google.android.libraries.car.trustagent.ConnectedCarDatabase/3.json -------------------------------------------------------------------------------- /trustagent/tests/unit/schemas/com.google.android.libraries.car.trustagent.ConnectedCarDatabase/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/schemas/com.google.android.libraries.car.trustagent.ConnectedCarDatabase/4.json -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/AndroidManifest.xml -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/AssociatedCarManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/AssociatedCarManagerTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/AssociationManagerCreateRawDataFilterTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/AssociationManagerCreateRawDataFilterTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/AssociationManagerMissingBluetoothPermissionsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/AssociationManagerMissingBluetoothPermissionsTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/AssociationManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/AssociationManagerTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/BluetoothRfcommChannelTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/BluetoothRfcommChannelTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/CapabilityResolverTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/CapabilityResolverTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/CarTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/CarTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/ConnectedDeviceManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/ConnectedDeviceManagerTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/ConnectionManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/ConnectionManagerTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/EncryptionRunnerManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/EncryptionRunnerManagerTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/FakeBleManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/FakeBleManager.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/FeatureManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/FeatureManagerTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/MigrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/MigrationTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/OobChannelManagerFactoryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/OobChannelManagerFactoryTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/OobChannelManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/OobChannelManagerTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/OobConnectionManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/OobConnectionManagerTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/PacketPayloadStreamTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/PacketPayloadStreamTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/PendingCarV2AssociationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/PendingCarV2AssociationTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/PendingCarV2ReconnectionTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/PendingCarV2ReconnectionTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/PendingCarV3AssociationOobTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/PendingCarV3AssociationOobTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/PendingCarV3AssociationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/PendingCarV3AssociationTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/PendingCarV4AssociationOobTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/PendingCarV4AssociationOobTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/PendingCarV4AssociationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/PendingCarV4AssociationTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/PeriodicPingManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/PeriodicPingManagerTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/SystemFeatureManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/SystemFeatureManagerTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/TestAssociationHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/TestAssociationHandler.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/UriElementsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/UriElementsTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/VersionResolverTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/VersionResolverTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/blemessagestream/BluetoothGattManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/blemessagestream/BluetoothGattManagerTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/blemessagestream/BluetoothMessageStreamV2Test.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/blemessagestream/BluetoothMessageStreamV2Test.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/blemessagestream/FakeBluetoothConnectionManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/blemessagestream/FakeBluetoothConnectionManager.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/blemessagestream/MessageStreamTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/blemessagestream/MessageStreamTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/blemessagestream/ReadMessageTaskTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/blemessagestream/ReadMessageTaskTest.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/testutils/Base64CryptoHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/testutils/Base64CryptoHelper.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/testutils/FakeKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/testutils/FakeKey.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/testutils/FakeMessageStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/testutils/FakeMessageStream.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/testutils/FakeSecretKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/testutils/FakeSecretKey.kt -------------------------------------------------------------------------------- /trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/testutils/PlatformFakes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trustagent/tests/unit/src/com/google/android/libraries/car/trustagent/testutils/PlatformFakes.kt -------------------------------------------------------------------------------- /trusteddevice/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/AndroidManifest.xml -------------------------------------------------------------------------------- /trusteddevice/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/build.gradle -------------------------------------------------------------------------------- /trusteddevice/src/com/google/android/libraries/car/trusteddevice/DeviceSecurityUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/src/com/google/android/libraries/car/trusteddevice/DeviceSecurityUtil.kt -------------------------------------------------------------------------------- /trusteddevice/src/com/google/android/libraries/car/trusteddevice/PhoneUnlockedBroadcastReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/src/com/google/android/libraries/car/trusteddevice/PhoneUnlockedBroadcastReceiver.kt -------------------------------------------------------------------------------- /trusteddevice/src/com/google/android/libraries/car/trusteddevice/TrustedDeviceFeature.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/src/com/google/android/libraries/car/trusteddevice/TrustedDeviceFeature.kt -------------------------------------------------------------------------------- /trusteddevice/src/com/google/android/libraries/car/trusteddevice/TrustedDeviceManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/src/com/google/android/libraries/car/trusteddevice/TrustedDeviceManager.kt -------------------------------------------------------------------------------- /trusteddevice/src/com/google/android/libraries/car/trusteddevice/storage/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/src/com/google/android/libraries/car/trusteddevice/storage/AndroidManifest.xml -------------------------------------------------------------------------------- /trusteddevice/src/com/google/android/libraries/car/trusteddevice/storage/Converters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/src/com/google/android/libraries/car/trusteddevice/storage/Converters.kt -------------------------------------------------------------------------------- /trusteddevice/src/com/google/android/libraries/car/trusteddevice/storage/Credential.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/src/com/google/android/libraries/car/trusteddevice/storage/Credential.kt -------------------------------------------------------------------------------- /trusteddevice/src/com/google/android/libraries/car/trusteddevice/storage/DatabaseProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/src/com/google/android/libraries/car/trusteddevice/storage/DatabaseProvider.kt -------------------------------------------------------------------------------- /trusteddevice/src/com/google/android/libraries/car/trusteddevice/storage/FeatureState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/src/com/google/android/libraries/car/trusteddevice/storage/FeatureState.kt -------------------------------------------------------------------------------- /trusteddevice/src/com/google/android/libraries/car/trusteddevice/storage/TrustedDeviceDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/src/com/google/android/libraries/car/trusteddevice/storage/TrustedDeviceDao.kt -------------------------------------------------------------------------------- /trusteddevice/src/com/google/android/libraries/car/trusteddevice/storage/TrustedDeviceDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/src/com/google/android/libraries/car/trusteddevice/storage/TrustedDeviceDatabase.kt -------------------------------------------------------------------------------- /trusteddevice/src/com/google/android/libraries/car/trusteddevice/storage/TrustedDeviceManagerStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/src/com/google/android/libraries/car/trusteddevice/storage/TrustedDeviceManagerStorage.kt -------------------------------------------------------------------------------- /trusteddevice/src/com/google/android/libraries/car/trusteddevice/storage/UnlockHistory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/src/com/google/android/libraries/car/trusteddevice/storage/UnlockHistory.kt -------------------------------------------------------------------------------- /trusteddevice/tests/unit/schemas/com.google.android.libraries.car.trusteddevice.storage.TrustedDeviceDatabase/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/tests/unit/schemas/com.google.android.libraries.car.trusteddevice.storage.TrustedDeviceDatabase/3.json -------------------------------------------------------------------------------- /trusteddevice/tests/unit/schemas/com.google.android.libraries.car.trusteddevice.storage.TrustedDeviceDatabase/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/tests/unit/schemas/com.google.android.libraries.car.trusteddevice.storage.TrustedDeviceDatabase/4.json -------------------------------------------------------------------------------- /trusteddevice/tests/unit/src/com/google/android/libraries/car/trusteddevice/TrustedDeviceManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/tests/unit/src/com/google/android/libraries/car/trusteddevice/TrustedDeviceManagerTest.kt -------------------------------------------------------------------------------- /trusteddevice/tests/unit/src/com/google/android/libraries/car/trusteddevice/storage/DatabaseMigrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/tests/unit/src/com/google/android/libraries/car/trusteddevice/storage/DatabaseMigrationTest.kt -------------------------------------------------------------------------------- /trusteddevice/tests/unit/src/com/google/android/libraries/car/trusteddevice/storage/FakeClock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/tests/unit/src/com/google/android/libraries/car/trusteddevice/storage/FakeClock.java -------------------------------------------------------------------------------- /trusteddevice/tests/unit/src/com/google/android/libraries/car/trusteddevice/storage/TrustedDeviceManagerStorageTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddevice/tests/unit/src/com/google/android/libraries/car/trusteddevice/storage/TrustedDeviceManagerStorageTest.kt -------------------------------------------------------------------------------- /trusteddeviceproto/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddeviceproto/build.gradle -------------------------------------------------------------------------------- /trusteddeviceproto/src/phone_auth.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddeviceproto/src/phone_auth.proto -------------------------------------------------------------------------------- /trusteddeviceproto/src/trusted_device_message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/android-auto-companion-android/HEAD/trusteddeviceproto/src/trusted_device_message.proto --------------------------------------------------------------------------------