Questions tagged [titanium-mobile]

Use this tag for questions about the cross platform Titanium Mobile SDK. If your questions is specific to Alloy, Android, iOS or modules add the related tags like [titanium-alloy] too.

Titanium-Mobile is an open-source JavaScript based platform for developing mobile applications.

Supports Android and iOS (iPhone, iPod, iPad) using a mostly common set of Mobile APIs which render using each platform's native controls and features.

Resources

Related tags

1832 questions
3
votes
1 answer

is there an interactive console for debugging in Titanium?

Is there such a thing as a rails console for Titanium, where I could play a little with the API? or even better a debbuger? Or could you recommend me a different workflow rather than having to edit-the-source > compile > Ti.API.debug() ? I know I…
ariera
  • 996
  • 8
  • 26
3
votes
1 answer

iOS 13 dark mode is not working using Titanium classic framework

I am trying to implement dark mode theme in our app for iOS 13 and above. I have followed this link Dark Mode in iOS 13. But I am facing some issue. I have attached the sample code below. I am expecting if I change enable dark appearance then it…
Kamal Kant
  • 1,031
  • 1
  • 12
  • 22
3
votes
2 answers

Appcelerator : I'm failing at 403 during build

$ appc ti build -T dist-adhoc Appcelerator Command-Line Interface, version 7.1.2 Copyright (c) 2014-2020, Appcelerator, Inc. All Rights Reserved. An uncaught exception was thrown! Rebuild failed: node-pre-gyp info it worked if it ends with…
lama
  • 47
  • 3
3
votes
1 answer

Detect iPhone X with Appcelerator

I am using custom navbar for my project and I am using codes for ios 7 top margin as below; var _IsIos7Plus = false; if (Titanium.Platform.name == 'iPhone OS') { var _Version = Titanium.Platform.version.split("."); var _Major =…
Kerberos
  • 331
  • 1
  • 11
3
votes
0 answers

Titanium app won't build in Android after upgrading SDK, resource entry accept is already defined

After upgrading to Titanium SDK 6.1.0.GA, my app no longer builds. It gives the error: [ERROR] Failed to package application: [ERROR] [ERROR] /Users/justintoth/Documents/housters-mobile/build/android/res/values/strings.xml:51: error:…
Justin
  • 17,670
  • 38
  • 132
  • 201
3
votes
3 answers

Titanium Android Unable to find Android SDK API when building

I am attempting to build my Titanium App for Android but it continuously complains about [ERROR] Unable to find Android SDK API 23 [ERROR] Android SDK API 23 is required to build Android apps Making sure that I have the Android API Level 23…
Shiri
  • 1,972
  • 7
  • 24
  • 46
3
votes
0 answers

Titanium Hyperloop app does not compile due to too small libhyperloop.a lib file

I can't compile my titanium + hyperloop application. The compiler complains about the filesize of my libhyperloop.a, which is 2 bytes. Does this mean the file is corrupt, and does someone knows a workaround? I have inspected the file in both…
3
votes
0 answers

Get Menu instance in Titanium Android Module

I want to access and return a menu item in Titanium's Native android module but i found no documentation for accessing a menu in module. The documentation has only shown an example to create and return a native view using TiViewProxy class.Can we…
Ajit
  • 339
  • 5
  • 15
3
votes
1 answer

(node) sys is deprecated. Use util instead. - Titanium Appcelerator

Personally, I have a problem when compiling in my studio titanium ... (node) sys is deprecated. Use util instead. I have no idea of what might be ... need help .... (node) sys is deprecated. Use util instead. /Users/silviosampaio/Library/Application…
Silvio Luis
  • 193
  • 1
  • 3
  • 11
3
votes
2 answers

Titanium Appcelerator App (IOS) publishing issue

Hi I have uploaded my app to iTunes connect. The app is validated and submitted successfully. While publishing the app to the app store my app got rejected because of insufficient meta data can any one tell me the reason for the same and what…
3
votes
1 answer

Titanium: build error after upgrade to 3.5.0.GA (Undefined symbols for architecture x86_64)

in order to fulfil Apple 64-bit requirements for apps, I've just update an app to Titanium SDK 3.5.0.GA. The app was previously running on 3.4.1.GA, and doing it fine. Now, once I compile for IOS I'm getting this error stack: [TRACE] Undefined…
balanza
  • 1,059
  • 1
  • 12
  • 34
3
votes
1 answer

Titanium Alloy Caching in Android/iOS? Or Preserving old views

Can we Cache Dynamically Created Lists or View till the webservices are called in background. I want to achieve something like the FaceBook App does. I know its possible in Android Core but wanted to try it in Titanium (Android and IOS). I would…
SSS
  • 1,025
  • 7
  • 17
3
votes
2 answers

Issue featch with where condition in titanium alloy

I have two pick lists in my app, both are dynamic values coming from DB. The values in to second pick list are displayed based the value selected in first pick list. So change event of first pick list the second pick list values should dynamically…
Vinod
  • 2,263
  • 9
  • 55
  • 104
3
votes
2 answers

How to track if location services is enabled or not enabled? titanium

I am able to turn it off. code: //get current Location // Titanium.Geolocation.accuracy = Titanium.Geolocation.ACCURACY_BEST; Titanium.Geolocation.distanceFilter = .25; var overlays = require('overlays'); //check if gps is enabled exports.checkGPS…
user3754111
  • 859
  • 1
  • 10
  • 20
3
votes
5 answers

Image is auto-rotating in android

When I take picture from camera and display it in a ImageView it automatically get rotated by 90 degree counter-clockwise. How can I get portrait image in portrait mode and landscape image in landscape mode in ImageView. Thanks in advance. Here is…
Swanand
  • 1,138
  • 8
  • 21