模拟器已加载,但应用程序未安装,我尝试过重启adb、重启eclipse、创建新的android项目、创建新的avd一切工作正常,但我根本无法安装任何应用程序。下面是我的xml文件。谢谢你的帮忙
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.eldorado.myfirstapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="10" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.eldorado.myfirstapp.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
这是android控制台
[2013-03-11 21:55:20 - MySecondProject] ------------------------------
[2013-03-11 21:55:20 - MySecondProject] Android Launch!
[2013-03-11 21:55:20 - MySecondProject] adb is running normally.
[2013-03-11 21:55:20 - MySecondProject] Performing com.exapmple.mysecondproject.MainActivity activity launch
[2013-03-11 21:55:20 - MySecondProject] Automatic Target Mode: Preferred AVD 'Gingerbread_WVGA' is not available. Launching new emulator.
2013-03-11 21:55:20 - MySecondProject使用虚拟设备'Gingerbread_WVGA‘启动新的仿真器2013-03-11 21:55:28 -仿真器仿真器:仿真器窗口看不到,已重新进入2013-03-11 21:55:28 -仿真器
发布于 2013-03-10 22:22:04
请检查您使用任何接口创建的VD,或者将android:minSdkVersion="10“改为android:minSdkVersion="7”,然后重试。
https://stackoverflow.com/questions/15313349
复制相似问题