Skip to content

Commit 1716f89

Browse files
committed
updated builds for OkHttp 3.8.1 and v0.4.4 of this library
1 parent c706f19 commit 1716f89

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

README.markdown

+3-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ repositories {
3232
}
3333
3434
dependencies {
35-
compile 'com.commonsware.cwac:netsecurity:0.4.3'
35+
compile 'com.commonsware.cwac:netsecurity:0.4.4'
3636
compile 'com.squareup.okhttp3:okhttp:3.8.0'
3737
}
3838
```
@@ -185,7 +185,7 @@ Otherwise, there are no external dependencies.
185185

186186
## Version
187187

188-
The current version is **0.4.3**.
188+
The current version is **0.4.4**.
189189

190190
## Demo
191191

@@ -234,6 +234,7 @@ Do not ask for help via social media.
234234

235235
|Library Version|AOSP Code Base |Release Notes|
236236
|:-------------:|:------------------------------------------------------------------------------------------------------:|-------------|
237+
|v0.4.4 |Android 7.1 source code from the SDK, plus [the `android-7.1.0_r7` tagged edition of `conscrypt`](https://android.googlesource.com/platform/external/conscrypt/+/android-7.1.0_r7)|updated to OkHttp 3.8.1 and fixed testing bug|
237238
|v0.4.3 |Android 7.1 source code from the SDK, plus [the `android-7.1.0_r7` tagged edition of `conscrypt`](https://android.googlesource.com/platform/external/conscrypt/+/android-7.1.0_r7)|updated to OkHttp 3.8.0 and new test SSL certificate|
238239
|v0.4.2 |Android 7.1 source code from the SDK, plus [the `android-7.1.0_r7` tagged edition of `conscrypt`](https://android.googlesource.com/platform/external/conscrypt/+/android-7.1.0_r7)|added single-item-chain filtering for memorization|
239240
|v0.4.1 |Android 7.1 source code from the SDK, plus [the `android-7.1.0_r7` tagged edition of `conscrypt`](https://android.googlesource.com/platform/external/conscrypt/+/android-7.1.0_r7)|switched to OkHttp 3.6.0, add domain filtering for memorization|

demo/build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ dependencies {
1212
compile 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.0.2'
1313
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
1414
debugCompile project(':netsecurity-netcipher')
15-
releaseCompile 'com.commonsware.cwac:netsecurity-netcipher:0.4.3'
16-
compile 'com.squareup.okhttp3:okhttp:3.8.0'
15+
releaseCompile 'com.commonsware.cwac:netsecurity-netcipher:0.4.4'
16+
compile 'com.squareup.okhttp3:okhttp:3.8.1'
1717
}
1818

1919
android {
20-
compileSdkVersion 25
21-
buildToolsVersion "25.0.2"
20+
compileSdkVersion 26
21+
buildToolsVersion "25.0.3"
2222

2323
defaultConfig {
2424
minSdkVersion 17
25-
targetSdkVersion 25
25+
targetSdkVersion 26
2626
}
2727

2828
signingConfigs {

netsecurity-netcipher/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ repositories {
2626

2727
dependencies {
2828
debugCompile project(':netsecurity')
29-
releaseCompile 'com.commonsware.cwac:netsecurity:0.4.3'
29+
releaseCompile 'com.commonsware.cwac:netsecurity:0.4.4'
3030
compile 'info.guardianproject.netcipher:netcipher:2.0.0-alpha1'
3131
compile 'info.guardianproject.netcipher:netcipher-okhttp3:2.0.0-alpha1'
3232
compile 'com.squareup.okhttp3:okhttp:3.8.0'

netsecurity/build.gradle

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ apply plugin: 'com.android.library'
33
dependencies {
44
androidTestCompile 'com.android.support.test:rules:0.5'
55
compile 'com.android.support:support-annotations:25.3.1'
6-
provided 'com.squareup.okhttp3:okhttp:3.8.0'
7-
androidTestCompile 'com.squareup.okhttp3:okhttp:3.8.0'
6+
provided 'com.squareup.okhttp3:okhttp:3.8.1'
7+
androidTestCompile 'com.squareup.okhttp3:okhttp:3.8.1'
88
testCompile 'junit:junit:4.12'
99
}
1010

1111
android {
12-
compileSdkVersion 25
13-
buildToolsVersion "25.0.2"
12+
compileSdkVersion 26
13+
buildToolsVersion "25.0.3"
1414

1515
defaultConfig {
1616
minSdkVersion 17
17-
targetSdkVersion 25
17+
targetSdkVersion 26
1818
testApplicationId "com.commonsware.cwac.netsecurity.test"
1919
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
2020
buildConfigField "String", "TEST_PRIVATE_HTTP_URL", '"'+TEST_PRIVATE_HTTP_URL+'"'

0 commit comments

Comments
 (0)