PhoneGap - 使Android功能可选

时间:2015-04-03 14:42:43

标签: android cordova phonegap-build uses-feature

我希望我的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会在构建过程中将它们添加到正确的位置(我猜)。但没有成功!是否需要使用任何特定语法来通过 config.xml 文件添加uses-feature

请注意,我通过在 config.xml 文件中添加以下行来设置 minSdkVersion 几乎完全相同,并且在构建之后我将它放在我的清单文件中:< / p>

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

2 个答案:

答案 0 :(得分:2)

找到解决方案!基于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名称空间添加到小部件节点:

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

答案 1 :(得分:1)

<config-file>看起来对覆盖非常有用....唉,这似乎只是一个PhoneGap功能。对于Cordova,您可能需要使用挂钩。

可以找到一个很好的例子HERE

我修改了脚本以添加我需要的功能(我需要GPS和相机作为可选功能)。

module.exports = function (context) {

var fs = context.requireCordovaModule('fs'),
    path = context.requireCordovaModule('path');

var platformRoot = path.join(context.opts.projectRoot, 'platforms/android');


var manifestFile = path.join(platformRoot, 'AndroidManifest.xml');

if (fs.existsSync(manifestFile)) {

    fs.readFile(manifestFile, 'utf8', function (err, data) {
        if (err) {
            throw new Error('Unable to find AndroidManifest.xml: ' + err);
        }

        var insertAt = data.indexOf("</manifest>");

        var optionalFeatures = "<uses-feature android:name=\"android.hardware.LOCATION\" android:required=\"false\"/><uses-feature android:name=\"android.hardware.location.GPS\" android:required=\"false\"/><uses-feature android:name=\"android.hardware.camera\" android:required=\"false\"/><uses-feature android:name=\"android.hardware.camera.autofocus\" android:required=\"false\"/>";

        var result = data.slice(0, insertAt) + optionalFeatures + data.slice(insertAt);

        fs.writeFile(manifestFile, result, 'utf8', function (err) {
            if (err) throw new Error('Unable to write into AndroidManifest.xml: ' + err);
        })

    });
}

};

然后在config.xml中设置钩子

 <hook type="after_build" src="scripts/afterBuild.js" />

希望有所帮助