I have a problem with my SAPUI5 Application. I export my App with Eclipse and phonegap and if i use the following resources for the sap-ui-core.js the exported app is not starting on my tablet. The screen stops by loading with a light blue screen. I've downloaded the runtime from here sapui5
<script id="sap-ui-bootstrap" src="resources/sap-ui-core.js"
type="text/javascript" data-sap-ui-libs="sap.m, sap.ui.commons, sap.ui.ux3, sap.ui.table, sap.ui.core, sap.viz, sap.suite.ui.commons, sap.uxap, sap.ui.layout"
data-sap-ui-theme="sap_bluecrystal">
</script>
Now if i change my src-path to the sap-ui-core.js file on the server of sapui5 everthing works fine and the app is running. The Path above is correct because my other files like the css file are loading correctly (same root)
<script id="sap-ui-bootstrap" src="https://sapui5.netweaver.ondemand.com/resources/sap-ui-core.js"
type="text/javascript" data-sap-ui-libs="sap.m, sap.ui.commons, sap.ui.ux3, sap.ui.table, sap.ui.core, sap.viz, sap.suite.ui.commons, sap.uxap, sap.ui.layout"
data-sap-ui-theme="sap_bluecrystal">
</script>