Reputation: 1146
How can i launch application from UIWebview without using an info.plist file. I already done with URL schema, But in our case there is no info.plist file beacuse my application is created as C++ application. Can anyone please help me.
Upvotes: 0
Views: 987
Reputation: 3082
No you can't run the app without info.plist.
Every app and plug-in uses an Info.plist file to store configuration data in a place where the system can easily access it. OS X and iOS use Info.plist files to determine what icon to display for a bundle, what document types an app supports, and many other behaviors that have an impact outside the bundle itself. For better knowledge about this you can see this link:-
For more explanation you can see this post:-
https://stackoverflow.com/a/19833263/1865424
Hope this will help you out.
Upvotes: 1
Reputation: 181
There is no way to run the app without info.plist because it is our main file of all the app information & bundle identifier is the main part.
Upvotes: 2