我想直接通过我的设备运行我的应用程序。我做了必要的配置,当我从 Eclipse 运行应用程序时,它列出了可供选择的设备。我的设备在那里,序列号为“samsung-gt_s5570..”,目标为 2.3.4。当我单击确定时,它说它已安装并完成,但是为什么应用程序没有在我的手机上启动?是否有额外的步骤来实际运行应用程序,还是它只是自行启动?只是出于好奇,安装 USB 是否与它没有启动有关?
更新清单文件
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
</application>
</manifest>