UNPKG

com-easystep2-datawedge-plugin-intent-cordova

Version:
28 lines (25 loc) 1.33 kB
<?xml version='1.0' encoding='utf-8'?> <plugin id="com-easystep2-datawedge-plugin-intent-cordova" version="4.4.3" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android"> <name>Intent Shim</name> <js-module name="IntentShim" src="www/IntentShim.js"> <clobbers target="intentShim" /> </js-module> <hook type="after_prepare" src="hooks/after_prepare.js" /> <!-- android --> <platform name="android"> <config-file target="res/xml/config.xml" parent="/*"> <feature name="IntentShim" > <param name="android-package" value="com.easystep2.datawedge.plugin.intent.IntentShim"/> <param name="onload" value="true"/> </feature> </config-file> <config-file target="AndroidManifest.xml" platform="android" parent="/manifest/application/activity" mode="merge"> <intent-filter> <action android:name="com.easystep2.datawedge.plugin.intent.ACTION" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </config-file> <source-file src="src/android/IntentShim.java" target-dir="src/com/easystep2/plugin/intent" /> <framework src="androidx.core:core:1.1.0" /> </platform> </plugin>