diff --git a/CHANGES.md b/CHANGES.md index 18dc72a2..615e62d9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,12 @@ # Office 365 SDK for Android # + ### Version 0.12.0 ### + +* Fixing classpath for javadoc generation +* SDK and test app updated with vipr +* Merge PR #67 +* Support for Streamed media entities + ### Version 0.11.0 ### * Cleaned imports diff --git a/README.md b/README.md index 0e855568..5f0d8a41 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ [![Build Status](https://travis-ci.org/OfficeDev/Office-365-SDK-for-Android.svg?branch=master)](https://travis-ci.org/OfficeDev/Office-365-SDK-for-Android) +[ ![Download](https://api.bintray.com/packages/msopentech/Maven/Office-365-SDK-for-Android/images/download.svg) ](https://bintray.com/msopentech/Maven/Office-365-SDK-for-Android/_latestVersion) + **Table of Contents** - [Overview](#overview) @@ -31,15 +33,15 @@ Now we'll create a simple application that retrieves messages using this SDK and ```Groovy dependencies { // base OData stuff: - compile group: 'com.microsoft.services', name: 'odata-engine-core', version: '0.11.1' - compile group: 'com.microsoft.services', name: 'odata-engine-android-impl', version: '0.11.1', ext:'aar' + compile group: 'com.microsoft.services', name: 'odata-engine-core', version: '0.12.0' + compile group: 'com.microsoft.services', name: 'odata-engine-android-impl', version: '0.12.0', ext:'aar' // choose the services/SDKs you need: - compile group: 'com.microsoft.services', name: 'outlook-services', version: '0.11.1' - compile group: 'com.microsoft.services', name: 'discovery-services', version: '0.11.1' - compile group: 'com.microsoft.services', name: 'directory-services', version: '0.11.1' - compile group: 'com.microsoft.services', name: 'file-services', version: '0.11.1' - compile group: 'com.microsoft.services', name: 'sharepoint-services', version: '0.11.1', ext:'aar' + compile group: 'com.microsoft.services', name: 'outlook-services', version: '0.12.0' + compile group: 'com.microsoft.services', name: 'discovery-services', version: '0.12.0' + compile group: 'com.microsoft.services', name: 'directory-services', version: '0.12.0' + compile group: 'com.microsoft.services', name: 'file-services', version: '0.12.0' + compile group: 'com.microsoft.services', name: 'sharepoint-services', version: '0.12.0', ext:'aar' // ADAL compile (group: 'com.microsoft.aad', name: 'adal', version: '1.0.5') { diff --git a/sdk/android-libraries.gradle b/sdk/android-libraries.gradle index 15da6102..f602d288 100644 --- a/sdk/android-libraries.gradle +++ b/sdk/android-libraries.gradle @@ -11,8 +11,8 @@ uploadArchives { url: 'https://api.bintray.com/maven/msopentech/Maven/Office-365-SDK-for-Android' ) { authentication( - userName: 'user', - password: 'password' + userName: 'foo', + password: 'bar' ) } } diff --git a/sdk/build.gradle b/sdk/build.gradle index 817f5d56..6dce1e3c 100644 --- a/sdk/build.gradle +++ b/sdk/build.gradle @@ -27,5 +27,5 @@ allprojects { apply plugin: 'idea' group = 'com.microsoft.services' - version = '0.11.1' + version = '0.12.0' } diff --git a/sdk/java-libraries.gradle b/sdk/java-libraries.gradle index 87527458..bb8b2568 100644 --- a/sdk/java-libraries.gradle +++ b/sdk/java-libraries.gradle @@ -56,8 +56,8 @@ bintray { configurations = ['published'] //When uploading configuration files apiUrl = "https://api.bintray.com" - user = 'user' - key = 'foo' + user = 'foo' + key = 'bar' dryRun = false filesSpec {