-
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
Changes from all commits
4814a92
130366b
8b3972e
b245069
b9ee7f2
db568c0
f0f384e
b8a3813
5e0eae3
b2c5e2b
1e5fe8a
4730dd5
7c85d6d
d7c87d3
7b93e24
fe8cc16
f77b644
83aff13
c3357f7
11b3a95
7b1bcf3
4b8819a
ebc5105
371bde8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.sopt.peekabookaos.util.extensions | ||
|
||
import android.app.Activity | ||
import android.os.Build | ||
|
||
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) | ||
} | ||
} | ||
Comment on lines
+6
to
+12
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 commentThe 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 commentThe reason will be displayed to describe this comment to others. Learn more. 떼잉~ 버전에 따라 자꾸 노나야 하는 게 생기네요 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Wed Dec 28 16:03:15 KST 2022 | ||
#Fri Nov 24 19:25:42 KST 2023 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip | ||
distributionPath=wrapper/dists | ||
zipStorePath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME |
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도 없어질 예정이라고 하더이다^__^..