-
Notifications
You must be signed in to change notification settings - Fork 0
Support 16KB page size requirement for Android 15 and Google Play compliance #700
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
Changes from all commits
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 | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -102,7 +102,7 @@ dependencies { | |||||||||||
| implementation project(':domain') | ||||||||||||
| implementation project(':data') | ||||||||||||
|
|
||||||||||||
| def sentry_version = "7.16.0" | ||||||||||||
| def sentry_version = "8.24.0" | ||||||||||||
| def glide_version = "4.15.1" | ||||||||||||
|
|
||||||||||||
| // Hilt | ||||||||||||
|
|
@@ -114,8 +114,10 @@ dependencies { | |||||||||||
| implementation "com.github.bumptech.glide:glide:$glide_version" | ||||||||||||
| kapt "com.github.bumptech.glide:compiler:$glide_version" | ||||||||||||
| // Sentry | ||||||||||||
| implementation "io.sentry:sentry-android:$sentry_version" | ||||||||||||
| implementation 'org.slf4j:slf4j-nop:1.7.25' | ||||||||||||
| implementation platform("io.sentry:sentry-bom:$sentry_version") | ||||||||||||
| implementation('io.sentry:sentry-android') | ||||||||||||
| implementation('io.sentry:sentry-android-fragment') | ||||||||||||
|
||||||||||||
| implementation('io.sentry:sentry-android-fragment') | |
| implementation('io.sentry:sentry-android-fragment') | |
| // slf4j-nop 2.x is required for compatibility with Sentry 8.24.0, which uses SLF4J 2.x APIs. | |
| // See: https://github.com/getsentry/sentry-java/releases/tag/8.24.0 | |
| // If downgrading Sentry or slf4j, ensure API compatibility. |
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.
implementation 'org.slf4j:slf4j-nop:2.0.17'
이 코드를 추가한 이유는 무엇인가요?
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.
[nitpick] When using a BOM platform, consider adding explicit version constraints for the individual Sentry dependencies to ensure version consistency across builds. While the BOM manages versions, explicitly documenting the expected versions can help with dependency auditing and prevent unexpected updates if the BOM is modified.