-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathplugin.xml
76 lines (69 loc) · 3.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) Microsoft Open Technologies, Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
-->
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-ms-azure-mobile-apps"
version="2.0.0">
<name>Azure Mobile Apps</name>
<description>This library enables you to develop scalable and secure cordova mobile apps hosted in Microsoft Azure. You can incorporate structured storage, user authentication and push notifications in minutes. For more information, check out http://azure.microsoft.com/en-us/documentation/articles/app-service-mobile-value-prop-preview</description>
<license>Apache 2.0</license>
<keywords>azure, services, zumo, cloud</keywords>
<repo>https://github.com/azure/azure-mobile-apps-cordova-client</repo>
<issue>https://github.com/azure/azure-mobile-apps-js-client/issues</issue>
<dependency id="cordova-plugin-inappbrowser@1.5.0"/>
<dependency id="cordova-sqlite-storage@1.4.8"/>
<platform name="windows8">
<js-module src="www/MobileServices.Cordova.Ext.js" name="AzureMobileServices.Ext">
<runs />
</js-module>
<js-module src="www/MobileServices.Cordova.js" name="AzureMobileServices">
<clobbers target="WindowsAzure" />
</js-module>
</platform>
<platform name="windows">
<js-module src="www/MobileServices.Cordova.Ext.js" name="AzureMobileServices.Ext">
<runs />
</js-module>
<js-module src="www/MobileServices.Cordova.js" name="AzureMobileServices">
<clobbers target="WindowsAzure" />
</js-module>
</platform>
<platform name="wp8">
<js-module src="www/MobileServices.Cordova.Ext.js" name="AzureMobileServices.Ext">
<runs />
</js-module>
<js-module src="www/index.js" name="AzureMobileServices">
<clobbers target="WindowsAzure" />
</js-module>
</platform>
<platform name="ios">
<js-module src="www/MobileServices.Cordova.Ext.js" name="AzureMobileServices.Ext">
<runs />
</js-module>
<js-module src="www/MobileServices.Cordova.js" name="AzureMobileServices">
</js-module>
<js-module src="www/index.js" name="abc">
<clobbers target="WindowsAzure" />
</js-module>
<source-file src="src/ios/easyauth.m" />
<framework src="src/ios/AzureEasyAuth.framework" custom="true" />
</platform>
<platform name="android">
<js-module src="www/MobileServices.Cordova.Ext.js" name="AzureMobileServices.Ext">
<runs />
</js-module>
<js-module src="www/MobileServices.Cordova.js" name="AzureMobileServices">
<clobbers target="WindowsAzure" />
</js-module>
</platform>
<platform name="browser">
<js-module src="www/MobileServices.Cordova.Ext.js" name="AzureMobileServices.Ext">
<runs />
</js-module>
<js-module src="www/MobileServices.Cordova.js" name="AzureMobileServices">
<clobbers target="WindowsAzure" />
</js-module>
</platform>
</plugin>