我想将我的Phonegap应用仅限于平板电脑。 阅读this page似乎可以通过config.xml文件。
在我的config.xml文件中,我进行了以下更改:
xmlns:android = "http://schemas.android.com/apk/res/android"
加
<gap:config-file platform="android" parent="/manifest">
<supports-screens
android:smallScreens="false"
android:normalScreens="false"
android:largeScreens="true"
android:xlargeScreens="true"
android:requiresSmallestWidthDp="600" />
</gap:config-file>
当我构建应用程序时,我无法在AndroidManifest.xml上看到更改。 我的错误在哪里?此过程应该使用build.phonegap.com进行本地构建和远程构建吗?
提前致谢。
答案 0 :(得分:1)
好的,几个小时后我明白了发生了什么:差距:只有使用PhoneGap Build(build.phonegap.com)时,config-file才能正常工作。之后我使用android-apktool从生成的.apk中获取AndroidManifest.xml,我看到了我的配置。