-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#276 [build] SDK 34 업그레이드 #277
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
버전 관리 까다로운 작업인데 너무 고생하셨습니닷 😂
fun Activity.activityTransition(transitionType: Int, enterAnim: Int, exitAnim: Int) { | ||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE) { | ||
overrideActivityTransition(transitionType, enterAnim, exitAnim) | ||
} else { | ||
overridePendingTransition(enterAnim, exitAnim) | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
새로 생긴 util이네요. overrideActivityTransition가 Android 14에 추가된 함수인 것 같은데 맞나요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
새로 생긴 util이네요. overrideActivityTransition가 Android 14에 추가된 함수인 것 같은데 맞나요?
맞아요 .. overridePendingTransition
대신 overrideActivityTransition
사용해야 하더라구요 ㅠ
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
떼잉~ 버전에 따라 자꾸 노나야 하는 게 생기네요
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨습니다.. 구글은 그만 좀 일해..
} | ||
buildFeatures { | ||
buildConfig true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
얘가 추가로 필요해진 이유가 뭔가요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
얘가 추가로 필요해진 이유가 뭔가요?
Sdk 34부터 추가해야한다고 하네요
이제 buildConfig도 없어질 예정이라고 하더이다^__^..
관련 이슈
작업 사진/동영상 (선택)
작업한 내용
PR 포인트 (라고 쓰고 실행이 안 된다면 참고할 부분)