Files
cordova-plugin-hardwarekey/plugin.xml
2025-06-26 15:17:38 +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>