Post

Replies

Boosts

Views

Activity

Supporting same domain across different apps developed by different teams
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..?
0
0
408
Mar ’24
Getting user location every 1 minutes interval even when user killed app
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
0
0
485
Nov ’20