Compatibility Error with Sencha 2.0.1.1
I just downloaded 0.3.3 io and using sencha touch 2.0.1.1
Get the following error:
ERROR: The Sencha.io SDK requires either the Sencha Touch SDK or the Sencha Ext JS SDK. Version 2.0.1.1 of the Sencha Touch SDK and this version of the Sencha.io SDK are not fully compatible. in Overides.js:121
I added the following lines to app.json
Code:
"js": [
<snip>
// Added this section for Sencha IO
{
"path": "sencha-io-0.3.3/lib/socket.io.js"
}
],
I added the following lines to app.js
Code:
// Added for Sencha.io
Ext.Loader.setPath({
'Ext.io': 'sencha-io-0.3.3/src/io',
'Ext.cf': 'sencha-io-0.3.3/src/cf'
});
Ext.application({
<snip>
io: {
appId: "XXXXX",
appSecret: "XXXXXXXX",
},