Skip to content

Commit

Permalink
1.3.6 Hotfix
Browse files Browse the repository at this point in the history
- Removed redundant context causing users of 1.3.5 to break
- Updated to compile and target SDK 32 (Android 12L)

Took 4 minutes
  • Loading branch information
itachi1706 committed Mar 11, 2022
1 parent dc61088 commit b6f132a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
10 changes: 5 additions & 5 deletions helperlib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 31
buildToolsVersion "31.0.0"
compileSdkVersion 32
buildToolsVersion "32.0.0"

defaultConfig {
minSdkVersion 16
targetSdkVersion 31
versionCode 152
versionName "1.3.5"
targetSdkVersion 32
versionCode 153
versionName "1.3.6"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

package com.itachi1706.helperlib.concurrent

import android.content.Context
import com.itachi1706.helperlib.concurrent.Constants.Status
import com.itachi1706.helperlib.helpers.LogHelper
import kotlinx.coroutines.*
Expand All @@ -11,7 +10,7 @@ import java.util.concurrent.Executors
/**
* Replacement of AsyncTask in Kotlin Coroutine format
*/
abstract class CoroutineAsyncTask<Params, Progress, Result>(val taskName: String, val context: Context) {
abstract class CoroutineAsyncTask<Params, Progress, Result>(val taskName: String) {

private val logTAG by lazy {
CoroutineAsyncTask::class.java.simpleName
Expand Down

0 comments on commit b6f132a

Please sign in to comment.