21
23

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Parallels Desktop にて Windows と Android を同時に起動して、iOS と Android を快適にデバッグする方法

Posted at

筆者は MacBook にて MacOS X を起動して、Parallles Desktop を使用して、Windows の VM を立ち上げて、Visual Studio で Xamarin を利用しています。AVD で作成した Android のエミュレーターはだいぶ遅くてイライラするので、今回は Parallels Desktop で Android の VM を立ち上げます。

と、文章にするとだいぶ言っていることがわからないと思うので、図にすると次のような感じです。

xamarin.png

なぜ GenyMotion ではないの?

GenyMotion は VirtualBox 上で動きます。Parallels Desktop と VirtualBox は同時に使うことができません。

for Virtual Box:
No workaround is available. Please try not to use Parallels Desktop and Virtual Box at the same time.

KB Parallels: Mac reboots when you attempt to launch Parallels Desktop 8/9 and Virtual Box simultaneouslyより

Parallels Desktop に Android をインストールする。

これはググると既にいろいろなところで解説されているので、詳しく書きません。
簡単に説明すると、Download - Android-x86 - Porting Android to x86から android-x86-4.4-RC2.iso をダウンロードして(Viewというリンクをクリックするとダウンロードが始まる)、後は Parallels Desktop の VM 作成時に ISO をマウントしてインストールします。Linux のインストールとあまり変わりありません。

adb で Android に接続する

Android が起動したら、ALT + F1 を押して Console を開いて、netcfg を実行します。

kobito.1406736492.314761.png

IPアドレスが確認できたら、Windows の コマンドプロンプトから adb connect [IP アドレス]:5555 を入力します。

kobito.1406736631.878222.png

このように、adb devices に表示されれば成功です。

Use Fast Deployment を OFF にする

筆者の環境では、Use Fast Deployment が On になっていると次のエラーが発生しました。

kobito.1406737730.811576.png

Use Fast Deployment を OFF にすることでエラーは解消され、デバッグすることが出来ました。この設定はプロジェクト設定 - Android Options にあります。

kobito.1406737824.529595.png

iOS と Android のエミュレーターを同時に起動しつつ、Visual Studio でデバッグする画面は次のようになります。Coherence モードにしてると、Mac を使ってるのか、Windows を使っているのか時々よくわからなくなるのが問題ですねw

kobito.1406737552.105499.png

21
23
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
21
23

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?