简体   繁体   English

我已将应用程序上传到 google play 商店。 但它不支持设备华为和其他手机。 会是什么呢? 这是我的清单

[英]I have uploaded to google play store an app. But it doesn't support device Huawei and other mobile phones. What could it be? This is my manifest

This is the AndroidManifest.xml file I have changed everything.这是 AndroidManifest.xml 文件,我已经更改了所有内容。 I delete support-screens but it didn't help.我删除了支持屏幕,但没有帮助。 I have change permission.我有更改权限。 I have changed settings.我已经更改了设置。 I have changed sdk target but even that didnt help.我已经更改了 sdk 目标,但即便如此也无济于事。 So I dont know now what to do.所以我现在不知道该怎么办。

    <?xml version='1.0' encoding='utf-8'?>
  <manifest android:hardwareAccelerated="true" android:versionCode="60318" android:versionName="6.3.18" package="app.scread.com" xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<uses-permission android:name="android.permission.INTERNET" />
<compatible-screens>
    <!-- all small size screens -->
    <screen android:screenSize="small" android:screenDensity="ldpi" />
    <screen android:screenSize="small" android:screenDensity="mdpi" />
    <screen android:screenSize="small" android:screenDensity="hdpi" />
    <screen android:screenSize="small" android:screenDensity="xhdpi" />
    <screen android:screenSize="small" android:screenDensity="xxhdpi" />
    <screen android:screenSize="small" android:screenDensity="xxxhdpi" />
    <!-- all normal size screens -->
    <screen android:screenSize="normal" android:screenDensity="ldpi" />
    <screen android:screenSize="normal" android:screenDensity="mdpi" />
    <screen android:screenSize="normal" android:screenDensity="hdpi" />
    <screen android:screenSize="normal" android:screenDensity="xhdpi" />
    <screen android:screenSize="normal" android:screenDensity="xxhdpi" />
    <screen android:screenSize="normal" android:screenDensity="xxxhdpi" />
</compatible-screens>
<application android:hardwareAccelerated="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true">
    <activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode" android:label="@string/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:theme="@style/CordovaWindowBackgroundTheme" 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>
    <receiver android:enabled="true" android:name="nl.xservices.plugins.ShareChooserPendingIntent">
        <intent-filter>
            <action android:name="android.intent.action.SEND" />
        </intent-filter>
    </receiver>
    <provider android:authorities="${applicationId}.sharing.provider" android:exported="false" android:grantUriPermissions="true" android:name="nl.xservices.plugins.FileProvider">
        <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/sharing_paths" />
    </provider>
</application>
    <uses-permission android:name="android.permission.VIBRATE" />
     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
       </manifest>

It looks like your app should support all type of screens, if so i suggest to remove <compatible-screens> block from manifest file.看起来您的应用程序应该支持所有类型的屏幕,如果是这样,我建议从清单文件中删除<compatible-screens>块。 Because there are android:screenSize= large and xlarge screen devices.因为有android:screenSize= largexlarge屏幕设备。 For now your app don't support them.目前您的应用程序不支持它们。 Check docs检查文档

暂无
暂无

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

相关问题 我想在我的Android应用中使用Google Play服务v8.1.0。 如果用户的设备没有Google Play服务v8.1.0,该怎么办? - I want to use google play service v8.1.0 in my android app. What to do if user's device doesn't have google play service v8.1.0? 我的Android应用程序未在某些三星手机的Google Play商店中列出吗? - My Android App doesn't list on Google play store on some Samsung Phones? 我已在 Play 商店中显示“您的设备与此版本不兼容”的所有设备上上传了该应用程序 - I have uploaded the app on all devices it shows "your device isn't compatible with this version" in play store 我上传到 Google Play 商店的应用现在说它在我的设备上不兼容 - App I uploaded to Google Play Store now says it's not compatible on my device Google Play商店中更新的APK尚未到达手机 - Updated APK in Google play store have not reached the mobile phones 设备与Google Play商店中的新旧手机不兼容 - Device isn't compatible for newer AND older phones in Google Play store 如果我在华为设备上运行我的应用程序,则无法收到通知 - Could not get notifications if I run my app on Huawei device Google Play 不接受任何依赖华为的应用程序包 - Google Play doesn't accept app bundle with any Huawei dependency Android 应用程序要求在华为手机上使用 Google 移动服务 - Android App asking for Google Mobile services on Huawei phones 为什么上载到Play商店的App即使我未将其写入清单文件,也要求访问照片/媒体/文件 - Why does App uploaded to play store ask for access to photos/media/files even I have not written it in Manifest file
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM