Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

trying to get location using a daemon on ios looked at this CLLocationmanager setAuthorizationStatus doesn't work (jailbreak)

but keep getting location not determined i have entitlements set (checked with ldid)

got an info.plist where the binary is and added the following keys to clients.plist but still cant get location

<key>com.apple.locationd.executable-{binary_path}</key>
 <dict>
 <key>Authorized</key>
 <true/>
 <key>BundleId</key>
 <string>{any_random_bundle}</string>
 <key>Executable</key>
 <string>{binary_path}</string>
 <key>Registered</key>
 <string>{binary_path}</string>
 <key>Whitelisted</key>
 <false/>
</dict>
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
207 views
Welcome To Ask or Share your Answers For Others

1 Answer

Comment by creker worked, simply adding preauthorise entitlement resolved the issue


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...