I have a problem with my SAPUI5 application. I export my application with Eclipse and telephony, and if I use the following resources for sap-ui-core.js, the exported application does not start on my tablet. The screen stops when loading a blue screen. I loaded sapui5 runtime
<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 sapui5 server, everything works fine and the application works. The path above is correct because my other files, such as the css file, load 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>
Linda source share