-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
23 lines (21 loc) · 727 Bytes
/
Copy pathplugin.xml
File metadata and controls
23 lines (21 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8" ?>
<!--
Copyright (c) 2013 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="net.samuelcampos.cordova.plugins.blob-constructor"
version="1.0.0">
<engines>
<!--REVIEW: cargo cult? Why 2.4? -->
<engine name="cordova" version=">=2.4.0" />
</engines>
<name>XHR blob returnType shim</name>
<platform name="android">
<js-module src="www/Blob.js" name="blob-constructor">
<merges target="window" />
</js-module>
</platform>
</plugin>