如要在 Android 消費者應用程式中分享隨選行程的旅程,請使用 Consumer SDK。如要進一步瞭解如何透過分享歷程追蹤行程, 請參閱「在 Android 裝置上追蹤行程」。
如要為 Android 消費者應用程式設定 Consumer SDK,請按照下列步驟操作:
檢查最低系統需求
請參閱版本資訊,瞭解 您使用的用戶端 SDK。請參閱版本資訊。
如要使用 Consumer SDK:您的應用程式必須指定 minSdkVersion
23 以上版本。
如要執行使用 Consumer SDK 的應用程式:Android 行動裝置必須符合下列條件: 基本需求如下:
執行 Android 6.0 (API 級別) 23) 以上版本。
已安裝 Google Play 服務。
從 Google Maven 存放區取得 Consumer SDK
從 Google Maven 存放區取得 Consumer SDK 2.1.0 以上版本。 先前使用的私人存放區管道已淘汰。
Gradle
請將以下內容新增到 build.gradle
檔案中:
repositories {
...
google()
}
Maven
請將以下內容新增到 pom.xml
檔案中:
<project>
...
<repositories>
<repository>
<id>google-maven-repository</id>
<url>https://maven.google.com</url>
</repository>
</repositories>
...
</project>