Bản phát hành SDK trình điều khiển cho Android 4.0 yêu cầu bạn cập nhật mã cho một số thao tác nhất định. Hướng dẫn này trình bày những thay đổi và những việc bạn cần làm để di chuyển mã.
Thay đổi tên gói
Tên gói đã thay đổi từ com.google.android.libraries.ridesharing.driver
thành com.google.android.libraries.mapsplatform.transportation.driver
. Vui lòng cập nhật các tệp tham chiếu trong mã của bạn.
Khởi chạy SDK
Trong các phiên bản trước, bạn sẽ khởi chạy SDK Điều hướng rồi lấy tham chiếu đến lớp FleetEngine
. Trong SDK trình điều khiển phiên bản 4, hãy khởi chạy SDK như sau:
Lấy đối tượng
Navigator
từNavigationApi
.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; } } );
Tạo đối tượng
DriverContext
, điền vào các trường bắt buộc.DriverContext driverContext = DriverContext.builder(application) .setProviderId(providerId) .setVehicleId(vehicleId) .setAuthTokenFactory(authTokenFactory) .setNavigator(navigator) .setRoadSnappedLocationProvider( NavigationApi.getRoadSnappedLocationProvider(application)) .build();
Sử dụng đối tượng
DriverContext
để khởi chạy*DriverApi
.Lấy
NavigationVehicleReporter
từ đối tượng API.*VehicleReporter
mở rộngNavigationVehicleReporter
.
Bật và tắt thông tin cập nhật vị trí
Trong các phiên bản trước, bạn sẽ bật tính năng cập nhật vị trí sau khi lấy thông tin tham chiếu FleetEngine
. Trong Driver SDK phiên bản 4, hãy bật tính năng cập nhật vị trí như sau:
Khi ca làm việc của người lái xe kết thúc, hãy tắt tính năng cập nhật vị trí và đánh dấu xe là ngoại tuyến bằng cách gọi NavigationVehicleReporter.disableLocationTracking()
.
Báo cáo lỗi bằng StatusListener
ErrorListener
đã bị xoá và kết hợp với StatusListener
, bạn có thể xác định như sau:
class MyStatusListener implements StatusListener {
/** Called when background status is updated, during actions such as location reporting. */
@Override
public void updateStatus(
StatusLevel statusLevel, StatusCode statusCode, String statusMsg) {
// Status handling stuff goes here.
// StatusLevel may be DEBUG, INFO, WARNING, or ERROR.
// StatusCode may be DEFAULT, UNKNOWN_ERROR, VEHICLE_NOT_FOUND,
// BACKEND_CONNECTIVITY_ERROR, or PERMISSION_DENIED.
}
}