現在、CordovaでAppを開発していて、アンドロイドデバイス(Chuwi Hi8(4.4)およびHomtom HT6(5.1))でテストしています。今はapkを公開しましたが、appstoreは私のすべてのデバイスと互換性がないことをアプリケーションに伝えています(デベロッパーコンソールには〜10000は互換性があります)。また、私は開発者コンソール(デバイス互換性=>すべてのデバイス)のデバイスのリストで自分のモデルを見つけることができません。今では、私はこれらの中国の携帯電話を知っているdoesnt、私は彼らが他のアプリをインストールすることができないので、これらの開発者は自分のデバイスと互換性のある自分のデバイスを作ることができている必要があります。私は私のアプリは、私のデバイスとの互換性がない理由何らかの理由を参照してくださいカントAndroidデバイスは自分のデバイスと互換性がありません
<?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="10101" android:versionName="1.1.0" package="de.codolith.venuerater" 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|keyboard|screenSize|locale" android:label="@string/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:screenOrientation="portrait" android:theme="@android:style/Theme.DeviceDefault.NoActionBar" 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>
</application>
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
</manifest>
:
は、これが私のマニフェストです。また、それは店で "不明なデバイス"としてショーであるBluestacksとの互換性がないと言います。
ここで問題になる可能性のあるアイデアは誰にもありますか?
//編集:私はちょうどチェックして私のデバイスで見つけることができますが、それはなぜブラウザで互換性がないと言いますか?
パッケージが唯一の3.3メガバイトです。私はドイツに位置しているので、私はないと思います。まあ、私のアプリはリアカメラが必要です。私のデバイスもカメラを持っています。リアとフロント。また、私はむしろ私のアプリから画像ファイルを要求し、通常のカメラ画面を開いて写真を撮る。カメラのことが必要なのかどうかはわかりません。 – fredlllll