forked from Luka313/integrator-cordova-plugin-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
26 lines (25 loc) · 1.19 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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="integrator-cordova-plugin-downloader" version="1.2.0"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>Downloader</name>
<description>
This plugin is designed to support downloading files using Android DownloadManager.
</description>
<keywords>downloader</keywords>
<js-module name="Downloader" src="www/Downloader.js">
<clobbers target="cordova.plugins.Downloader" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="Downloader">
<param name="android-package" value="hr.integrator.cordova.plugins.downloader.Downloader" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</config-file>
<source-file src="src/android/Downloader.java" target-dir="src/hr/integrator/cordova/plugins/downloader" />
</platform>
</plugin>