Manual Location Coordinates Tagging in iOS Apps
Manual Location Tagging: Appxiom does not access user location automatically. Developers can manually set location coordinates for issue reports using a single API call.
Appxiom iOS framework gives you full control over location data tagging. By calling the provided API, you can attach location coordinates to every issue report. The framework never collects location data automatically.
Key Points
- Manual Update Only: Appxiom framework never auto-collects user location.
- Single-Line API: Developers update location data manually as needed.
- Latest Data Used: If the API is called multiple times, the most recent coordinates are used for subsequent issue reports.
Setting Location Coordinates
Call the API anywhere in your code to update the current location. This will tag all future issue reports with the provided coordinates until updated again.
- Objective C
- Swift
[Ax updateLocation:clLocationCoordinates];
Ax.updateLocation(clLocationCoordinates)
- Anywhere in your code: Call this API whenever you want to update the location data for future issue reports.
- Multiple Calls: The latest coordinates provided will be used for all subsequent issues.
Frequently Asked Questions (FAQ)
Q: Does Appxiom collect location data automatically?
A: No, location data need to be set manually by the developer using the API.
Q: What happens if I never call the updateLocation API?
A: No location data will be attached to issue reports.
Q: Can I update the location multiple times?
A: Yes, the most recent coordinates will be used for all future issue reports.
Q: Does Appxiom store or transmit location data outside of issue reports?
A: No, location data is only included in issue reports if set by the developer.
Q: Can I remove location data from future reports?
A: Once set, the location set will be used until the app is removed from memory. In the next session, if the location data is not set it will not be included in the issue reports.
Q: Is the location data visible in the Appxiom dashboard?
A: Yes, if set, location coordinates will be visible with each relevant issue report.