Files
liangyc cfcfe6df1c fix: 修正插件ID大小写不一致问题
将插件ID从'cordova-plugin-hardwareKey'统一改为'cordova-plugin-hardwarekey',确保所有引用的一致性
2025-06-30 17:04:11 +08:00

22 lines
904 B
XML

<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-hardwarekey" version="0.0.1"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns="http://apache.org/cordova/ns/plugins/1.0">
<name>HardwareKey Plugin</name>
<js-module name="cordova-plugin-hardwarekey" src="www/hardwareKey.js">
<clobbers target="cordova.plugin.hardwareKey"/>
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="HardwareKey">
<param name="android-package" value="cordova.plugin.hardwareKey.HardwareKey"/>
</feature>
</config-file>
<source-file src="src/android/cordova/plugin/hardwareKey/HardwareKey.java"
target-dir="cordova/plugin/hardwareKey"/>
<lib-file src="src/android/libsref/scankey.jar" />
</platform>
</plugin>