i have downloaded the VMWare iso for blackberry playbook simulator and it works well. how can i upload to it my Android application (blackberry online test says that is compatible) on the simulator?
In my Eclipe i don't have the "Run as" Blackberry simulator...so i can't upload it as i do with all the android apps.
Even if i create a new app choosing Blackberry project i can't upload it and, as you can see is the default one.
package mypackage;
import net.rim.device.api.ui.UiApplication;
/**
* This class extends the UiApplication class, providing a
* graphical user interface.
*/
public class MyApp extends UiApplication
{
/**
* Entry point for application
* @param args Command line arguments (not used)
*/
public static void main(String[] args)
{
// Create a new instance of the application and make the currently
// running thread the application's event dispatch thread.
MyApp theApp = new MyApp();
theApp.enterEventDispatcher();
}
/**
* Creates a new MyApp object
*/
public MyApp()
{
// Push a screen onto the UI stack for rendering.
pushScreen(new MyScreen());
}
}