我正在努力使用只能在平板电脑上访问的Phonegap为Android制作应用。我的理解是我需要让Phonegap Build修改输出的AndroidManifest.xml。
我尝试将以下代码添加到config.xml中,但它似乎没有做到这一点:
<edit-config file="AndroidManifest.xml" target="/*" mode="merge">
<supports-screens android:resizeable="true"
android:smallScreens="false"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true" />
有谁能说出我做错了什么?
提前致谢,
尼克
答案 0 :(得分:1)
试试这个:
<config-file platform="android" parent="/manifest" mode="merge">
<supports-screens android:smallScreens="false" />
</config-file>
无需设置任何内容&#34; true&#34;因为这是默认值。
从文档中复制的这一位还是键
重要提示:使用config-file元素定位Android时,您需要 需要在widget元素中声明android xml命名空间 你的config.xml,否则你的文档将不会传递我们的xml 验证。 xml
我不能粘贴其余部分,因为我的代表少于10 - 请参阅文档并查看上面的段落并阅读其后的部分:
http://docs.phonegap.com/phonegap-build/configuring/config-file-element/
我刚刚在我的PGB项目中开始工作,以获得我需要改变的其他表现形式