我无法解释为什么我似乎无法从清单中为我的应用程序设置minSdkVersion。我正在使用Ubuntu OS从终端进行编译 - 只需使用>蚂蚁调试
这是我的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="self.redway.menubardemo"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk
minSdkVersion="11"
targetSdkVersion="20"/>
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
<activity android:name="MenuBarActivity"
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>
然而当我在终端编译输出时说:
[gettarget]项目目标:Android 4.4W [gettarget] API级别:20 [gettarget]警告:未设置minSdkVersion值。应用程序将安装在所有Android版本上。 [echo] ----------
虽然它运行但是当我的最小目标设置为11时,应用程序没有给我动作栏或我期望的全息主题。
我是否需要对构建路径或某些棘手的事情做些什么。在这里或谷歌一般没有找到关于这个主题的任何内容。完全陷入困境。
答案 0 :(得分:3)
将android
名称空间前缀与您的属性一起使用。也就是说,android:minSdkVersion
而不是默认minSdkVersion
。
targetSdkVersion
同样存在问题。
答案 1 :(得分:2)
使用它:
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="20" />