のアプリケーションに取り組んでいます。 からアプリケーションAndroid TV
をADT-1 Developer Kit
インストールできますEclipse
。しかし、ステップごとに直接デバッグすることはできません。デバッグを実行しましたが、ブレークポイントに移動しませUSB Debugging
ん
。 ADT-1 Developer Kit にアプリケーションをインストールすると、TV UI にアプリケーションのロゴが表示されますが、アプリケーションは自動的に起動しません.
これは次のマニフェスト ファイルです:
<uses-sdk
android:minSdkVersion="21"
android:targetSdkVersion="21" />
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<uses-feature
android:name="android.software.leanback"
android:required="false" />
.....
<activity android:name="vng.zing.tv.activity.LoginActivity" >
<intent-filter>
android:name="android.intent.action.MAIN" />
android:name="android.intent.category.LEANBACK_LAUNCHER" />
</intent-filter>
</activity>
そして、それは以下のようなログを示しています
Android Launch!
adb is running normally.
No Launcher activity found!
The launch will only sync the application package on the device!
Performing sync
Automatic Target Mode: Several compatible targets. Please select a target device.
Uploading Example.apk onto device 'ZW2Z142308EE'
Installing Example.apk...
Success!
\Example\bin\Example.apk installed on device
開始するが見つかりませんActivity
。
問題を解決するにはどうすればよいですか? ありがとう