Skip to content
This repository was archived by the owner on Jun 18, 2024. It is now read-only.

Commit 874dd15

Browse files
author
Marcos Torres
committed
Merge branch 'integration' into dev
* integration: Update file with v0.10.0 changes update library version excluding android support from resulting .jar from .aar version bump Update README.md
2 parents e921158 + 0dfeb01 commit 874dd15

File tree

5 files changed

+42
-10
lines changed

5 files changed

+42
-10
lines changed

CHANGES.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Office 365 SDK for Android #
22

3+
### Version 0.10.0 ###
4+
5+
* Support for deserialization of entity subclasses a650fb1
6+
* Initial test structure for outlook services d51911b
7+
* Added tests for deserializing lists and single items in the correct d… … f445dea
8+
* Updated CalendarView tests, added getCalendarView for particular cale… … 6de06e3
9+
* Adding new ADAL based dependency resolver 1530d5e
10+
* Updating sample with new ADAL based dependency resolver 54ad1f0
11+
* OrderBy support bb34fc7
12+
* Added tests for skip and order by 08ed48e
13+
* Version bump d9637b6
14+
* Excluding android support from resulting .jar from .aar
15+
16+
17+
### Version 0.9.4###
18+
19+
* Library consolidation into a new package : odata-engine-core
20+
* projection and expansion support for single entities ($expand and $select)
21+
* Fixed issue with custom headers that were not being added properly
22+
* Updated ADAL version to use (,2.0)
23+
* Removed CredentialsFactory interface
24+
* Added tests for CalendarView functions
25+
326
### Version 0.9.3###
427

528
* Excluding third party dependencies when creating .jar artifact. issue #45

README.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- [Overview](#overview)
66
- [Quick start](#quick-start)
77
- [Samples](#samples)
8+
- [FAQs](#faqs)
89
- [Contributing](#contributing)
910
- [License](#license)
1011

@@ -29,15 +30,15 @@ Now we'll create a simple application that retrieves messages using this SDK and
2930
```Groovy
3031
dependencies {
3132
// base OData stuff:
32-
compile group: 'com.microsoft.services', name: 'odata-engine-core', version: '0.9.4'
33-
compile group: 'com.microsoft.services', name: 'odata-engine-android-impl', version: '0.9.4', ext:'aar'
33+
compile group: 'com.microsoft.services', name: 'odata-engine-core', version: '0.10.0'
34+
compile group: 'com.microsoft.services', name: 'odata-engine-android-impl', version: '0.10.0', ext:'aar'
3435
3536
// choose the services/SDKs you need:
36-
compile group: 'com.microsoft.services', name: 'outlook-services', version: '0.9.4'
37-
compile group: 'com.microsoft.services', name: 'discovery-services', version: '0.9.4'
38-
compile group: 'com.microsoft.services', name: 'directory-services', version: '0.9.4'
39-
compile group: 'com.microsoft.services', name: 'file-services', version: '0.9.4'
40-
compile group: 'com.microsoft.services', name: 'list-services', version: '0.9.4', ext:'aar'
37+
compile group: 'com.microsoft.services', name: 'outlook-services', version: '0.10.0'
38+
compile group: 'com.microsoft.services', name: 'discovery-services', version: '0.10.0'
39+
compile group: 'com.microsoft.services', name: 'directory-services', version: '0.10.0'
40+
compile group: 'com.microsoft.services', name: 'file-services', version: '0.10.0'
41+
compile group: 'com.microsoft.services', name: 'list-services', version: '0.10.0', ext:'aar'
4142
4243
// ADAL
4344
compile (group: 'com.microsoft.aad', name: 'adal', version: '(,2.0)') {
@@ -95,6 +96,13 @@ Futures.addCallback(messagesFuture, new FutureCallback<List<Message>>() {
9596
## Samples
9697
Currently we have a simple sample in the Samples folder using Outlook Services to retrieve mail and calendar events. Look for more samples soon.
9798

99+
## FAQs
100+
101+
* [How to use CalendarView?](https://github.com/OfficeDev/Office-365-SDK-for-Android/wiki/Using-Calendar-View)
102+
* [How to build SDK using Eclipse?](https://github.com/OfficeDev/Office-365-SDK-for-Android/wiki/Eclipse-build-instructions)
103+
* [How to handle ETags and Optimistic Concurrency?](https://github.com/OfficeDev/Office-365-SDK-for-Android/wiki/ETags-and-Optimistic-Concurrency)
104+
* [Known Issues](https://github.com/OfficeDev/Office-365-SDK-for-Android/wiki/Known-Issues)
105+
98106
## Contributing
99107
You will need to sign a [Contributor License Agreement](https://cla.msopentech.com/) before submitting your pull request. To complete the Contributor License Agreement (CLA), you will need to submit a request via the form and then electronically sign the Contributor License Agreement when you receive the email containing the link to the document. This needs to only be done once for any Microsoft Open Technologies OSS project.
100108

sdk/android-libraries.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ android.libraryVariants.all { variant ->
2828
it.getName() != 'android.jar' &&
2929
//manually removing dependencies. .jar consumers will need to fulfill these dependencies
3030
!it.getName().startsWith('guava') &&
31-
!it.getName().startsWith('gson')
31+
!it.getName().startsWith('gson') &&
32+
!it.getName().startsWith('support')
3233

3334
}.collect {
3435
it.isDirectory() ? it : zipTree(it)

sdk/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ allprojects {
1919

2020
apply plugin: 'idea'
2121
group = 'com.microsoft.services'
22-
version = '0.9.4'
22+
version = '0.10.0'
2323
}

sdk/file-services/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dependencies {
55
}
66

77
ext {
8-
PUBLISH_VERSION = '0.9.4'
8+
PUBLISH_VERSION = '0.10.0'
99
PUBLISH_GROUP_ID = 'com.microsoft.services'
1010
}
1111

0 commit comments

Comments
 (0)