This is a migrated thread and some comments may be shown as answers.

Add my app to IPAD settings

2 Answers 67 Views
General Discussion
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
sreedhar
Top achievements
Rank 1
sreedhar asked on 25 Jun 2013, 07:19 AM
How to add my app to IPAD settings.
Does icenium has the capability?

2 Answers, 1 is accepted

Sort by
0
Stefan Dobrev
Telerik team
answered on 25 Jun 2013, 03:48 PM
Hi sreedhar,

This is currently not possible out of the box in Icenium. There is an old custom Cordova plugin that can be used for reading and writing to the settings, but Icenium does not provide a way set the Settings.bundle for the app so that your settings to be displayed in the Settings application.

Regards,
Stefan Dobrev
Telerik

Looking for tips & tricks directly from the Icenium team? Check out our blog!
Missed our first webinar, watch it here.
Share feedback and vote for features on our Feedback Portal.
0
Steve
Telerik team
answered on 10 Oct 2013, 10:44 AM
Hello Sreedhar,

This is a follow up to let you know that it is now possible to add you app to the iOS device settings. You would still have to use the Application Preferences plugin as instructed by my colleague. In the plugin root folder, add Settings.bundle folder (right next to src and www) and add Root.plist file in it that complies to the requirements in the Apple documentation: Implementing an iOS Settings Bundle. As last step, add resource-file to the plugin.xml file to indicate you would be using settings bundle:
Copy Code
<platform name="ios">
    <config-file target="config.xml" parent="/*">
      <feature name="applicationPreferences">
        <param name="ios-package" value="applicationPreferences" />
      </feature>
    </config-file>
 
    <!-- Note: the ios src is based off src/ios implicitly -->
    <header-file src="src/ios/applicationPreferences.h" />
    <source-file src="src/ios/applicationPreferences.m" />
    <resource-file src="Settings.bundle" />
  </platform>

Since this plugin is not plugman compatible, you should create plugin.xml yourself following the respective documentation: Making a Custom Plugin Plugman-Compatible.

That's it!

Regards,
Steve
Telerik
You've missed the Icenium Visual Studio Integration keynote? It has been recorded and posted here.
Looking for tips & tricks directly from the Icenium team? Check out our blog!
Share feedback and vote for features on our Feedback Portal.
Tags
General Discussion
Asked by
sreedhar
Top achievements
Rank 1
Answers by
Stefan Dobrev
Telerik team
Steve
Telerik team
Share this question
or