Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Per the instructions here in order to use the Native API I need to add an 'Ext.require()' to the code. How do I do that in Sencha Architect 2? It seems like everything outside a custom function or an event is readonly so I can't just add my own code ad-hoc.

share|improve this question

2 Answers

up vote 2 down vote accepted

As suggested by Bharat Nagwani, Architect now includes a way to require any classes that you would like to dynamically load.

Luca Candela and I presented a small application which illustrates use of the Ext.device.Camera API a few weeks ago in London. https://github.com/CaliLuke/NativeContacts

In order to include the device api in your application, do the following:

  • Go into the Sencha SDK and copy the device folder into your project directory
  • Inside of Architect, click the Application node
  • Search for "requires" in the configuration panel
  • Add "Ext.device.Camera" to the requires configuration
  • Search for "loader" in the configuration panel
  • Click the + to the right of Loader Config
  • Click the newly added "Loader" node (a child of Application)
  • Add paths '{"Ext.device": "device/"}

So to sum it up, make sure the files are there. Tell the application that you need that Class and then tell the loader where to find those files you've just put into your project folder.

share|improve this answer
thanks so much, that clears it up! – fnCzar Jul 26 '12 at 22:51

The next update in Architect provide requires as a property on Application node so you can add that there. For now just add the requires in your Application launch function since that is writable.

share|improve this answer
See I tried that but i don't think it works. If I try to reference the Ext.device namespace for anything my app just breaks (that is on the iphone simulator). Without that, the app works just fine. Can you provide a little more info? – fnCzar May 9 '12 at 20:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.