Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

An Agentry application by SAP crashes for older iPads

I have an agentry application provided by SAP and rendering in metadata programming language. I can make small changes to app using SAP deliver framework however I want to add a database so user has all data ready once installation is completed. 

My issue is that it increases application launch time and it crashes on older iPads when processing limit reaches 20 seconds. My "main.m" contains the below code:

return UIApplicationMain(argc, argv,@"SMPAgentryApplication", @"SMPAgentryClientAppDelegate");

Any resolution that I can implement to fix this?


1 Answer
SAP Expert

You can try modifying your code where method “didFinishLaunchingWithOptions:” starts everything in background.

application(_:didFinishLaunchingWithOptions:)

This method is used to tell the delegate that the launch process is almost done and the app is almost ready to run.

Method declaration:

optional func application(_ application: UIApplication,

didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey : Any]?

Advertisements

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.