forked from OfficeDev/cordova-plugin-ms-office-rest-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
30 lines (24 loc) · 1.36 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
<?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 id="cordova-plugin-ms-office-rest-client" version="0.2.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>Office365 OData Engine</name>
<description>Provides base OData protocol client and Microsoft Azure Active Directory (ADAL) OAuth client.</description>
<license>Apache 2.0</license>
<keywords>microsoft, office, azure, adal, odata</keywords>
<repo>https://github.com/MSOpenTech/cordova-plugin-ms-office-rest-client</repo>
<issue>https://github.com/MSOpenTech/cordova-plugin-ms-office-rest-client/issues</issue>
<dependency id="cordova-plugin-ms-adal" url="[email protected]" />
<js-module name="utility" src="www/utility.js">
<runs />
</js-module>
<!-- TODO: Move other core functionality from service-specific clients to this shared core. -->
<platform name="android">
<framework src="src/android/odata-engine.gradle" custom="true" type="gradleReference"/>
</platform>
<platform name="ios">
<framework src="src/ios/sdk/office365_odata_base.framework" custom="true"/>
</platform>
</plugin>