Oyvind Habberstad

Results 21 comments of Oyvind Habberstad

@fciprian42 or @mohshafie, I'm having the same issue, did you find a workaround?

Hi again! Just realized that if I remove the `vision-camera-ocr` package, it starts to work. But I want both, so that is not an option for me, but it might...

I found a fix: In `vision-camera-ocr` I changed the mlkit version: From: `implementation 'com.google.android.gms:play-services-mlkit-text-recognition:18.0.0'` To: `implementation 'com.google.mlkit:text-recognition:16.0.0-beta6'` And in `vision-camera-code-scanner` I changed the mlkit version: From: `implementation 'com.google.mlkit:barcode-scanning:17.0.0'` To: `implementation...

I'm having a similar problem, using 0.12.0. ![simulator screen shot 02 dec 2015 21 00 10](https://cloud.githubusercontent.com/assets/2823722/11542634/92bd2f54-9938-11e5-8302-9cff8bb89a9e.png)

I got this example to run, https://github.com/Thorbenandresen/ExNavigatorExampleModal. I'll use this example as a base, thanks @Thorbenandresen.

@guanMac I upgraded to 0.16.0 and it worked perfectly! :-)

I could not get this to work, so I switched to altool: `xcrun altool --upload-app -f ~/Desktop/YourApp.ipa -t ios -u "your_apple_id" -p "your_app_specific_password" `

@khanhthaiquang, we're encountering the same error in our app. The last line in the stack trace points to `APMSqliteStore openAndValidateDatabase`. However, it appears that users only experience this issue once....

I fixed this issue by creating a patch-file, `react-native-image-picker+4.3.0.patch:` ``` diff --git a/node_modules/react-native-image-picker/ios/ImagePickerUtils.m b/node_modules/react-native-image-picker/ios/ImagePickerUtils.m index a611b74..3ae322a 100644 --- a/node_modules/react-native-image-picker/ios/ImagePickerUtils.m +++ b/node_modules/react-native-image-picker/ios/ImagePickerUtils.m @@ -93,13 +93,13 @@ + (NSString*) getFileType:(NSData *)imageData [imageData...

I have testet setting the securityLevel to SECURE_SOFTWARE, to use the TEE, instead of the StrongBox, just to see if this would improve the performance in favour of security. I...