PBL第9回 Android端末上での実行

PBL第10回
Android端末上での実行
流れ
1.
2.
3.
4.
Android端末の設定
Eclipceの設定
アプリケーションの設定
アプリケーションの実行
Android端末の設定
1. Android端末をデバックモードにする
「Setting」 → 「Applications」 →
「Development」 → 「USB Debugging」を
チェック
2. Android端末をUSBで接続する
3. USBを接続するとドライバを求められる
–
C:\android-sdk\usb_driver\android_winusb.inf
を選択
4. 再起動
Eclipceの設定
1. 「メニュー」 → 「Debug」 → 「Debug
Configurations」 を選択
2. 「Android Application」 をクリック
3. Targetタブを選択
4. Device Target Selection ModeをManual
にする
アプリケーションの設定
1. AndroidManifest.xmlを開く
2. <application>の属性 android:debuggable
をtrueにする
•
<application android:debuggable=“true”
アプリケーションの実行
• 端末の接続確認
– $ adb devices
– Emulator-5554 device (← エミュレータ)
– HT99FLZ00141 device (← Android端末)
• プロジェクトで右クリック
• 「デバック」 → 「Android Application」
• HT99FLZ00141を選択して実行