Skip to content

Commit e646372

Browse files
authored
fix: downgrade native deps to avoid conflicts with other libs (software-mansion#1943)
## Description So I've recently bumped versions of few native library dependencies in software-mansion#1891, but it also bumped some transitive dependencies that conflicted with lower versions that are required by packages such as `gesture-handler`, `reanimated`, `safe-area-context` etc. I'm downgrading the versions as much I as can while also keeping possible high `material` version. ## Test code and steps to reproduce I downgraded kotlin to `1.6.21` in TestsExample && tested the build. ## Checklist - [ ] Ensured that CI passes
1 parent b6db977 commit e646372

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,10 @@ repositories {
124124

125125
dependencies {
126126
implementation 'com.facebook.react:react-native:+'
127-
implementation 'androidx.appcompat:appcompat:1.6.1'
128-
implementation 'androidx.fragment:fragment-ktx:1.6.1'
127+
implementation 'androidx.appcompat:appcompat:1.5.0'
128+
implementation 'androidx.fragment:fragment:1.3.6'
129129
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.2.0'
130130
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
131131
implementation 'com.google.android.material:material:1.9.0'
132-
implementation "androidx.core:core-ktx:1.10.1"
132+
implementation "androidx.core:core-ktx:1.8.0"
133133
}

0 commit comments

Comments
 (0)