Appcelerator Titanium Mobile is a framework for creating iOS, Android, Universal Windows Platform (UWP) applications in JavaScript.
Questions tagged [appcelerator-mobile]
772 questions
8
votes
2 answers
Understanding Appcelerator Ti.include & require
I've started looking into Appcelerator 1.8.0 few days and back and i'm a little confused with Ti.include and require. As i understand, Ti.include is used to include content of a js file in another file, and require is used to get the public api…

prashant
- 3,570
- 7
- 40
- 50
8
votes
1 answer
Can't login to Facebook due to invalid access token error using Titanium's Facebook Module
I'm working with Titanium Studio 3.2.0 and Titanium SDK 3.2.0.GA, and deploying to Android devices with or without the Facebook app. To login to Facebook I'm using the one provided by Titanium.
I'm having the same problem described in this link.…

Uriel Arvizu
- 1,876
- 6
- 37
- 97
8
votes
3 answers
I need help understanding Titanium Alloy (MVC) development
I'm used to developing in MVC frameworks such as cake and backbone, but I can't get my head around developing in Alloy. There don't seem to be any good examples online. I would be very grateful if someone could give an example of how you would set…

The Puma
- 1,352
- 2
- 14
- 27
8
votes
7 answers
Should I learn native iOS development (Objective-C) or perfect my knowledge in Javascript and Titanium Appcelerator?
Basically I need your advice my good stack friends :D
For the last six months I am exploring/learning/developing iOS apps with Titanium Appcelerator mobile framework. My experiences are mostly good or very good.
Some negative parts of Titanium would…

vale4674
- 4,161
- 13
- 47
- 72
7
votes
3 answers
Titanium Appcelerator back button closes my window
I'm working on building my first Android app on Titanium.
I have an RSS feed loading on the first window, then after clicking a link from the rss list, I create a new window and display the full content of the rss item on that page.
What I want to…

Maikel
- 371
- 1
- 2
- 10
7
votes
1 answer
Titanium in-app purchase with ti.storekit - product not found
I have my in-app product all set up for purchase in iTunes Connect via ti.storekit:
My Appcelerator 4.0 app compiles and deploys to my device (dev profile). The ti.storekit is linked to my app and it compiles. It also seems to execute correctly, in…

HerrimanCoder
- 6,835
- 24
- 78
- 158
7
votes
1 answer
Building Native View using iOS module and using them in Titanium
I want to build an iOS module in which I have a viewController class with its .xib file. now the problem is how to call that view from my titanium code. I know that there are view proxy available but dont know how to use them due to not so good…

Ajeet Pratap Maurya
- 4,244
- 3
- 28
- 46
6
votes
1 answer
android:back (device back button) event in Titanium not working
Hi i am working on android application development.I am using Titanium studio for development. I create a simple application.I want to capture the device back button event in my application because I don't want to user android default tabs in…

nilkash
- 7,408
- 32
- 99
- 176
6
votes
4 answers
What to do about "Finishing up a navigation transition in an unexpected state. Navigation Bar subview tree might get corrupted."
I'm writing an iPhone app using Appcelerator Titanium Mobile. I am hiding and showing the tab group based on what window has focus.
dashWin.addEventListener("focus",function(e) {
if (dashWin.tabGroupVisible == true) {
…

Trott
- 66,479
- 23
- 173
- 212
6
votes
3 answers
How to simply handle orientation changes?
I'm not talking about doing anything fancy. I'd just like the standard windows and views to rotate when the user rotates the device.

Dogweather
- 15,512
- 17
- 62
- 81
6
votes
2 answers
Appcelerator Titanium: Code Sign error: No codesigning identities found
This is driving me crazy, I have spent about 10 hours now deleting and regenerating Apple keys and provisioning profiles for my Appcelerator Titanium iPad app. I had this all working and compiling 1 year ago, then my Mac crashed and I had to…

HerrimanCoder
- 6,835
- 24
- 78
- 158
6
votes
1 answer
How can you get appcelerator titanium studio to show uncaught runtime errors in the console log?
It seems like at runtime all uncaught errors in appcelerator get swallowed by the titanium IDE and never show up in the console log. How can you get rid of this behavior and make sure the errors show up there?

Oved D
- 7,132
- 10
- 47
- 69
5
votes
1 answer
Titanium create calendar event
I am trying to create calendar event in my Titanium App for Android Platform. For that I am using below code, It does't give any error also didn't to create any calendar events
var calendars = Ti.Android.Calendar.selectableCalendars;
var…

Karthi Ponnusamy
- 2,031
- 2
- 25
- 41
5
votes
2 answers
Appcelerator Titanium LocalNotification for Android
IS there any LocalNotification available in Android.(some thing similar to Titanium.App.iOS.scheduleLocalNotification)
I need some simple notification(like alert) for Android Platform, even if my application closed. Is it possible in Titanium?

Karthi Ponnusamy
- 2,031
- 2
- 25
- 41
5
votes
1 answer
Titanium appcelerator image view load event listener not working with android
i have an image view, when the image loads i want to make an action, for example an alert.I'm using eventListener method to implement this.
here's my code
imageView.addEventListener('load', function()
{
alert(1);
});
this workd fine with…

Grace
- 1,265
- 21
- 47