Skip to content

Commit

Permalink
fix: change test library to test dependency instead of normal depende…
Browse files Browse the repository at this point in the history
…ncy (SDKCF-5015)
  • Loading branch information
vincentdelmundo authored Mar 17, 2022
1 parent 5677dbe commit d76ed73
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,9 +227,10 @@ val retrofit = Retrofit.Builder().build("your_baseUrl", okHttpClient gsonConvert

## Changelog

### v1.1.0 (In Progress)
### v1.1.0 (2022-03-17)

* SDKCF-4887: Added NetworkUtil for checking network connectivity and capabilities. Please see [usage](#networking-utility) section for details.
* SDKCF-5015: Fixed test library dependency as normal API dependency.

### v1.0.0 (2022-02-07)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class MainActivity : Activity() {
}

fun onAppInfoButtonClick() {
showToast(StaticInfoUtil.getAppInfo())
showToast(StaticInfoUtil.getAppInfo())
}

fun onSendRasHeadersRequestClick() {
Expand Down
2 changes: 1 addition & 1 deletion sdk-utils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ dependencies {
testImplementation "com.nhaarman.mockitokotlin2:mockito-kotlin:2.2.0"
testImplementation "org.mockito:mockito-inline:3.2.0"
testImplementation "com.squareup.okhttp3:mockwebserver:$CONFIG.versions.okhttp"
api 'androidx.test:core:1.4.0'
testImplementation 'androidx.test:core:1.4.0'
}

apply from: "../config/quality/jacoco/android.gradle"
Expand Down

0 comments on commit d76ed73

Please sign in to comment.