K Jossendal

Results 11 comments of K Jossendal

``` NSDictionary *completeConfig = [restImageNames reduce:^id(NSMutableDictionary *acc, NSString *key, int idx) { NSLog(@"Value on init %@", restImages[idx]); [acc setObject:@{@"image": [[CIImage alloc] initWithImage:[restImages[idx] image]]} forKey:key]; return acc; } init:[NSMutableDictionary dictionaryWithDictionary:config]]; ```...

Spun up a clean app using `npx react-native init appname --version 0.68.2`, installed rn-google-cast, and it responds correctly.

Ok so it looks like the android MediaRouteButton performClick handler never gets invoked when CastButton is a child of a Pressable/Touchable button in React Native side, and even then it's...

Seeing this too. In the meantime I've patched it with patch-package and added optional chaining in the two places that ref is accessed. `this.sview?.scrollTo()`

Still seeing this as well but I have little to add other than this appears to happen right after cache is cleared as I see `ImageFilterKit: clear cache` in xcode...

Any update on this? Or maybe someone could publish a fork while this is waiting to be merged? I would but I'm not familiar with the packaging/publishing process on a...

Is it acceptable, when using `` the way this pr does, to just ignore it's initialization if it has already been initialized? Otherwise I'm not sure where it would be...

I've found out that if I go into the source to `PickerModule.java` and disable the permission check, the cropper appears to work correctly. My java skills are pretty much non...

Android changed to only asking permissions the moment you need them. So you can't pre-ask a permission anymore at app start for example. So where it used to just ask...

Can confirm I'm seeing this on an iOS simulator. Seems to work correctly on android.