Mutable Studio

Results 9 comments of Mutable Studio

I'm also experiencing this with RN 0.64.0, react-native-reanimated 2.0.1, gradle 6.7, gradle tools 4.1.3, AS 4.1.3. I'm forcing fb soloader like this: ``` configurations.all { resolutionStrategy { force "com.facebook.soloader:soloader:0.10.1" }...

onChange prop: ``` {}} onChange={(time) => { console.log(`onChange={(time) => ${time}`) }} style={{marginTop: -20}} digitStyle={{backgroundColor: '#FFF', width: size*1.4, height: size*1.4}} digitTxtStyle={{color: '#000', fontWeight: '400'}} separatorStyle={{color: '#000', marginTop: -20, fontWeight: '400'}} timeToShow={['M',...

I believe you need to add the listener after you start notifications for all characteristics: ``` setNotifyOnUpdate = async (): Promise => { await this.bleManager.startNotification(this.peripheralId, , ) await this.bleManager.startNotification(this.peripheralId, ,...

I'm getting Phase Script Execution build failures coming from the Hermes package - looks like something in RN 0.73 is somehow auto creating an .xcode.env.local file, which creates some seemingly...

I updated from 63.4 to 64.0 and enabled Flipper and Hermes, on iOS, and the `.app` size in the xcarchive went from 98mb to 650mb. Made me realize the old...

@kristfal setting `writeToDisk: false` is a workaround, did not have a chance to run the example project

@Jackyaung where you call `Mapbox.snapshotManager.takeSnap()`, pass in `writeToDisk: false,` as one of the props

The reanimated docs state that v2.x is compatible with Chrome Debugger aka React Native Debugger - https://docs.swmansion.com/react-native-reanimated/docs/next/guide/debugging/ - however I get similar issues with the app just freezing up on...

UPDATE: for my specific issue with iOS, it was resolved by enabling Hermes in the pod file, then doing pod install. Without this the network requests to localhost:8081/debugger-proxy will be...