Android: min version 13 目标版本13
设备 QVGA(ADP2)
320 * 480 MDPI
当我尝试启动应用程序时,它表示找不到兼容设备。 我错过了什么?它只是一个活动,我刚刚创建它。 XML中没有任何内容 文件也是。 AVD 的配置应该是什么?
我是否必须仅在平板电脑上运行该应用程序?我不能使用mdpi或ldpi设备?
清单文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.smartcardholder"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="13"
android:targetSdkVersion="13" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.smartcardholder.HomeScreenActivity"
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>
答案 0 :(得分:0)
(Are any of these AVDs running at the moment)?
If (yes) {
simply start one of the AVDs.
}
else {
(Is the running AVD giving you any log on LogCat)?
if (no) {
restart ADB server
}
else {
copy and paste your whole manifest file here,
there might be be some other limitation specified in it.
}
}
答案 1 :(得分:0)
试试这个 -
右键单击要在package explorer
中运行的项目。然后继续Run As -> Run Configurations
。打开一个框,在选项卡中单击Target Tab
,然后选中要运行项目的Automatically Pick Compatible Device -> Select Device
。点击Apply
,然后点击Run
。希望它有效。