kyunkakata
kyunkakata
set `compressImageQuality: 0.99` fix the rotate issue in v0.36.2. @DongHeonRyu Example: ```js ImageCropPicker.openCamera({ mediaType: 'photo', ...options, multiple: false, // add this to fix image rotate issue compressImageQuality: 0.99, }); ```
Hey, please check out and patched your local modules with this pull request https://github.com/callstack/react-native-pager-view/pull/521.
Same issue. What should we do?
My application suffers crashes from Production build if import this library. Can you show me how to fix it? I am using React Native version 0.66.5 without enable Hermes. @BubbleTrouble14
On Android, everything is normal.
We are using many libs using JSI like react-native-mmkv, react-native-keys, react-native-random-values-jsi-helper, ...etc. So I cannot disable other libs.
The problem is from this file We need to move variable supportsNativePrompt to to block of code of the function prompt. ``` val supportsNativePrompt = Build.VERSION.SDK_INT > 32 && OSUtils.getTargetSdkVersion(OneSignal.appContext)...
Here is the pull request: https://github.com/OneSignal/OneSignal-Android-SDK/pull/1848 I cannot create local patch of OneSignal-Android-SDK. Their libs are required to sign .aar. So I create a pull request and hope that they...
Use this code to fix that issue in React Native: ``` subscribe = async (channelName, handler = (data) => {}) => { if (!this.socketInstance?.isSubscribed(channelName)) { let channel = this.socketInstance?.subscribe(channelName); const...