Skip to content

Commit

Permalink
chore: 1.4.0 release
Browse files Browse the repository at this point in the history
Update to target SDK 33 and fix some warnings
  • Loading branch information
itachi1706 committed Dec 17, 2022
1 parent 19b1360 commit a83c6aa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions helperlib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ android {

defaultConfig {
minSdkVersion 16
targetSdkVersion 32
versionCode 192
versionName "1.3.9"
targetSdkVersion 33
versionCode 193
versionName "1.4.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class URLHelper(url: URL) {

@WorkerThread
@Throws(IOException::class)
private fun processHttpConnection(): String? {
private fun processHttpConnection(): String {
val conn = url!!.openConnection() as HttpURLConnection
conn.connectTimeout = if (timeout == -1) HTTP_QUERY_TIMEOUT else timeout
conn.readTimeout = if (timeout == -1) HTTP_QUERY_TIMEOUT else timeout
Expand Down

0 comments on commit a83c6aa

Please sign in to comment.