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

Commit dea79dd

Browse files
committed
update to version 1.0.2
1 parent 707c53c commit dea79dd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Integrate the [OneDrive API](https://dev.onedrive.com/README.htm) into your Andr
77

88
## 1. Installation
99
### 1.1 Install AAR via Gradle
10-
Add the maven central repository to your projects build.gradle file then add a compile dependency for com.onedrive.sdk:onedrive-sdk-android:1.0.1
10+
Add the maven central repository to your projects build.gradle file then add a compile dependency for com.onedrive.sdk:onedrive-sdk-android:1.0.2
1111

1212
```gradle
1313
repository {
@@ -16,7 +16,7 @@ repository {
1616
1717
dependency {
1818
// Include the sdk as a dependency
19-
compile('com.onedrive.sdk:onedrive-sdk-android:1.0.1')
19+
compile('com.onedrive.sdk:onedrive-sdk-android:1.0.2')
2020
2121
// Include the gson dependency
2222
compile 'com.google.code.gson:gson:2.3.1'

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ org.gradle.jvmargs=-XX:MaxPermSize=512m
2121
mavenRepoUrl = https://api.bintray.com/maven/onedrive/Maven/onedrive-sdk-android
2222
mavenGroupId = com.onedrive.sdk
2323
mavenArtifactId = onedrive-sdk-android
24-
mavenVersion = 1.0.1
24+
mavenVersion = 1.0.2
2525
nightliesUrl = http://dl.bintray.com/onedrive/Maven

onedrivesdk/src/main/java/com/onedrive/sdk/http/UrlConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public UrlConnection(final IHttpRequest request) throws IOException {
6161

6262
try {
6363
mConnection.setRequestMethod(request.getHttpMethod().toString());
64-
} catch (final ProtocolException ignored ){
64+
} catch (final ProtocolException ignored) {
6565
// Some HTTP verbs are not supported by older http implementations, use method override as an alternative
6666
mConnection.setRequestMethod(HttpMethod.POST.toString());
6767
mConnection.addRequestProperty("X-HTTP-Method-Override", request.getHttpMethod().toString());

0 commit comments

Comments
 (0)