我尝试了所有操作,从AndroidManifest.xml中删除了权限等,但没有任何变化。
Play商店:
支持的Android设备已添加311台设备
使用Cordova开发APP,使用Samsung Galaxy Tab A,SDK 21(发布应用时不支持)。
的AndroidManifest.xml:
<?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="10200" android:versionName="1.2" package="com.yorbody.videochatclient" 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" />
<application android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name" android:supportsRtl="true">
<activity android:configChanges="orientation|keyboardHidden|screenSize" android:label="@string/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:theme="@android:style/Theme.DeviceDefault.NoActionBar" android:windowSoftInputMode="adjustPan">
<intent-filter android:label="@string/launcher_name">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="21" />
</manifest>
答案 0 :(得分:1)
The solution was to use the: android-armv7-release-unsigned.apk
and not the: android-x86-release-unsigned.apk
Now 9999+ devices supported, and its working.
答案 1 :(得分:0)
您还需要检查引用库所请求的权限。其中一个库很可能正在请求您想要包含的设备中没有的权限。