Skip to content
This repository was archived by the owner on Sep 4, 2020. It is now read-only.

Commit bb0fa60

Browse files
authored
Merge pull request #27 from microsoftgraph/1.0.0-ga
Release 1.0.0 - General Availability🎉
2 parents 39f3109 + 05ef3fc commit bb0fa60

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,11 @@
22

33
[ ![Download](https://api.bintray.com/packages/microsoftgraph/Maven/msgraph-sdk-android/images/download.svg) ](https://bintray.com/microsoftgraph/Maven/msgraph-sdk-android/_latestVersion)[![Build Status](https://travis-ci.org/microsoftgraph/msgraph-sdk-android.svg?branch=master)](https://travis-ci.org/microsoftgraph/msgraph-sdk-android)
44

5-
## Overview
6-
7-
This client library is a release candidate and is still in preview status, please continue to provide [feedback](https://github.com/microsoftgraph/msgraph-sdk-android/issues/new) as we iterate towards a production supported library.
8-
95
Integrate the [Microsoft Graph API](https://graph.microsoft.io/en-us/getting-started) into your Android application!
106

11-
127
## 1. Installation
138
### 1.1 Install AAR via Gradle
14-
Add the maven central repository to your projects build.gradle file then add a compile dependency for com.microsoft.graph:msgraph-sdk-android:0.9.+
9+
Add the JCenter repository and a compile dependency for `msgraph-sdk-android` to your project's `build.gradle`
1510

1611
```gradle
1712
repository {
@@ -20,7 +15,7 @@ repository {
2015
2116
dependency {
2217
// Include the sdk as a dependency
23-
compile('com.microsoft.graph:msgraph-sdk-android:0.9.+')
18+
compile('com.microsoft.graph:msgraph-sdk-android:1.0.+')
2419
2520
// Include the gson dependency
2621
compile('com.google.code.gson:gson:2.3.1')
@@ -47,7 +42,8 @@ For an example of authentication in a client application see the [MSGraph SDK An
4742
Once you have set the correct application Id and url, you must get a **GraphServiceClient** object to make requests against the service. The SDK will store the account information for you, but when a user logs on for the first time, it will invoke UI to get the user's account information.
4843

4944
```java
50-
final IClientConfig mCLientConfig = DefaultClientConfig.createWithAuthenticationProvider(mAuthenticationProvider);
45+
final IClientConfig mCLientConfig = DefaultClientConfig
46+
.createWithAuthenticationProvider(mAuthenticationProvider);
5147

5248
final IGraphServiceClient mClient = new GraphServiceClient
5349
.Builder()

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ org.gradle.jvmargs=-XX:MaxPermSize=512m
2121
mavenRepoUrl = https://api.bintray.com/maven/microsoftgraph/Maven/msgraph-sdk-android
2222
mavenGroupId = com.microsoft.graph
2323
mavenArtifactId = msgraph-sdk-android
24-
mavenMajorVersion = 0
25-
mavenMinorVersion = 9
26-
mavenPatchVersion = 4
24+
mavenMajorVersion = 1
25+
mavenMinorVersion = 0
26+
mavenPatchVersion = 0
2727
nightliesUrl = http://dl.bintray.com/MicrosoftGraph/Maven

0 commit comments

Comments
 (0)