Issue
I created a virtual device with the AVD manager that emulates a 10.1 inches tablet with Android 2.3.3 with armeabi architecture. I named it titanium_7_WXGA800_armeabi
hoping that naming it like that would trigger Titanium Studio to recognize it in some way, but I can't find a way to use this emulator to test my application.
Are there any extra steps to test a Titanium app in a customly made Android emulator?
Any help will be appreciated.
EDIT
I deleted all of the virtual devices created on Titanium and renamed the one I want to use as the one that was being used. This make it work but I want to know if there's a different approach than to delete all of the virtual devices.
Solution
What I did in the end was to install the apk generated by Titanium into my desired emulator, just follow these steps:
Open the emulator you want to test from the AVD manager.
Open a console and paste the following: /path_to_android_sdk/platform-tools/adb -e install -r /path_to_titanium_workspace/your_project_name/build/android/bin/app.apk
. In my case I'm on Mac OS, adapt to your operative system.
This will install the apk on the current emulator, if you have more than one emulator replace the -e
with -s
and put the serial of the emulator you're using.
This will also solve some run out of memory exception when using the Titanium Studio generated emulators.
Answered By - Uriel Arvizu
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.