Posts

Post not yet marked as solved
0 Replies
230 Views
I have an application which supports universal links. Say it supports the domain www.example.com and thus universal links can be easily opened via this. We will have applinks:www.example.com in associated domains. Now say if I want to release another app and it also supports the same domain. Now how will iOS distinguish which app to open via universal links..?
Posted Last updated
.
Post not yet marked as solved
0 Replies
416 Views
I want to track/get user location on each 1 min interval, even when app is killed by the user. I have tried below code but not able to get location on each 1 minute interval. locationManager.delegate = self locationManager.desiredAccuracy = kCLLocationAccuracyBest locationManager.activityType = .other; locationManager.distanceFilter = kCLDistanceFilterNone; locationManager.startMonitoringSignificantLocationChanges() locationManager.allowsBackgroundLocationUpdates = true locationManager.pausesLocationUpdatesAutomatically = false I referred below apple documentation as well, Significant-Change location service: In this case, iOS system will wake up your app only when user's location is significantly changed. The value is around 500 meters. https://developer.apple.com/documentation/corelocation/getting_the_user_s_location/using_the_significant-change_location_service
Posted Last updated
.