इस पेज पर, अपने डेवलपमेंट प्रोजेक्ट में नेविगेशन SDK को इंटिग्रेट करने का तरीका बताया गया है.
अपने प्रोजेक्ट में Navigation SDK जोड़ना
नेविगेशन SDK टूल, Google
Maven
डेटा स्टोर करने की जगह.
अपने Gradle build.gradle
या Maven pom.xml
कॉन्फ़िगरेशन का इस्तेमाल करके, अपने प्रोजेक्ट में SDK टूल जोड़ा जा सकता है.
अपने Gradle या Maven कॉन्फ़िगरेशन में यह डिपेंडेंसी जोड़ें. इसके लिए,
VERSION_NUMBER
प्लेसहोल्डर को Android के लिए Navigation SDK टूल के अपने पसंदीदा वर्शन से बदलें.ग्रेडल
अपने मॉड्यूल-लेवल
build.gradle
में यह जोड़ें:dependencies { ... implementation 'com.google.android.libraries.navigation:navigation:VERSION_NUMBER' }
Maven
अपने
pom.xml
में यह जोड़ें:<dependencies> ... <dependency> <groupId>com.google.android.libraries.navigation</groupId> <artifactId>navigation</artifactId> <version>VERSION_NUMBER</version> </dependency> </dependencies>
अगर आपके ऐप्लिकेशन में Maps SDK टूल का इस्तेमाल करने वाली कोई डिपेंडेंसी है, तो आपको Maps SDK टूल पर निर्भर हर डिपेंडेंसी को हटाना होगा.
ग्रेडल
अपने टॉप-लेवल
build.gradle
में यह जोड़ें:allprojects { ... // Required: you must exclude the Google Play service Maps SDK from // your transitive dependencies. This is to ensure there won't be // multiple copies of Google Maps SDK in your binary, as the Navigation // SDK already bundles the Google Maps SDK. configurations { implementation { exclude group: 'com.google.android.gms', module: 'play-services-maps' } } }
Maven
pom.xml
में यह जोड़ें:<dependencies> <dependency> <groupId>project.that.brings.in.maps</groupId> <artifactId>MapsConsumer</artifactId> <version>1.0</version> <exclusions> <!-- Navigation SDK already bundles Maps SDK. You must exclude it to prevent duplication--> <exclusion> <!-- declare the exclusion here --> <groupId>com.google.android.gms</groupId> <artifactId>play-services-maps</artifactId> </exclusion> </exclusions> </dependency> </dependencies>
बिल्ड कॉन्फ़िगर करना
प्रोजेक्ट बनाने के बाद, नेविगेशन SDK टूल बनाने और इस्तेमाल करने में समस्या आ रही है.
स्थानीय प्रॉपर्टी अपडेट करें
- Gradle स्क्रिप्ट फ़ोल्डर में,
local.properties
फ़ाइल खोलें औरandroid.useDeprecatedNdk=true
जोड़ें.
Gradle बिल्ड स्क्रिप्ट अपडेट करना
build.gradle (Module:app)
फ़ाइल खोलें और इन दिशा-निर्देशों का पालन करें सेटिंग अपडेट करने के लिए, नेविगेशन SDK टूल और सेटिंग में जाकर, ऑप्टिमाइज़ेशन विकल्पों का भी इस्तेमाल कर सकते हैं.नेविगेशन SDK टूल के लिए ज़रूरी सेटिंग
minSdkVersion
को 23 या उससे ज़्यादा पर सेट करें.targetSdkVersion
को 34 या उससे ज़्यादा पर सेट करें.- ऐसी
dexOptions
सेटिंग जोड़ें जोjavaMaxHeapSize
को बढ़ाती हो. - अतिरिक्त लाइब्रेरी के लिए जगह सेट करें.
- इसके लिए
repositories
औरdependencies
जोड़ें नेविगेशन SDK टूल. - डिपेंडेंसी में वर्शन के नंबर को सबसे नए वर्शन से बदलें उपलब्ध वर्शन हैं.
बिल्ड में लगने वाले समय को कम करने के लिए वैकल्पिक सेटिंग
- R8/ProGuard का इस्तेमाल करके, कोड और संसाधन को छोटा करने की सुविधा चालू करें. इससे, डिपेंडेंसी से इस्तेमाल न होने वाले कोड और संसाधन हट जाएंगे. अगर R8/ProGuard चरण को चलने में बहुत ज़्यादा समय लगता है, तो डेवलपमेंट के काम के लिए मल्टीडेक्स चालू करें.
- बिल्ड में शामिल भाषा के अनुवादों की संख्या कम करें: डेवलपमेंट के दौरान, किसी एक भाषा के लिए
resConfigs
सेट करें. फ़ाइनल बिल्ड के लिए,resConfigs
को उन भाषाओं के लिए सेट करें जिन्हें आप असल में इस्तेमाल करते हैं. डिफ़ॉल्ट रूप से, Gradle इसमें उन सभी भाषाओं के लिए संसाधन स्ट्रिंग शामिल होती हैं जो नेविगेशन SDK टूल.
Java8 से जुड़ी सहायता के लिए सेटिंग जोड़ना
- अगर Android Gradle प्लग इन 4.0.0 या इसके बाद के वर्शन का इस्तेमाल करके ऐप्लिकेशन बनाया जा रहा है, तो प्लग इन कई Java 8 भाषा एपीआई का इस्तेमाल करने की सुविधा देता है. ज़्यादा जानकारी के लिए, Java 8 में डेसुगर करने की सुविधा देखें. उदाहरण के तौर पर, नीचे दी गई स्क्रिप्ट का स्निपेट देखें. इसमें, कॉम्पाइल करने और डिपेंडेंसी के विकल्पों के बारे में बताया गया है.
- हम Gradle 8.4, 'Android Gradle प्लग इन' वर्शन का इस्तेमाल करने का सुझाव देते हैं
8.3.0 और Desugar लाइब्रेरी
com.android.tools:desugar_jdk_libs_nio:2.0.3
. यह सेटअप साथ काम करता है जिसमें Android 6.0.0 और इसके बाद के वर्शन के लिए नेविगेशन SDK टूल हो. app
मॉड्यूल और ऐसे किसी भी मॉड्यूल के लिए, Desugar लाइब्रेरी चालू होनी चाहिए जो सीधे तौर पर Navigation SDK टूल पर निर्भर करता है.
नीचे, ऐप्लिकेशन के लिए Gradle बिल्ड स्क्रिप्ट का एक उदाहरण दिया गया है. सेटअप के निर्देश देखें सैंपल ऐप्लिकेशन, ताकि डिपेंडेंसी के अपडेट किए गए सेट का इस्तेमाल किया जा सके. आप जिस नेविगेशन SDK का इस्तेमाल कर रहे हैं वह थोड़ा आगे हो सकता है या देखें.
apply plugin: 'com.android.application'
ext {
navSdk = "__NAVSDK_VERSION__"
}
android {
compileSdk 33
buildToolsVersion='28.0.3'
defaultConfig {
applicationId "<your id>"
// Navigation SDK supports SDK 23 and later.
minSdkVersion 23
targetSdkVersion 34
versionCode 1
versionName "1.0"
// Set this to the languages you actually use, otherwise you'll include resource strings
// for all languages supported by the Navigation SDK.
resConfigs "en"
multiDexEnabled true
}
dexOptions {
// This increases the amount of memory available to the dexer. This is required to build
// apps using the Navigation SDK.
javaMaxHeapSize "4g"
}
buildTypes {
// Run ProGuard. Note that the Navigation SDK includes its own ProGuard configuration.
// The configuration is included transitively by depending on the Navigation SDK.
// If the ProGuard step takes too long, consider enabling multidex for development work
// instead.
all {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
// Flag to enable support for the new language APIs
coreLibraryDesugaringEnabled true
// Sets Java compatibility to Java 8
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
repositories {
// Navigation SDK for Android and other libraries are hosted on Google's Maven repository.
google()
}
dependencies {
// Include the Google Navigation SDK.
// Note: remember to exclude Google Play service Maps SDK from your transitive
// dependencies to avoid duplicate copies of the Google Maps SDK.
api "com.google.android.libraries.navigation:navigation:${navSdk}"
// Declare other dependencies for your app here.
annotationProcessor "androidx.annotation:annotation:1.7.0"
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs_nio:2.0.3'
}
अपने ऐप्लिकेशन में एपीआई पासकोड जोड़ना
इस सेक्शन में, एपीआई पासकोड को सेव करने का तरीका बताया गया है, ताकि इसका इस्तेमाल
आपका ऐप्लिकेशन. आपको वर्शन कंट्रोल सिस्टम में एपीआई पासकोड की जांच नहीं करनी चाहिए. इसलिए, हमारा सुझाव है कि
इसे secrets.properties
फ़ाइल में स्टोर कर रही है, जो आपकी रूट डायरेक्ट्री में मौजूद है
प्रोजेक्ट. secrets.properties
फ़ाइल के बारे में ज़्यादा जानकारी के लिए, देखें
Gradle प्रॉपर्टी फ़ाइलें.
इस टास्क को आसान बनाने के लिए, हमारा सुझाव है कि आप Android के लिए सीक्रेट ग्रेडल प्लग इन.
अपने Google Maps प्रोजेक्ट में Android के लिए Secrets Gradle प्लग इन इंस्टॉल करने के लिए:
-
Android Studio में, अपनी टॉप-लेवल
build.gradle.kts
याbuild.gradle
फ़ाइल खोलें औरbuildscript
के नीचे मौजूदdependencies
एलिमेंट में यह कोड जोड़ें.Kotlin
buildscript { dependencies { classpath("com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1") } }
ग्रूवी
buildscript { dependencies { classpath "com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.1" } }
-
मॉड्यूल-लेवल की
build.gradle.kts
याbuild.gradle
फ़ाइल खोलें औरplugins
एलिमेंट में यह कोड जोड़ें.Kotlin
plugins { // ... id("com.google.android.libraries.mapsplatform.secrets-gradle-plugin") }
ग्रूवी
plugins { // ... id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin' }
- अपने मॉड्यूल-लेवल की
build.gradle.kts
याbuild.gradle
फ़ाइल में, पक्का करें कि वहtargetSdk
औरcompileSdk
सेट हैं 34 तक. - फ़ाइल सेव करें और अपने प्रोजेक्ट को Gradle के साथ सिंक करें.
-
अपनी टॉप-लेवल डायरेक्ट्री में
secrets.properties
फ़ाइल खोलें. इसके बाद, यहां दिया गया कोड जोड़ें.YOUR_API_KEY
को अपनी एपीआई पासकोड से बदलें. अपनी कुंजी इस फ़ाइल में सेव करें क्योंकि वर्शन कंट्रोल मेंsecrets.properties
की जांच नहीं की गई है सिस्टम.NAV_API_KEY=YOUR_API_KEY
- फ़ाइल सेव करें.
-
अपनी टॉप-लेवल डायरेक्ट्री में
local.defaults.properties
फ़ाइल बनाएं. यह फ़ाइल,secrets.properties
फ़ाइल वाले फ़ोल्डर में होनी चाहिए. इसके बाद, नीचे दिया गया कोड जोड़ें.NAV_API_KEY=DEFAULT_API_KEY
इस फ़ाइल का मकसद, एपीआई पासकोड के लिए बैकअप जगह की जानकारी देना है, अगर
secrets.properties
फ़ाइल नहीं मिली है, ताकि बिल्ड विफल न हो. ऐसा तब हो सकता है, जब आपने वर्शन कंट्रोल सिस्टम से ऐप्लिकेशन का क्लोन बनाया है. इसमेंsecrets.properties
और आपने अभी तक स्थानीय भाषा मेंsecrets.properties
फ़ाइल नहीं बनाई है. एपीआई पासकोड. - फ़ाइल सेव करें.
-
अपनी
AndroidManifest.xml
फ़ाइल में,com.google.android.geo.API_KEY
पर जाएं औरandroid:value attribute
को अपडेट करें. अगर<meta-data>
टैग मौजूद नहीं है, तो उसे<application>
टैग.<meta-data android:name="com.google.android.geo.API_KEY" android:value="${MAPS_API_KEY}" />
Note:
com.google.android.geo.API_KEY
is the recommended metadata name for the API key. A key with this name can be used to authenticate to multiple Google Maps-based APIs on the Android platform, including the Navigation SDK for Android. For backwards compatibility, the API also supports the namecom.google.android.maps.v2.API_KEY
. This legacy name allows authentication to the Android Maps API v2 only. An application can specify only one of the API key metadata names. If both are specified, the API throws an exception. -
In Android Studio, open your module-level
build.gradle.kts
orbuild.gradle
file and edit thesecrets
property. If thesecrets
property does not exist, add it.Edit the properties of the plugin to set
propertiesFileName
tosecrets.properties
, setdefaultPropertiesFileName
tolocal.defaults.properties
, and set any other properties.Kotlin
secrets { // To add your Maps API key to this project: // 1. If the secrets.properties file does not exist, create it in the same folder as the local.properties file. // 2. Add this line, where YOUR_API_KEY is your API key: // MAPS_API_KEY=YOUR_API_KEY propertiesFileName = "secrets.properties" // A properties file containing default secret values. This file can be // checked in version control. defaultPropertiesFileName = "local.defaults.properties" // Configure which keys should be ignored by the plugin by providing regular expressions. // "sdk.dir" is ignored by default. ignoreList.add("keyToIgnore") // Ignore the key "keyToIgnore" ignoreList.add("sdk.*") // Ignore all keys matching the regexp "sdk.*" }
ग्रूवी
secrets { // To add your Maps API key to this project: // 1. If the secrets.properties file does not exist, create it in the same folder as the local.properties file. // 2. Add this line, where YOUR_API_KEY is your API key: // MAPS_API_KEY=YOUR_API_KEY propertiesFileName = "secrets.properties" // A properties file containing default secret values. This file can be // checked in version control. defaultPropertiesFileName = "local.defaults.properties" // Configure which keys should be ignored by the plugin by providing regular expressions. // "sdk.dir" is ignored by default. ignoreList.add("keyToIgnore") // Ignore the key "keyToIgnore" ignoreList.add("sdk.*") // Ignore all keys matching the regexp "sdk.*" }
अपने ऐप्लिकेशन में ज़रूरी एट्रिब्यूशन शामिल करना
अगर आप अपने ऐप्लिकेशन में Android के लिए नेविगेशन SDK का इस्तेमाल करते हैं, तो आपको अपने ऐप्लिकेशन के कानूनी नोटिस में, एट्रिब्यूशन टेक्स्ट और ओपन सोर्स लाइसेंस का इस्तेमाल करें सेक्शन में जाएं.
आपको यहां ज़रूरी एट्रिब्यूशन टेक्स्ट और ओपन सोर्स लाइसेंस, Android की ZIP फ़ाइल के लिए नेविगेशन SDK टूल:
NOTICE.txt
LICENSES.txt
अगर आप मोबिलिटी या फ़्लीट इंजन डिलीवरी के ग्राहक हैं
अगर आप मोबिलिटी या फ़्लीट इंजन डिलीवरी के ग्राहक हैं, तो बिलिंग के बारे में ज़्यादा जानकारी मिलेगी. लेन-देन रिकॉर्ड करने के बारे में ज़्यादा जानने के लिए, बिलिंग सेट अप करना, बिलिंग के लायक लेन-देन रिकॉर्ड करना, रिपोर्टिंग, और बिलिंग के लायक लेन-देन रिकॉर्ड करना (Android) लेख पढ़ें.
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2024-10-18 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2024-10-18 (UTC) को अपडेट किया गया."],[],[]]