0

我已經下載了黑莓手機模擬器的VMWare iso,它運行良好。 如何在模擬器上上傳我的Android應用程序(黑莓在線測試表示兼容)?黑莓手機模擬器

在我的Eclipe中,我沒有「Run as」黑莓模擬器...所以我無法上傳它,因爲我所有的Android應用都是這樣做的。

即使我創建了一個新的應用程序選擇黑莓項目我不能上傳它,你可以看到是默認的。

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()); 
    }  
} 

回答

1

您列出的源代碼是BB7(或更低版本)的Java應用程序,它不會在Playbook上運行。

要上傳劇本(或VMWare的模擬器)編寫的空氣或C++應用程序使用黑莓DEPLOY.BAT用的WebWorks SDK或the other RIM SDKs未來:

blackberry-deploy.bat -installApp -password qaqa -device 192.168.1.128 -package my_app.bar" 

我不知道Android的Java應用程序,也許你可以使用同一批處理文件呢?

1

你究竟想做什麼? Playbook支持爲Playbook創建的應用程序不適用於Blackberry智能手機&它爲Android應用程序提供運行時環境。 因此,如果您希望爲Playbook創建應用程序,則可以選擇在Adobe Air中開發的Flash構建器。 或者,如果你想運行你的Android應用程序到劇本,請按照此步驟在你的月食上安裝黑莓插件。

https://developer.blackberry.com/android/documentation/install_plugin_prerequisites_1895476_11.html 

一旦你準備好與黑莓插件,你需要確認你的黑莓PlayBook應用程序(請點擊此鏈接)

https://developer.blackberry.com/android/documentation/Test_your_app_1985225_11.html