Posts

Post not yet marked as solved
3 Replies
4.6k Views
I’m trying to implement background refresh functionality, it will be calling at regular interval of 30min. I’ve created a BG task schedular request and mentioned earlier begin date also. It’s working while debugging but not working on device keeping in background. Registering the task on AppDelegate didFinishWith options BGTaskScheduler.shared.register( forTaskWithIdentifier: “IDENTIFIER”, using: DispatchQueue.global() ) { task in refreshFunctionality() } Submitting refresh task request while app going to background let request = BGAppRefreshTaskRequest(identifier: "IDENTIFIER") request.earliestBeginDate = Date(timeIntervalSinceNow: 30 * 60) do { try BGTaskScheduler.shared.submit(request) } catch { print("Could not schedule app refresh: \(error)") }Thank you..!
Posted
by go7202.
Last updated
.
Post not yet marked as solved
1 Replies
643 Views
Hello,I want to get a certificates installed in profiles ios, currently we are fetching the available certificates from Mac Keychain like below, is there something like this iOS?Thank you!OSStatus status; SecKeychainSearchRef search = NULL; status = SecKeychainSearchCreateFromAttributes(NULL, kSecCertificateItemClass, NULL, &search); if (status != errSecSuccess) { [self logMessageForStatus:status functionName:@"SecKeychainSearchCreateFromAttributes()"]; return nil; } SecKeychainItemRef searchItem = NULL; while (SecKeychainSearchCopyNext(search, &searchItem) != errSecItemNotFound) { SecKeychainAttributeList attrList; CSSM_DATA certData; attrList.count = 0; attrList.attr = NULL; status = SecKeychainItemCopyContent(searchItem, NULL, &attrList, (UInt32 *)(&certData.Length), (void **)(&certData.Data));
Posted
by go7202.
Last updated
.
Post not yet marked as solved
10 Replies
1k Views
Hello,My application showing the obtained from unknown in system_profile, even though it is signed by proper Mac Developer Certificate.AT&T Global Network Client: Version: 2.1.0 Obtained from: Unknown Last Modified: 8/5/19, 11:40 AM Signed by: Mac Developer: *********** (**********), Apple Worldwide Developer Relations Certification Authority, Apple Root CA Location: /Applications/AT&T Global Network Client/AT&T Global Network Client.app Kind: 64-bitWhen I tried to open the .pkg file, getting the above warning, application is a 64 bit. Coudn't figure out, what went wrong, kind of struck here, any help would be appreciated.Much Thaks,Ganesh.
Posted
by go7202.
Last updated
.
Post not yet marked as solved
0 Replies
1.6k Views
Hello,On iOS beta 13, I have installed my existing VPN application, and testing the regular behavior.When user tries to make a connection it requires the allow permission,"*** Would like to Add Vpn Configurations"All network activity on this ipad may be filtered or monitored when using VPN.Allow Dont AllowAfter clicks the allow permission it takes to the Settings page and suppose to prompt for the password,But here in iOS beta 13, it takes to the settings page and prompts nothing, and it just stays like that. Its absolutely unexpected behaviour.
Posted
by go7202.
Last updated
.
Post not yet marked as solved
8 Replies
7.1k Views
Hi,I’m working on certificate based authentication for my application. I can able to get the certificate from keychain, it’s in DER format with CFData type. I need to send the certificate CFData to server for authentication, is it possible to convert the certificate data into NSString format?Thank you
Posted
by go7202.
Last updated
.