You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: llm-integration-prompt.md
+36-8Lines changed: 36 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,9 +22,36 @@ dependencies {
22
22
}
23
23
```
24
24
25
-
## 2. Update AndroidManifest.xml
25
+
## 2. Setup the Secrets Gradle Plugin
26
26
27
-
Add the required permissions and the Google Maps API key meta-data to `AndroidManifest.xml`. Instruct the user to replace `YOUR_API_KEY` with their actual API key from the Google Cloud Console.
27
+
Instead of hardcoding the Google Maps API key in `AndroidManifest.xml`, use the Secrets Gradle Plugin for Android to inject the API key securely.
28
+
29
+
First, add the plugin to the project-level `build.gradle.kts`:
0 commit comments