Skip to content

Commit

Permalink
updated builds for OkHttp 3.8.1 and v0.4.4 of this library
Browse files Browse the repository at this point in the history
  • Loading branch information
commonsguy committed Jul 2, 2017
1 parent c706f19 commit 1716f89
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 13 deletions.
5 changes: 3 additions & 2 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ repositories {
}
dependencies {
compile 'com.commonsware.cwac:netsecurity:0.4.3'
compile 'com.commonsware.cwac:netsecurity:0.4.4'
compile 'com.squareup.okhttp3:okhttp:3.8.0'
}
```
Expand Down Expand Up @@ -185,7 +185,7 @@ Otherwise, there are no external dependencies.

## Version

The current version is **0.4.3**.
The current version is **0.4.4**.

## Demo

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

|Library Version|AOSP Code Base |Release Notes|
|:-------------:|:------------------------------------------------------------------------------------------------------:|-------------|
|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|
|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|
|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|
|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|
Expand Down
10 changes: 5 additions & 5 deletions demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ dependencies {
compile 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.0.2'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
debugCompile project(':netsecurity-netcipher')
releaseCompile 'com.commonsware.cwac:netsecurity-netcipher:0.4.3'
compile 'com.squareup.okhttp3:okhttp:3.8.0'
releaseCompile 'com.commonsware.cwac:netsecurity-netcipher:0.4.4'
compile 'com.squareup.okhttp3:okhttp:3.8.1'
}

android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
compileSdkVersion 26
buildToolsVersion "25.0.3"

defaultConfig {
minSdkVersion 17
targetSdkVersion 25
targetSdkVersion 26
}

signingConfigs {
Expand Down
2 changes: 1 addition & 1 deletion netsecurity-netcipher/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ repositories {

dependencies {
debugCompile project(':netsecurity')
releaseCompile 'com.commonsware.cwac:netsecurity:0.4.3'
releaseCompile 'com.commonsware.cwac:netsecurity:0.4.4'
compile 'info.guardianproject.netcipher:netcipher:2.0.0-alpha1'
compile 'info.guardianproject.netcipher:netcipher-okhttp3:2.0.0-alpha1'
compile 'com.squareup.okhttp3:okhttp:3.8.0'
Expand Down
10 changes: 5 additions & 5 deletions netsecurity/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ apply plugin: 'com.android.library'
dependencies {
androidTestCompile 'com.android.support.test:rules:0.5'
compile 'com.android.support:support-annotations:25.3.1'
provided 'com.squareup.okhttp3:okhttp:3.8.0'
androidTestCompile 'com.squareup.okhttp3:okhttp:3.8.0'
provided 'com.squareup.okhttp3:okhttp:3.8.1'
androidTestCompile 'com.squareup.okhttp3:okhttp:3.8.1'
testCompile 'junit:junit:4.12'
}

android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
compileSdkVersion 26
buildToolsVersion "25.0.3"

defaultConfig {
minSdkVersion 17
targetSdkVersion 25
targetSdkVersion 26
testApplicationId "com.commonsware.cwac.netsecurity.test"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
buildConfigField "String", "TEST_PRIVATE_HTTP_URL", '"'+TEST_PRIVATE_HTTP_URL+'"'
Expand Down

0 comments on commit 1716f89

Please sign in to comment.