samzmann

Results 29 comments of samzmann

@hatem-72 Thx for taking the time on this! I'm not sure I understand: > If images-tools package is the only consumer for react-native-library, why do you need to make any...

Hey Florent7️⃣5️⃣! I ran into the exact same issue recently. What fixed it for me was to re-write the handlers in MainActivity.java to override `dispatchKeyEvent` instead of onKeyDown/Up/Multiple as the...

@Florent75 In the README of this library, in the [Android section](https://github.com/kevinejohn/react-native-keyevent#android-1), you see various examples: ```Java @Override //

adb logcat does output some relevant logs: ``` 12-03 11:36:58.576 28101 28139 E AndroidRuntime: FATAL EXCEPTION: AsyncTask #1 12-03 11:36:58.576 28101 28139 E AndroidRuntime: Process: com.vytalmerchantapp, PID: 28101 12-03 11:36:58.576...

Ran into the same issue recently. @jgo80 Thanks for posting the links! They are a little old, but led me in the right direction. [This more recent comment on issue...

As much as I like to complain about RNN, I think this time it's not their fault ^^ I was able to reproduce this issue on a new RN project...

Is there a current solution/workaround for this? Im trying to setup react-native-bootsplash and running into issues which lead me here.

This is not an xcode issue. Its a bug in the native braintree lib https://github.com/braintree/braintree-ios-drop-in/issues/209. It was fixed, but not in this lib because it's not so up to date....

@1280103995 Sure. This is what my `pod_install` statement looks like, at the bottom of `ios/Podfile`: ``` post_install do |installer| flipper_post_install(installer) installer.pods_project.targets.each do |target| targets_to_ignore = %w(React yoga) if targets_to_ignore.include? target.name...

I'm getting the same issue: ```ts import { contentfulClient } from '@/contentful/api/contentfulClient' import { TypeProjectSkeleton } from '@/contentful/types' export const getAllProjects = async (locale: string) => { const response =...