Prathamesh More

Results 69 comments of Prathamesh More

expo-cli probably doesn't have access to the modified appId for the different flavors, only gradle knows about the correct appId. So, it's using the default appId and obviously that won't...

Can you check if "Ignore Media Store covers" is disabled in Settings > Images?

Closing this as the bug can't be reproduced.

This fixed the issue for me: ```bash cd ios && pod update Toast ```

WatermelonDB JSI module can be registered like this in React Native 0.74+: MainApplication.kt ```kt import others.... import com.facebook.react.ReactInstanceManager import com.nozbe.watermelondb.jsi.JSIInstaller import com.facebook.react.bridge.ReactContext import com.facebook.react.bridge.UiThreadUtil class MainApplication : Application(), ReactApplication {...

@ishan-chhabra Do you have JSI enabled in your adapter? ```ts const adapter = new SQLiteAdapter({ schema, migrations, jsi: true, }) ```

Have you followed JSI installation docs in Android section given [here](https://watermelondb.dev/docs/Installation)? After doing that, recompile your app and it should work fine.

Sure! I will work on this.

This https://github.com/Nozbe/WatermelonDB/pull/1854 works on RN-0.76. But, if you are using Expo, watermelon will need to be manually linked, due to Expo's new [autolinking](https://docs.expo.dev/modules/autolinking/), as watermelon-db's android and ios folders are...