-
Notifications
You must be signed in to change notification settings - Fork 38
/
plugin.xml
13 lines (13 loc) · 839 Bytes
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-downloadmanager" version="0.0.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>DownloadManager</name>
<DESCRIPTION>Awesome PLugin to dowload files directly in downloads app</DESCRIPTION>
<js-module name="DownloadManager" src="www/DownloadManager.js">
<clobbers target="cordova.plugins.DownloadManager" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="DownloadManager">
<param name="android-package" value="downloadmanager.DownloadManager" />
</feature></config-file><config-file parent="/*" target="AndroidManifest.xml">
</config-file><source-file src="src/android/DownloadManager.java" target-dir="src/DownloadManager" /></platform></plugin>