Skip to content

Commit

Permalink
fix: downgrade native deps to avoid conflicts with other libs (#1943)
Browse files Browse the repository at this point in the history
## Description

So I've recently bumped versions of few native library dependencies in
#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
  • Loading branch information
kkafar authored Oct 23, 2023
1 parent b6db977 commit e646372
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ repositories {

dependencies {
implementation 'com.facebook.react:react-native:+'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.fragment:fragment-ktx:1.6.1'
implementation 'androidx.appcompat:appcompat:1.5.0'
implementation 'androidx.fragment:fragment:1.3.6'
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.2.0'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
implementation 'com.google.android.material:material:1.9.0'
implementation "androidx.core:core-ktx:1.10.1"
implementation "androidx.core:core-ktx:1.8.0"
}

0 comments on commit e646372

Please sign in to comment.