我最近完成了我的第一个Android应用程序的构建。我今天将它发布到商店,但它说支持0设备。这是我的清单文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.guessthepicturespazam.guessit" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="נחש את המילה"
android:theme="@style/Theme.AppCompat.NoActionBar" >
<activity
android:name=".MainActivity"
android:configChanges="orientation"
android:label="נחש את המילה"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".GameActivity"
android:configChanges="orientation"
android:label="@string/title_activity_game"
android:screenOrientation="portrait" >
</activity>
<activity
android:name=".Splash"
android:configChanges="orientation"
android:label="נחש את המילה"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".StoreActivity"
android:label="@string/title_activity_store" >
</activity>
<activity
android:name=".GameOverActivity"
android:label="@string/title_activity_game_over" >
</activity>
</application>
<supports-screens
android:anyDensity="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:resizeable="true" />
</manifest>
这是我的build.grade文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.GuessTheWordZahal.guessit"
minSdkVersion 10
targetSdkVersion 23
versionCode 2
versionName "1.0.1"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'org.apache.directory.studio:org.apache.commons.io:2.4'
compile 'com.google.android.gms:play-services-ads:7.8.0'
}
我尝试在线查看此问题,但我找不到类似于我的问题。大多数应用程序都没有受支持的设备,因为它们使用的功能仅在某些设备中可用。我只是无法弄清楚我的错误。我实际上已经在我的三星Galaxy上测试了这个应用程序并且工作正常。
答案 0 :(得分:2)
您需要提供支持的sdkVersion
<uses-sdk
android:minSdkVersion="minimum(e.g "8")"
android:targetSdkVersion="maximum(e.g "22")" />
答案 1 :(得分:0)
如果您正在使用Eclipse,请提及您的minSdkVersion&amp;清单文件中的maxSdkVersion,如果您使用的是Android Studio,请在build.gradle文件中提及这些内容。
对于Eclipse
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.guessthepicturespazam.guessit"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8"
android:targetSdkVersion="21"/>
.......................
</manifest>
适用于Android Studio
编辑build.gradle文件,如下所示
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.guessthepicturespazam.guessit"
minSdkVersion 8
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
注意:如果您希望以后更新应用程序,版本名称和版本代码非常重要。
答案 2 :(得分:0)
您的清单不正确。
<supports-screens>
当前位于应用程序标记中,但应该向上移动到清单标记。 查看清单结构https://developer.android.com/guide/topics/manifest/manifest-intro.html#filestruct
我认为Play-store解析器找不到支持屏幕信息,并认为没有支持的屏幕。请更正清单告诉我们。非常有趣的问题。