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

root.plist in icenium graphite ?

1 Answer 34 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.
bux
Top achievements
Rank 1
bux asked on 09 Oct 2013, 10:53 AM
I 'm trying to integrate IOS application preference plugin in icenium which requires root.plist file. How do i  add root.plist  in icenium graphite  ?

1 Answer, 1 is accepted

Sort by
0
Steve
Telerik team
answered on 10 Oct 2013, 09:08 AM
Hi,

Your scenario can easily be achieved by adding a Settings.bundle folder to your appPreference plugin (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:

<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>


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
bux
Top achievements
Rank 1
Answers by
Steve
Telerik team
Share this question
or