We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ff6c66e + deaf673 commit c9809daCopy full SHA for c9809da
android/app/build.gradle
@@ -3,6 +3,16 @@ apply plugin: "org.jetbrains.kotlin.android"
3
apply plugin: "com.facebook.react"
4
apply plugin: "io.sentry.android.gradle"
5
6
+// Dependency 'androidx.core:core:1.15.0-alpha01' requires libraries and applications that
7
+// depend on it to compile against version 35 or later of the
8
+// Android APIs.
9
+// Until resolved https://stackoverflow.com/questions/78626580/how-to-resolve-app-execution-failure-due-to-androidx-corecore1-15-0-alpha
10
+configurations.all {
11
+ resolutionStrategy {
12
+ force "androidx.core:core:1.13.1"
13
+ }
14
+}
15
+
16
sentry {
17
// Disables or enables the automatic configuration of Native Symbols
18
// for Sentry. This executes sentry-cli automatically so
0 commit comments