Post

Replies

Boosts

Views

Activity

setKeepAliveTimeout has been restored?
We get location by following API through In-House App, but now that setKeepAliveTimeout was deprecated after iOS 4.0–9.0, this works only by 2 actions. No regular 15 mins.- When the App is tapped- When passing base stationsAPIViewController.m-(void)startToGetLocation {//Comment arealocMan = [[CLLocationManager alloc] init];locMan.delegate = self;if ([locMan respondsToSelector:@selector(requestAlwaysAuthorization)]) {[locMan requestAlwaysAuthorization];} else {[locMan startMonitoringSignificantLocationChanges];}}- (void)locationManager:(CLLocationManager *)managerdidChangeAuthorizationStatus:(CLAuthorizationStatus)status {if (status == kCLAuthorizationStatusAuthorizedAlways) {[locMan startMonitoringSignificantLocationChanges];}}setKeepAliveTimeout:handler: (deprecated)https://developer.apple.com/documentation/uikit/uiapplication/1622989-setkeepalivetimeout?language=objcHowever, somehow this deprecated API seems restored after iOS 13.4.0 and 13.4.1.Is this a planned change? If so, from what iOS version?Is it allowed to keep using this API?- Our deviceOS : iOS 13.4.1Model : iPhone 7Network : LTE/Wi-FiYour early response would be very much appreciated.
1
0
321
Apr ’20
Does allowAppInstallation make itms protocol invalid?
I put apps to download with itms protocol made page on MDM. itms-services://?action=download-manifest&url= plist path on the MDM server. I put an app A of App Store with App Store download URL onto the itms page, and an app A of Enterprise(Inhouse) app which is uploaded on the MDM. Both are the same apps, although the Enterprise app layout on itms requires an ipa file and a manifest file to be uploaded on the MDM. If we set NO allowAppInstallation first, it doesn’t allow to download the app of App Store, which quite makes sense, because it prevents the device to connect App Store. However, the same happens to the Enterprise app. I thought Enterprise apps don’t require App Store connection, am I right? I know Managed Apps can push apps no matter if NO allowAppInstallation is set. And also it’s no problem to download if we put the app on a server directly and get the direct path Could you advise how we can download Enterprise apps on itms page *without* allowAppInstallation? Does NO allowAppInstallation make itms protocol invalid?
0
0
337
Dec ’20