-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
36 lines (31 loc) · 1.41 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
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-androidapkinfo"
version="1.0.3">
<name>Cordova Plugin To Extract infos from APK</name>
<description></description>
<license>MIT</license>
<author>Arthur Breton</author>
<keywords>APK Signatures</keywords>
<repo>https://github.com/deeeed/cordova-plugin-androidapkinfo</repo>
<issue>https://github.com/deeeed/cordova-plugin-androidapkinfo/issues</issue>
<!-- android -->
<platform name="android">
<js-module src="www/plugin.js" name="plugin">
<runs/>
<!-- This is the window variable name you want, like window.MyCordovaPlugin -->
<clobbers target="AndroidAPKInfoPlugin" />
</js-module>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
</config-file>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="AndroidAPKInfoPlugin">
<param name="android-package" value="net.siteed.AndroidAPKInfoPlugin" />
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/libs/commons-codec-1.10.jar" target-dir="libs"/>
<source-file src="src/android/net/siteed/AndroidAPKInfoPlugin.java" target-dir="src/net/siteed/" />
</platform>
</plugin>