gpt4 book ai didi

android - PhoneGap - 使 Android 功能可选

转载 作者:搜寻专家 更新时间:2023-11-01 08:44:52 24 4
gpt4 key购买 nike

我想为我的 Android 应用程序设置一些不需要的设置,这样 Google 的 Play 商店就会认识到它对平板电脑也很有用。我需要将这两行添加到我的 AndroidManifest.xml 中:

<uses-feature android:name="android.hardware.camera" android:required="false" />
<uses-feature android:name="android.hardware.telephony" android:required="false" />

因为我使用 PhoneGap 构建来编译我的应用程序,所以我需要以某种方式将它们添加到 config.xml 文件中,以便 PhoneGap 会在构建过程中将它们添加到正确的位置(我猜).. .但是没有成功!是否需要使用任何特定语法来添加 uses-feature通过 config.xml 文件?

请注意,我通过将下面的行添加到我的 config.xml 文件来设置 minSdkVersion 做了几乎相同的事情,并且在构建之后我将它放在我的 list 文件中:

<preference name="android-minSdkVersion" value="11" />

最佳答案

找到解决方案!基于PhoneGap Documentation - Config File Elements ,只需要在我的“config.xml”文件中添加类似这样的内容:

<gap:config-file platform="android" parent="/manifest" mode="add">
<uses-feature android:name="android.hardware.camera" android:required="false" />
<uses-feature android:name="android.hardware.telephony" android:required="false" />
</gap:config-file>

还需要将 gap 命名空间添加到 widget 节点:

xmlns:gap="http://phonegap.com/ns/1.0"

关于android - PhoneGap - 使 Android 功能可选,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29434321/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com