Replies: 1 comment
-
I guess it depends on your modifications. If they do not involve NDK/sentry-native changes, you could simply keep them, and only replace the affected modules using Gradle dependency substitution. Assuming your changes are in configurations.all {
resolutionStrategy.dependencySubstitution {
substitute module("io.sentry:sentry-android-core") using project(":custom-sentry-android-core") because "we have a critical bugfix and Sentry has not released it yet"
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Description
Hi thanks for the Sentry! I want to modify sentry android code a little bit and then use it in my project. The question is how can I do that? As sentry-java even depends on sentry-native, I guess there should be some automation that can be used to make the usage easy, instead of manually compiling everything and push them to maven etc.
Beta Was this translation helpful? Give feedback.
All reactions