bharal
bharal

Reputation: 16194

How do i use GenyMotion with Appcelerator Studio?

The appcelerator team have released a new version of their IDE, which was called Titanium and is now called - for reasons that baffle me - Appcelerator Studio.

(The bafflement is because now it's almost impossible to google search for solutions for the new IDE because of the naming... )

Does anyone have step by step process for getting Appcelerator Studio to recognise and debug with GenyMotion?

Imagine that the genymotion has been installed in c:\GLoc and the Oracle VirtualBox was installed to c:\OLoc

Upvotes: 1

Views: 608

Answers (1)

Tharif
Tharif

Reputation: 13971

If you have already installed Genymotion , then you can open up in Titanium studio and find emulators as below :

enter image description here

Detailed doc on downloading , installation and configuring Genymotion , please refer doc available here

When you are running test you might need to differentiate for specific environments.

To detect which emulator you are running your code in, you can use Ti.Platform.manufacturer, which returns unknown on Android Virtual Devices, but Genymotion on Genymotion emulators.

Reference

If you are running Titanium Studio 3.3.0 , then target SDK of app should be 3.3.0 or greater.

Try refreshing device in emulators , if they are still invisible try opening Terminal Window.

Find Detailed instruction here

Upvotes: 1

Related Questions