Driver SDK を使用する前に、次の手順で Navigation SDK と Driver SDK を初期化する必要があります。
NavigationApi
からNavigator
オブジェクトを取得します。Java
NavigationApi.getNavigator( this, // Activity new NavigationApi.NavigatorListener() { @Override public void onNavigatorReady(Navigator navigator) { // Keep a reference to the Navigator (used to configure and start nav) this.navigator = navigator; } } );
Kotlin
NavigationApi.getNavigator( this, // Activity object : NavigatorListener() { override fun onNavigatorReady(navigator: Navigator) { // Keep a reference to the Navigator (used to configure and start nav) this@myActivity.navigator = navigator } }, )
DriverContext
オブジェクトを作成し、必須フィールドに値を入力します。DriverContext
オブジェクトを初期化するには、Google Cloud プロジェクトのプロジェクト ID をproviderId
として入力する必要があります。詳細情報 設定方法については、このモジュールの Fleet Engine プロジェクトを作成します。Java
DriverContext driverContext = DriverContext.builder(application) .setProviderId(providerId) .setVehicleId(vehicleId) .setAuthTokenFactory(authTokenFactory) .setNavigator(navigator) .setRoadSnappedLocationProvider( NavigationApi.getRoadSnappedLocationProvider(application)) .build();
Kotlin
val driverContext = DriverContext.builder(application) .setProviderId(providerId) .setVehicleId(vehicleId) .setAuthTokenFactory(authTokenFactory) .setNavigator(navigator) .setRoadSnappedLocationProvider(NavigationApi.getRoadSnappedLocationProvider(application)) .build()
DriverContext
オブジェクトを使用して*DriverApi
を初期化します。Java
RidesharingDriverApi ridesharingDriverApi = RidesharingDriverApi.createInstance(driverContext);
Kotlin
val ridesharingDriverApi = RidesharingDriverApi.createInstance(driverContext)
API オブジェクトから
RidesharingVehicleReporter
を取得します。(*VehicleReporter
はNavigationVehicleReporter
を拡張します)。Java
RidesharingVehicleReporter vehicleReporter = ridesharingDriverApi.getRidesharingVehicleReporter();
Kotlin
val vehicleReporter = ridesharingDriverApi.getRidesharingVehicleReporter()
SSL/TLS に関する注意事項
Driver SDK の実装では、内部的に
SSL/TLS を使用して Fleet Engine サービスと安全に通信します。Android API
バージョン 23 または
以前にクライアントと通信するために SecurityProvider
パッチが必要になる場合があります。
あります。Android での SSL の使用について詳しくは、以下をご覧ください。
セキュリティ GMS プロバイダ。
この記事には、セキュリティ プロバイダにパッチを適用するコードサンプルも含まれています。