Skip to content

Commit c9809da

Browse files
authored
Merge pull request #70 from sentry-demos/kw/fix-android-build
fix(android): Build with stable `androidx.core`
2 parents ff6c66e + deaf673 commit c9809da

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

android/app/build.gradle

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ apply plugin: "org.jetbrains.kotlin.android"
33
apply plugin: "com.facebook.react"
44
apply plugin: "io.sentry.android.gradle"
55

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+
616
sentry {
717
// Disables or enables the automatic configuration of Native Symbols
818
// for Sentry. This executes sentry-cli automatically so

0 commit comments

Comments
 (0)