Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to deploy Titanium app on a real Android device?

I would like to know how to deploy from TitaniumStudio to a real Android device. I have a titanium app that works in the emulator. But I'm clueless how to get it running on the real device.

I know how to deploy my titanium app onto my iPhone using Xcode.

I have installed Eclipse too, and has managed to deploy a simple HelloWorld.app to real Android device with it.


Update: I have just learned that deploy can be accomplished using the commandline.

[ 12:49:59 ~ ] $ adb install /Users/johndoe/git/helloworld/build/android/bin/app.apk
772 KB/s (2035982 bytes in 2.573s)
        pkg: /data/local/tmp/app.apk
Success
[ 12:50:54 ~ ] $

Is there a way to deploy within TitaniumStudio?

like image 261
neoneye Avatar asked Aug 22 '11 10:08

neoneye


1 Answers

There should be an "Install to Android Device" menu when you right-click on the project in App Explorer or Project Explorer view. There is also a run icon in App Explorer toolbar that has the "Android Device" option. You could also see the Getting Started with Titanium Studio guide.

like image 60
Yun Avatar answered Sep 19 '22 20:09

Yun