Hello, I'm trying to build a simple mobile application in Blackberry using Titanium SDK 3.2.2GA. The following error occures when the app launches on device(Blackberry 10.2.1):
JavaScript Exception
local:///assets/HTML/index.html
app/native/assets/ui/ApplicationWindow.js:1
(function () {var require = function (id) { return globalRequire(id, 'app/nati
No such native module app/native/assets/ui/ui/ApplicationWindowPlatform
I asume that Titanium doesn't create the js file(ApplicationWindowPlatform.js) for blackberry too, as it does for the other platforms. The blackberry directory only contains the map directory, Ti.Manifest and the icons.
The code provided in ui/ApplicationWindow.js
/ /Load the platform specific UI. var ApplicationWindowPlatform; if (Ti.Platform.osname == 'mobileweb') { // Work around missing platform-specific require feature in Mobile Web. ApplicationWindowPlatform = require('mobileweb/ui/ApplicationWindowPlatform'); } else { ApplicationWindowPlatform = require('ui/ApplicationWindowPlatform'); } ApplicationWindowPlatform(self, webView, titleBarOn, drawerOn); return self;The Titanium default's HTML5-based application contains a simple webview within a window.
So, to fix this, i tried to add a js file in blackberry's directory containing a simple function. The error is gone but the webview doesn't load and the document's title is undefined.
function ApplicationWindowPlatform(/*TiUIWindow*/self, /*TiUIView*/webView, /*boolean*/titleBarOn, /*boolean*/drawerOn) { if (titleBarOn) { // When the webview loads, set the title webView.addEventListener('load', function(e) { self.title = webView.evalJS('document.title'); }); } } module.exports = ApplicationWindowPlatform;Any idea why all this is happening? Thank you.
Blackberry SDK installed for Titanium :10.0.10.822
Titanium runs on Windows 7