我一直在尝试开发Android。
我使用ADT插件和Android SDK进行了日食。
我一直在尝试使用教程启动Hello World。
[2014-05-18 21:00:24 - saas] Application already deployed. No need to reinstall.
[2014-05-18 21:00:24 - saas] \saas\bin\saas.apk installed on device
[2014-05-18 21:00:24 - saas] Done!
在AVD中,我看到系统中安装了app,但桌面上没有图标,即使应用程序无法启动..
2.2和4.0上的相同问题
你有解决方案吗?
答案 0 :(得分:0)
您很可能获得了不正确的AndroidManifest.xml
文件,没有注册
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
我建议你先从做一些初级教程开始。