Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ actual class DataManagePresenter(
getSystemService<ActivityManager>()
?.appTasks
?.filter { task ->
task.taskInfo.baseActivity?.className != "io.github.shadowrz.projectkafka.MainActivity"
task.taskInfo?.baseActivity?.className != "io.github.shadowrz.projectkafka.MainActivity"
}
.orEmpty()
.forEach { task ->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ object BuildMeta {
const val APPLICATION_ID = "io.github.shadowrz.projectkafka"
const val APPLICATION_NAME = "Project Kafka"

const val COMPILE_SDK = 36
const val COMPILE_SDK = 37
const val MIN_SDK = 23
const val TARGET_SDK = 36

Expand Down
Loading