我有一些示例项目。
当我在我的机器上运行它时,成功编译并显示在控制台上的msg下面
[2012-06-30 12:44:03 - VoiceNotes] Uploading VoiceNotes.apk onto device 'HT96WKF01301'
[2012-06-30 12:44:03 - VoiceNotes] Installing VoiceNotes.apk...
[2012-06-30 12:44:06 - VoiceNotes] Success!
[2012-06-30 12:44:06 - VoiceNotes] \VoiceNotes\bin\VoiceNotes.apk installed on device
[2012-06-30 12:44:06 - VoiceNotes] Done!
但在我的设备屏幕上找不到apk文件,
当我查看设置时 - > application->管理应用程序,apk文件就在那里。
它已被放置,以及如何在设备上运行?
答案 0 :(得分:3)
为此,您必须在清单文件中提到Launcher。
检查AndroidManifest.xml
<activity
android:name=".YourMainActivityNameHere"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>