This repository was archived by the owner on Oct 2, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
onedrivesdk/src/main/java/com/onedrive/sdk/http Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff 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
1313repository {
@@ -16,7 +16,7 @@ repository {
1616
1717dependency {
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'
Original file line number Diff line number Diff line change @@ -21,5 +21,5 @@ org.gradle.jvmargs=-XX:MaxPermSize=512m
2121mavenRepoUrl = https://api.bintray.com/maven/onedrive/Maven/onedrive-sdk-android
2222mavenGroupId = com.onedrive.sdk
2323mavenArtifactId = onedrive-sdk-android
24- mavenVersion = 1.0.1
24+ mavenVersion = 1.0.2
2525nightliesUrl = http://dl.bintray.com/onedrive/Maven
Original file line number Diff line number Diff 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 ());
You can’t perform that action at this time.
0 commit comments