EvanBacon / expo-progress

Simple progress components for Expo
MIT License
35 stars 9 forks source link

Can't use with Expo #2

Open pedro-surf opened 3 years ago

pedro-surf commented 3 years ago

Tried to install module and peerDeps with expo install ...

image

victorpicaud commented 3 years ago

I confirm, expo SDK 39 same issue...

foloinfo commented 3 years ago

You need to downgrade the react-native-redash. yarn add react-native-redash will install 15.11.1 at this moment, and it seems like it will break expo-progress. I downgraded below and it works with Expo SDK 39.

    "react-native-redash": "^14.1.1",

Also react-native-gesture-handler was updated when I run the module install command and expo-cli was warning about it so I reverted to what it was ("~1.7.0",)

Maybe we should modify the dependencies. (I'm not really familiar with making packages so I don't know how I could make a pull-req)

takuya0206 commented 3 years ago

@foloinfo Your solution works for me! Thank you!

elilambnz commented 3 years ago

The above solution appears to work for Expo SDK 40 also, thanks!

lucasbaronio commented 3 years ago

Not working on SDK 41 with: "react-native-gesture-handler": "~1.10.2", "react-native-redash": "^14.1.1",

image

elilambnz commented 3 years ago

Working on Expo SDK 41 with the following packages:

"react-native-gesture-handler": "~1.10.2",
"react-native-redash": "~14.2.4"
areimann-sf commented 3 years ago

Also working on Expo SDK 42 with the following packages:

"react-native-gesture-handler": "~1.10.2", "react-native-redash": "~14.2.4"

...but gives warnings:

interpolate() was renamed to interpolateNode() in Reanimated 2. Please use interpolateNode() instead
JPI-Tech commented 2 years ago

Has anyone found a solution to this problem? I am using Expo Go on Expo version 45.0.0. I am encountering the same issue.