-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
44 lines (42 loc) · 3.08 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
37
38
39
40
41
42
43
44
<?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>Cordova Download Manager Plugin</description>
<license>GPL v3</license>
<keywords>cordova,download,manager</keywords>
<repo>https://github.com/pierrejochem/cordova-plugin-downloadmanager.git</repo>
<issue>https://github.com/pierrejochem/cordova-plugin-downloadmanager/issues</issue>
<js-module name="DownloadManager" src="www/js/DownloadManager.js">
<clobbers target="DownloadManager" />
</js-module>
<platform name="android">
<framework src="com.android.support:support-v4:+" value="gradle" />
<config-file parent="/*" target="res/xml/config.xml">
<feature name="DownloadManager">
<param name="android-package" value="org.apache.cordova.DownloadManager" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</config-file>
<source-file src="src/android/DownloadManager.java" target-dir="src/org/apache/cordova/DownloadManagerDownloadManager" />
<source-file src="src/android/DownloadControllerSingleton.java" target-dir="src/org/apache/cordova/DownloadManagerDownloadManager" />
<source-file src="src/android/Downloader.java" target-dir="src/org/apache/cordova/DownloadManagerDownloadManager" />
<!-- Icon files -->
<resource-file src="src/android/res/drawable-hdpi/ic_stat_notification.png" target="res/drawable-hdpi/ic_stat_notification.png" />
<resource-file src="src/android/res/drawable-hdpi-v9/ic_stat_notification.png" target="res/drawable-hdpi-v9/ic_stat_notification.png" />
<resource-file src="src/android/res/drawable-hdpi-v11/ic_stat_notification.png" target="res/drawable-hdpi-v11/ic_stat_notification.png" />
<resource-file src="src/android/res/drawable-ldpi-v9/ic_stat_notification.png" target="res/drawable-ldpi-v9/ic_stat_notification.png" />
<resource-file src="src/android/res/drawable-ldpi-v11/ic_stat_notification.png" target="res/drawable-ldpi-v11/ic_stat_notification.png" />
<resource-file src="src/android/res/drawable-mdpi/ic_stat_notification.png" target="res/drawable-mdpi/ic_stat_notification.png" />
<resource-file src="src/android/res/drawable-mdpi-v9/ic_stat_notification.png" target="res/drawable-mdpi-v9/ic_stat_notification.png" />
<resource-file src="src/android/res/drawable-mdpi-v11/ic_stat_notification.png" target="res/drawable-mdpi-v11/ic_stat_notification.png" />
<resource-file src="src/android/res/drawable-xhdpi/ic_stat_notification.png" target="res/drawable-xhdpi/ic_stat_notification.png" />
<resource-file src="src/android/res/drawable-xhdpi-v9/ic_stat_notification.png" target="res/drawable-xhdpi-v9/ic_stat_notification.png" />
<resource-file src="src/android/res/drawable-xhdpi-v11/ic_stat_notification.png" target="res/drawable-xhdpi-v11/ic_stat_notification.png" />
</platform>
</plugin>