[TIMOB-20253] app.js not found
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Critical |
Status | Open |
Resolution | Unresolved |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | n/a |
Labels | n/a |
Reporter | Josh Lewis |
Assignee | Unknown |
Created | 2016-01-15T21:16:48.000+0000 |
Updated | 2018-02-28T19:55:23.000+0000 |
Description
When deploying from xcode to the device, I get the red screen with 'no app.js' found. This is a basic project created from the Studio wizards. Downgrading the SDK to v4 works fine.
Please fix this, it has been months and reported multiple time.
app.js code
~~~
// create tab group
var tabGroup = Titanium.UI.createTabGroup();
var win1 = Titanium.UI.createWindow({
title:'Home',
backgroundColor:'#fff',
layout:'vertical',
url:'main.js' ,
});
var tab1 = Titanium.UI.createTab({
window:win1,
});
tabGroup.addTab(tab1);
// open tab group
tabGroup.open();
~~~
No comments