简体   繁体   English

在Google Play中上传的Android应用未显示任何设备

[英]Uploaded android app in google play showing no device

I have uploaded an android app created in cordova into google play... After upload it is showing zero supplorted device... Here is my manifest file. 我已将在科尔多瓦创建的一个Android应用上传到Google Play中。上传后,该设备显示了零支持的设备。这是我的清单文件。 I do not know what to do. 我不知道该怎么办。 Please help. 请帮忙。

<?xml version='1.0' encoding='utf-8'?>
<manifest 
android:versionCode="7" 
android:versionName="7.0.0" 
package="com.xiphos.nabc.cordova" 
xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk 
android:minSdkVersion="9" 
android:targetSdkVersion="20" 
android:maxSdkVersion="20" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CALL_PHONE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application
android:icon="@drawable/icon" 
android:label="@string/app_name" 
android:allowBackup="false" >
<activity
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" 
android:label="@string/activity_name" 
android:launchMode="singleTop" 
android:name=".CordovaApp" 
android:theme="@android:style/Theme.Black.NoTitleBar" 
android:windowSoftInputMode="adjustResize">
   <intent-filter android:label="@string/launcher_name">
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>
    <service android:name=".NotificationService" />
</application>

</manifest>

SDK 20 was the L preview, you cannot use that for a production app. SDK 20是L预览,您不能将其用于生产应用。 Change it to 21. 将其更改为21。

https://source.android.com/source/build-numbers.html https://source.android.com/source/build-numbers.html

Try to change android:targetSdkVersion="20" to a lower value such as android:targetSdkVersion="14" . 尝试将android:targetSdkVersion="20"更改为较低的值,例如android:targetSdkVersion="14" Hope it helps. 希望能帮助到你。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Google Play上的应用未在某些Android设备上显示 - App on google play not showing on some android device 将应用上传到Google Play,但表示与设备不兼容 - Uploaded app to Google Play but saying incompatible with device Google Play中没有我的Android应用支持的设备 - No supported device for my Android app in Google Play Google Play-尽管特定应用中的手机设备目录中存在Android应用,但该应用并未在商店中显示特定型号的手机 - Google Play - Android app not showing up in the store for specific phone model although being present in the apps Device Catalog 从Android设备搜索时,Google Play应用未在搜索结果中显示 - Google Play app not showing in search results when searching from Android device Google Play商店上平板电脑未显示Android App - Android App is not showing for a tablet on Google play store Android应用未在Google Play中针对平板电脑显示 - Android app not showing for tablet in google play Android应用程序显示在手机的Google Play中,而不显示在平板电脑的Google Play中 - Android app showing in Google Play for Phone but not for Google Play for Tablets 为什么谷歌游戏商店没有显示应用程序设备不可用的原因? - Why google play store is not showing the reason for device unavailability for app? 应用未显示在Google Play上 - App not showing on google play
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM