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
Reply to Crashes with associateToEnterpriseNetwork with null values for SSID
@pyro_90 I am going through same issue, can you please help how did you resolve your issue? Even though I am able to get latitude and longitude info, still SSID info is null.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jan ’24
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>
Replies
Boosts
Views
Activity
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>
Replies
Boosts
Views
Activity
Jan ’24
Reply to Mac OS Sonoma SSID Info missing even though app has location service
Ohh, after spending so much time, I can say below things. SSID Info - After requesting location, it always gives null on first call to get ssid info but then subsequent calls return SSID info as expected. BSSID Info - BSSID info remains null during all the calls @eskimo Do you think I should file a BUG for this BSSID info case also for SSID info case?
Replies
Boosts
Views
Activity
Jan ’24