We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9688fde commit 4de8df3Copy full SHA for 4de8df3
permissions.mm
@@ -15,6 +15,7 @@
15
// Dummy value to pass into function parameter for ThreadSafeFunction
16
Napi::Value NoOp(const Napi::CallbackInfo& info) { return info.Env().Undefined(); }
17
18
+// Returns the user's home folder path
19
NSString* GetUserHomeFolderPath() {
20
NSString* path;
21
BOOL isSandboxed = (nil != NSProcessInfo.processInfo.environment[@"APP_SANDBOX_CONTAINER_ID"]);
@@ -109,6 +110,7 @@
109
110
return auth_status;
111
}
112
113
+// Returns a status indicating whether or not the user has authorized location access
114
std::string LocationAuthStatus() {
115
std::string auth_status = "not determined";
116
0 commit comments