UNPKG

@dynatrace/cordova-plugin

Version:

This plugin gives you the ability to use the Dynatrace instrumentation in your hybrid application (Cordova, Ionic, ..). It uses the Mobile Agent, the JavaScript Agent. The Mobile Agent will give you all device specific values containing lifecycle informat

55 lines (48 loc) 2.31 kB
<?xml version="1.0" encoding="UTF-8"?> <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="@dynatrace/cordova-plugin" version="2.333.1"> <name>Dynatrace</name> <description>Dynatrace Cordova Plugin</description> <hook type="after_plugin_add" src="scripts/Install.js"/> <hook type="before_plugin_uninstall" src="scripts/Uninstall.js"/> <hook type="after_prepare" src="scripts/Instrument.js"/> <hook type="after_build" src="scripts/CloseLog.js" /> <hook type="after_run" src="scripts/CloseLog.js" /> <js-module src="networking/NativeNetworkInterceptorUtils.js" name="native-network-interceptor-utils" /> <js-module src="networking/MobileFirstNetworkInterceptor.js" name="mobile-first-network-interceptor" /> <js-module src="other/DynatraceCordovaPlugin.js" name="dynatraceMobile"> <clobbers target="dynatraceMobile"/> </js-module> <!-- ios --> <platform name="ios"> <framework src="libsqlite3.dylib" /> <framework src="CoreLocation.framework" /> <framework src="CoreTelephony.framework" /> <framework src="Security.framework" /> <framework src="SystemConfiguration.framework" /> <framework src="libz.dylib" /> <framework src="libc++.dylib" /> <framework src="MessageUI.framework" /> <framework src="WebKit.framework" /> <framework src="files/iOS/Dynatrace.xcframework" custom="true" embed="true" /> <config-file parent="/*" target="config.xml"> <feature name="DynatraceCordovaPlugin"> <param name="ios-package" value="DynatraceCordovaPlugin" /> </feature> </config-file> <header-file src="other/DynatraceCordovaPlugin.h"/> <source-file src="other/DynatraceCordovaPlugin.m"/> </platform> <platform name="android"> <framework src="com.dynatrace.agent:agent-android:8.333.1.1006" /> <source-file src="other/DynatraceCordovaPlugin.java" target-dir="src/com/dynatrace/cordova/plugin" /> <config-file target="config.xml" parent="/*"> <feature name="DynatraceCordovaPlugin"> <param name="android-package" value="com.dynatrace.cordova.plugin.DynatraceCordovaPlugin" /> </feature> </config-file> </platform> <platform name="windows"> </platform> </plugin>