Skip to content
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

Merged
merged 24 commits into from
Nov 25, 2023
Merged

Conversation

2zerozu
Copy link
Contributor

@2zerozu 2zerozu commented Nov 24, 2023

관련 이슈

작업 사진/동영상 (선택)

  • x

작업한 내용

  • sdk 33->34 업그레이드
  • java version 11 -> 17 업그레이드
  • gradle 업그레이드
  • 버전업으로 인한 화면전환 확장함수 적용

PR 포인트 (라고 쓰고 실행이 안 된다면 참고할 부분)

  • File -> Project Structure -> Project에 AGP 7.3.1, Gradle Version 8.1.1인지 확인
  • File -> Project Structure -> Module에 Compile Sdk Version 34, Source/Target Compatibility 17인지 확인
  • AndroidStudio -> Settings -> Android SDK -> SDK Platforms이랑 Sdk Tools에 Android 14 깔려있는지 확인
  • 그래도 안 되면 연락줘잉..

@2zerozu 2zerozu changed the title #276 [build] SDK 34 업데이트 및 gradle 업그레이드 #276 [build] SDK 34 업그레이드 및 gradle 업그레이드 Nov 24, 2023
@2zerozu 2zerozu self-assigned this Nov 24, 2023
@2zerozu 2zerozu added Pull Request🔥 풀리퀘 날림! 영주🐼 영주가 작업함! build gradle 관련 작업 labels Nov 24, 2023
@2zerozu 2zerozu requested a review from a team November 24, 2023 12:44
@2zerozu 2zerozu changed the title #276 [build] SDK 34 업그레이드 및 gradle 업그레이드 #276 [build] SDK 34 업그레이드 Nov 24, 2023
Copy link
Member

@stellar-halo stellar-halo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

버전 관리 까다로운 작업인데 너무 고생하셨습니닷 😂

Comment on lines +6 to +12
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)
}
}
Copy link
Member

@stellar-halo stellar-halo Nov 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

새로 생긴 util이네요. overrideActivityTransition가 Android 14에 추가된 함수인 것 같은데 맞나요?

Copy link
Contributor Author

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 사용해야 하더라구요 ㅠ

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

떼잉~ 버전에 따라 자꾸 노나야 하는 게 생기네요

Copy link
Contributor

@hajeong67 hajeong67 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

고생하셨습니다.. 구글은 그만 좀 일해..

}
buildFeatures {
buildConfig true
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

얘가 추가로 필요해진 이유가 뭔가요?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

얘가 추가로 필요해진 이유가 뭔가요?

Sdk 34부터 추가해야한다고 하네요
이제 buildConfig도 없어질 예정이라고 하더이다^__^..

@2zerozu 2zerozu merged commit 9c47823 into develop Nov 25, 2023
1 check passed
@2zerozu 2zerozu deleted the feature/#276-build-gradle-update branch November 25, 2023 06:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
build gradle 관련 작업 Pull Request🔥 풀리퀘 날림! 영주🐼 영주가 작업함!
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[build] SDK 34 업그레이드
3 participants