Questions tagged [titanium-modules]

Custom Add-on / Plugins for the Titanium Platform written in Obj-C (iOS), Java (Android) or Javascript. Functions and features not included in the standard Titanium API.

Titanium is a JavaScript based platform for developing mobile applications produced by Appcelerator.

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

Titanium modules allow developers with experience in specific native platforms to leverage that experience in the form of Add-On's or plugins. Generally modules encapsulate native API's not found in the Titanium SDK (such as EventKit for iOS), wrap some outside service (UrbanAirship libraries) or access hardware specific features (such as OpenGLES modules).

338 questions
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
0 answers

Titanium Route Type missing and other issue

I'm building a tourism application that make use of native map view modules for Titanium (>3.2.0) i'm apparently having 3 issues at any refresh with same coords in the same order the route seems to change, the route is being calculated DRIVING and…
Zerho
  • 1,440
  • 4
  • 19
  • 39
3
votes
1 answer

How does IN_APP_NOTIFY works when a refund is performed with Android's In-App Billing?

We developed our app using Titanium Studio and Appcelerator offers a free module for In-App Billing which only support API v2 (I know we should use v3 but we're an indie group so $100 for the module that supports API v3 is a no for the time…
Uriel Arvizu
  • 1,876
  • 6
  • 37
  • 97
3
votes
2 answers

How can I use Proguard in Titanium

How can I use Proguard in titanium or is there any similar functionality in order to make de-compile of codes harder to achieve? Any suggestion ?
3
votes
0 answers

Textfield keyboard toolbar buttons stop responding once the textfield loses focus and is re-focused but only when including a module

We have added an iOS module which contains a library (.a) to a simple keyboard and textfield titanium project. The library uses quite a lot of javascript via UIWebView and it communicates back to the application via frames. The library is very…
Ben Avery
  • 1,724
  • 1
  • 20
  • 33
3
votes
2 answers

Build Failed Error in Titanium iOS project

I am using Titanium 3.1.3 GA version. While include mobile app tracking module in project, getting "Build Failed" Error message. Tried with new project also getting the same error. [ERROR] : ** BUILD FAILED ** [ERROR] : The following build…
user1884495
3
votes
1 answer

starting an android native service with titanium module

I started a mobile module project with the following service class: package com.eliddell.testservice; import java.lang.reflect.Method; import java.util.ArrayList; import java.util.List; import java.util.Timer; import java.util.TimerTask; import…
erik
  • 4,946
  • 13
  • 70
  • 120
3
votes
5 answers

Honeywell's Captuvo SL22 SDK

I am looking for help in integrating Captuvo SL22 SDK within appcelerator. The Captuvo SDK comes with the Captuvo scanner/msr for ipod. I am trying to use Captuvo SDK in a custom module and call it in the main app. I am able to establish a…
Chris
  • 145
  • 1
  • 3
  • 15
3
votes
2 answers

Exception Occured While Building Android project

OS: Linux mint 14. Following error occurs when I try to run my project. [TRACE] Writing out AndroidManifest.xml [ERROR] Exception occured while building Android project: [ERROR] Traceback (most recent call last): [ERROR] File…
Aqeel Ashiq
  • 1,988
  • 5
  • 24
  • 57
2
votes
2 answers

how i stop orientation in Android device?

i make a application on Titanium. whose work on cross platform (android or iphone). i want to stop orientation in android device how i can do? because, android have default orientation change. and iphone have not default.
MRT
  • 1,610
  • 15
  • 41
2
votes
2 answers

App crashes when benCoding.AlarmManager module added in a Titanium application

I'm using Titanium SDK 7.0.0 GA and I installed benCoding.AlarmManager (version-1.0.0) module from here. When I add the module to the tiapp.xml module list like below image and run app then app crashes. I need to install this module for scheduling…
Nuibb
  • 1,800
  • 2
  • 22
  • 36
2
votes
5 answers

Create UIImage from CIImage on iOS 10

I was trying to rebuild a Titanium Module for iOS10 (https://github.com/Exygy/Titanium-Ti.Barcode) While rebuilding, I am getting following error and the build is failing. cannot initialize a variable of type 'UIImage *' with an rvalue of type …
2
votes
1 answer

MenuItem is returning null

I am developing titanium android module for chromecast for this I am trying to create a menu bar. Below code is I am using for creating the menu: protected Menu newMenuInstance(Context context) { try { Class menuBuilderClass =…
Chandan Wadhwa
  • 196
  • 2
  • 13
2
votes
1 answer

Titanium SQLite Database Migration : Is it possible to manually call the migration.up and migration.down functions in Titanium?

I am working on developing a module for Titanium project. Now I need to call the migration.up and migration.down call backs from my own function. Is it possible to do ? I tried migration.down(AnyObject) and migration.up(AnyObject), but both didn't…
user4226071
2
votes
1 answer

How to Play multiple videos simultaneously on iOS with Titanium Studio?

I need to play two or more videos simultaneously on iOS platform with Titanium Studio. I have tried lots of ways but did not get any proper solution. I have also tried the (inic.videoplayer) module for this. But this is not working for my…
MRT
  • 1,610
  • 15
  • 41
1
2
3
22 23