Skip to content

Commit

Permalink
release : 1.0.3
Browse files Browse the repository at this point in the history
- 서비스에서 로그인이 필요할 때 액티비티 호출을 New_Task 로 플래그 설정하도록 수정
- api 30 미만에서의 권한 요청은 이미 내부적으로 compat 하게 동작하기 때문에 하위 버전에 대응해줄 필요가 없는 코드 수정
  • Loading branch information
jowunnal committed Jul 25, 2024
1 parent 542ee6d commit 6c59ab7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
defaultConfig {
applicationId = "com.stepmate.app"
targetSdk = 34
versionCode = 9
versionName = "1.0.2"
versionCode = 11
versionName = "1.0.3"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ internal class StepService : LifecycleService() {
StepException.NEED_RE_LOGIN,
StepException.NEED_RE_LOGIN
)
flags = Intent.FLAG_ACTIVITY_SINGLE_TOP
flags = Intent.FLAG_ACTIVITY_NEW_TASK
}
)
}
Expand Down

0 comments on commit 6c59ab7

Please sign in to comment.