Skip to content

Commit

Permalink
fix: downgrade native deps to avoid conflicts with other libs (softwa…
Browse files Browse the repository at this point in the history
…re-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
  • Loading branch information
kkafar authored and ja1ns committed Oct 9, 2024
1 parent 96277c4 commit 60e6797
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 60e6797

Please sign in to comment.