diff options
author | Iván Ávalos <avalos@disroot.org> | 2022-02-23 23:12:53 -0600 |
---|---|---|
committer | Iván Ávalos <avalos@disroot.org> | 2022-02-23 23:12:53 -0600 |
commit | 7522eaa1cf95820717f6d91a8b5879f5e14cfae2 (patch) | |
tree | e12c0b8d9666686ba932c8595e1771f555b75985 | |
parent | 72e24c7134ffb73fb03dbc3d89caa291090df8f5 (diff) | |
download | etbsa-trackermap-mobile-7522eaa1cf95820717f6d91a8b5879f5e14cfae2.tar.gz etbsa-trackermap-mobile-7522eaa1cf95820717f6d91a8b5879f5e14cfae2.tar.bz2 etbsa-trackermap-mobile-7522eaa1cf95820717f6d91a8b5879f5e14cfae2.zip |
Added NSLocation* because for some reason, Firebase asks for location. *smh*
-rw-r--r-- | iosApp/iosApp.xcodeproj/project.pbxproj | 4 | ||||
-rw-r--r-- | iosApp/iosApp/Info.plist | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/iosApp/iosApp.xcodeproj/project.pbxproj b/iosApp/iosApp.xcodeproj/project.pbxproj index ddd01b8..fd6c044 100644 --- a/iosApp/iosApp.xcodeproj/project.pbxproj +++ b/iosApp/iosApp.xcodeproj/project.pbxproj @@ -541,7 +541,7 @@ CODE_SIGN_ENTITLEMENTS = iosApp/iosApp.entitlements; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 2; DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\""; DEVELOPMENT_TEAM = 358YRZ9P3L; ENABLE_PREVIEWS = YES; @@ -579,7 +579,7 @@ CODE_SIGN_ENTITLEMENTS = iosApp/iosApp.entitlements; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 2; DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\""; DEVELOPMENT_TEAM = 358YRZ9P3L; ENABLE_PREVIEWS = YES; diff --git a/iosApp/iosApp/Info.plist b/iosApp/iosApp/Info.plist index 8c6ae75..bd5287d 100644 --- a/iosApp/iosApp/Info.plist +++ b/iosApp/iosApp/Info.plist @@ -22,6 +22,12 @@ <string>$(CURRENT_PROJECT_VERSION)</string> <key>LSRequiresIPhoneOS</key> <true/> + <key>NSLocationAlwaysAndWhenInUseUsageDescription</key> + <string>Su ubicación no es necesaria. Este permiso es solicitado por un tercero. Favor de rechazarlo.</string> + <key>NSLocationAlwaysUsageDescription</key> + <string>Su ubicación no es necesaria. Este permiso es solicitado por un tercero. Favor de rechazarlo.</string> + <key>NSLocationWhenInUseUsageDescription</key> + <string>Su ubicación no es necesaria. Este permiso es solicitado por un tercero. Favor de rechazarlo.</string> <key>UIApplicationSceneManifest</key> <dict> <key>UIApplicationSupportsMultipleScenes</key> |