드라이버 SDK 가져오기
시작하기 전에 시스템이 최소 요구사항을 충족하는지 확인하고 사용 환경에서 사용할 수 있는 Driver SDK를 가져옵니다.
최소 시스템 요구사항 확인하기
사용 중인 Driver SDK 버전의 최소 요구사항은 출시 노트를 참고하세요.
Driver SDK 사용: 앱이 minSdkVersion
23 이상을 타겟팅해야 합니다.
Driver SDK를 사용하는 앱을 실행하려면 Android 휴대기기가 다음과 같은 최소 요구사항을 충족해야 합니다.
Android 6.0 (API 수준 23) 이상을 실행합니다.
Google Play 서비스가 설치되어 있어야 합니다.
Navigation SDK가 설치되어 있어야 합니다.
Driver SDK 가져오기
Google Maven 저장소에서 Driver SDK 버전 4.99 이상을 가져옵니다.
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>
다음 단계
Google Cloud 콘솔 프로젝트 구성
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2025-01-14(UTC)
[null,null,["최종 업데이트: 2025-01-14(UTC)"],[[["The Driver SDK requires a minimum `minSdkVersion` of 23 and Android 6.0 (API level 23) or later on devices."],["Devices must have Google Play services and the Navigation SDK installed to run apps using the Driver SDK."],["Driver SDK versions 4.99 and later are available through the Google Maven repository and can be added using Gradle or Maven."],["After setup, proceed to configure a Google Cloud console project for further implementation."]]],[]]