Skip to content

Commit c095f29

Browse files
committed
upgraded to OkHttp 3.6.0
1 parent 9518266 commit c095f29

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

README.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ repositories {
3333
3434
dependencies {
3535
compile 'com.commonsware.cwac:netsecurity:0.4.0'
36-
compile 'com.squareup.okhttp3:okhttp:3.5.0'
36+
compile 'com.squareup.okhttp3:okhttp:3.6.0'
3737
}
3838
```
3939

@@ -174,7 +174,7 @@ module with the CRT file that matches your self-signed certificate that
174174
`netsecurity` has a `provided` dependency on OkHttp3. This library
175175
should fairly closely track the latest OkHttp3 release. Version 0.4.x
176176
of this library uses OkHttp version
177-
**3.5.0**. If you find
177+
**3.6.0**. If you find
178178
that the library has fallen behind, please
179179
[file an issue](https://github.com/commonsguy/cwac-netsecurity/issues)
180180
if one has not already been filed.

demo/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies {
1313
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
1414
debugCompile project(':netsecurity-netcipher')
1515
releaseCompile 'com.commonsware.cwac:netsecurity-netcipher:0.4.0'
16-
compile 'com.squareup.okhttp3:okhttp:3.5.0'
16+
compile 'com.squareup.okhttp3:okhttp:3.6.0'
1717
}
1818

1919
android {

netsecurity-netcipher/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ dependencies {
2929
releaseCompile 'com.commonsware.cwac:netsecurity:0.4.0'
3030
compile 'info.guardianproject.netcipher:netcipher:2.0.0-alpha1'
3131
compile 'info.guardianproject.netcipher:netcipher-okhttp3:2.0.0-alpha1'
32-
compile 'com.squareup.okhttp3:okhttp:3.5.0'
32+
compile 'com.squareup.okhttp3:okhttp:3.6.0'
3333
}
3434

3535
if (project.hasProperty('PUBLISH_GROUP_ID')) {
@@ -44,7 +44,6 @@ if (project.hasProperty('PUBLISH_GROUP_ID')) {
4444
task.dependsOn variant.javaCompile
4545
task.from variant.javaCompile.destinationDir
4646
task.baseName = "cwac-netsecurity-netcipher"
47-
task.classifier = 'sources'
4847
task.version = PUBLISH_VERSION
4948
task.exclude('com/commonsware/cwac/**/BuildConfig.**')
5049
}

netsecurity/build.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ apply plugin: 'com.android.library'
22

33
dependencies {
44
androidTestCompile 'com.android.support.test:rules:0.5'
5-
compile 'com.android.support:support-annotations:25.1.0'
6-
provided 'com.squareup.okhttp3:okhttp:3.5.0'
7-
androidTestCompile 'com.squareup.okhttp3:okhttp:3.5.0'
5+
compile 'com.android.support:support-annotations:25.1.1'
6+
provided 'com.squareup.okhttp3:okhttp:3.6.0'
7+
androidTestCompile 'com.squareup.okhttp3:okhttp:3.6.0'
88
}
99

1010
android {
@@ -40,7 +40,6 @@ if (project.hasProperty('PUBLISH_GROUP_ID')) {
4040
task.dependsOn variant.javaCompile
4141
task.from variant.javaCompile.destinationDir
4242
task.baseName = "cwac-${PUBLISH_ARTIFACT_ID}"
43-
task.classifier = 'sources'
4443
task.version = PUBLISH_VERSION
4544
task.exclude('com/commonsware/cwac/**/BuildConfig.**')
4645
}

0 commit comments

Comments
 (0)