forked from OutSystems/cordova-plugin-stetho-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
31 lines (25 loc) · 1.13 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="com.outsystems.mobile.stetho"
version="0.0.1">
<name>Stetho Plugin</name>
<description>Plugin to integrate with Stetho a debug bridge for Android applications</description>
<license>MIT License</license>
<keywords>cordova, stetho, debug bridge, android</keywords>
<repo></repo>
<issue></issue>
<js-module src="www/Stetho.js" name="Stetho">
<clobbers target="navigator.device.stetho" />
</js-module>
<!-- Android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="StethoPlugin">
<param name="android-package" value="com.outsystems.mobile.stetho.StethoPlugin"/>
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/StethoPlugin.java" target-dir="src/com/outsystems/mobile/stetho" />
<framework src="src/android/stetho.gradle" custom="true" type="gradleReference" />
</platform>
</plugin>