Michael Paul Coder
Michael Paul Coder
I found some examples here: https://github.com/margelo/react-native-graph/blob/main/example/src/data/GraphData.ts ``` function weightedRandom(mean: number, variance: number): number { var distribution = gaussian(mean, variance) // Take a random sample using inverse transform sampling method. return...
See: https://github.com/expo/expo/issues/21477#issuecomment-1454260119 You can bypass this by adding a config plugin that changes the namespaces under `./pluigins/withAndroidNamespace.js`: ``` const { withAppBuildGradle } = require('@expo/config-plugins'); const withAndroidNamespace = (config) => {...
Well, now the `package R does not exist` errors are gone. For the ReactNativeFlipper error you will need this patch: https://github.com/expo/expo/compare/main...iegik:expo:patch-3 Alternatively you can downgrade to 47: `expo upgrade 47`.
This used to work for me in older versions in debug and production builds: ``` await TrackPlayer.add({ url: require('../assets/sounds/my_sound.mp3') }) ``` From 4 point something it works with the absolute...
Works in 4.1.1 for me, fixed by https://github.com/doublesymmetry/react-native-track-player/pull/2194.