已加载模拟器,但未安装应用程序且没有错误

时间:2013-03-09 16:54:09

标签: android eclipse avd helios

已加载模拟器,但未安装应用, 我尝试重新启动adb,重启eclipse,创建新的android项目,创建新的avd everthing工作正常,但我根本无法安装任何应用程序。下面是我的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 - 模拟器]

1 个答案:

答案 0 :(得分:0)

检查您使用任何API创建的VD,或将android:minSdkVersion =“10”更改为android:minSdkVersion =“7”并重试。