poetic/ember-cli-cordova

Does ember-cli-cordova support the POD structure?

litao10422 opened this issue · 3 comments

I use the POD structure in my ember.js application. It works well on the browser.

Then I transferred my code into the environment of ember-cli-cordova. Nothing shows on screen after I installed the app on my phone.

[app]
    [application]
         template.hbs
    [index]
         route.js
         template.hbs

[application]template.hbs

<h1>Template<h1>
{{outlet}}

[index]template.hbs

<h1>Index<h1>
{{outlet}}

.ember-cli

"usePods": true

What's wrong?
Thanks in advance!

Yes, ember-cli-cordova has no knowledge of nor cares whether pods is in use. More likely something else is going wrong.

Thank you very much, runspired.
ember.js becomes to support the POD structure and I think it's convenient.
Hope ember-cli-cordova can support it someday.

@litao10422 ember-cli-cordova does support it.... it supports it in the same way most things in Ember support it. ember-cli-cordova does not do anything that requires knowing about the structure of your asset organization.