Post

Replies

Boosts

Views

Activity

Reply to Mac OS Sonoma SSID Info missing even though app has location service
@eskimo Thanks for the response. I am also able to get Latitude/Longitude info, then why SSID info is getting hidden if OS doesn't like my agent then it should not give me location info as well? Is there anyway my application will be treated on par as GUI application even though it does not have any GUI app? Currently I am using ~/Library/LaunchAgents with below plist <plist version="1.0"> <dict> <key>StandardOutPath</key> <string>/tmp/app.log</string> <key>StandardErrorPath</key> <string>/tmp/app.log</string> <key>Label</key> <string>test.osx</string> <key>ProgramArguments</key> <array> <string>/Users/test/Desktop/Location.app/Contents/MacOS/osx-core-location</string> </array> <key>KeepAlive</key> <true/> <key>RunAtLoad</key> <true/> </dict> </plist>
Jan ’24
Reply to Mac OS Sonoma SSID Info missing even though app has location service
Here is the content of Info.plist Just to add more info SSID and BSSID info both are null. <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>CFBundleExecutable</key> <string>osx-core-location</string> <key>CFBundleIconFile</key> <string>icon.icns</string> <key>CFBundleIdentifier</key> <string>com.osx-core-location.tk</string> <key>NSHighResolutionCapable</key> <true/> <key>NSLocationAlwaysUsageDescription</key> <string>For WiFi access</string> <key>NSLocationWhenInUseUsageDescription</key> <string>For WiFi access</string> </dict> </plist>
Jan ’24