From 2e10474d7a3edf5db1e457a9d0f4fe328d8cd347 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Thu, 8 Jan 2026 14:51:31 +0000 Subject: [PATCH] feat: add Android permissions for camera and geolocation Added the following permissions to AndroidManifest.xml: - CAMERA - READ_EXTERNAL_STORAGE - WRITE_EXTERNAL_STORAGE - ACCESS_COARSE_LOCATION - ACCESS_FINE_LOCATION Also added feature declarations: - android.hardware.camera - android.hardware.location.gps These permissions are required for the functionality of taking photos and getting the device location. --- .../android/app/src/main/AndroidManifest.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/06_mobile-phototag/android/app/src/main/AndroidManifest.xml b/06_mobile-phototag/android/app/src/main/AndroidManifest.xml index 4d7ca38..4cd21f8 100644 --- a/06_mobile-phototag/android/app/src/main/AndroidManifest.xml +++ b/06_mobile-phototag/android/app/src/main/AndroidManifest.xml @@ -38,4 +38,12 @@ + + + + + + + +