1
KitKatを実行するタブレットを除く他のすべてのデバイスで動作するphonegapアプリケーションを作成しました(アプリケーションはインストールされますが、コンテンツの代わりに白い画面が表示されます)。私はこれがタブレットで問題であるかどうかを調べたが、まったく同じアプリのビルドがアンドロイドロリポップを実行している別のタブレットで動作するため、アンドロイド版と思われる...kitkat用のphonegapビルド
これは私の設定ファイル追加する必要があるものがあるのか、それともKitKatタブレットで正しく動作するように削除するべきものがありますか?
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.phonegap.helloworld"
version="1.0.0"
xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
xmlns:android = "http://schemas.android.com/apk/res/android">
<config-file platform="android" parent="/manifest" mode="merge">
<supports-screens
android:xlargeScreens="true"
android:largeScreens="true"
android:smallScreens="true"
android:requiresSmallestWidthDp="600"
/>
<uses-sdk android:minSdkVersion="19"
android:targetSdkVersion="19"/>
</config-file>
<name>My App</name>
<description>
Tablet App.
</description>
<content src="index.html"/>
<preference name="target-device" value="universal" />
<preference name="android-minSdkVersion" value="19" />
<preference name="android-targetSdkVersion" value="19"/>
<preference name="orientation" value="landscape" />
<access origin="*"/>
</widget>
私はプラグインを使用していない、と私のアプリを構築するためにbuild.phonegapを使用しています。
おかげで、事前