Lionel
Lionel
Same @dineshguptha problem... This issue appear without many reason while worked fine before and nothing change in my code...
Thanks for your reply, Same problem with your exemple and all languages. Video here : https://user-images.githubusercontent.com/1905622/117425523-238b9b00-af23-11eb-9b46-dc004df8bebd.mp4
I'll investigate, and get back to you if I find anything. It happened after the switch to Flutter 2. Maybe because I didn't activate the null-safety? I'll let you know
Same error since iOS 10... `captureStillImageAsynchronouslyFromConnection:videoConnection` works randomly for me
Correction : On MMCameraPickerController.m -> capturePhoto() -> handler of captureStillImageAsynchronouslyFromConnection add : ``` if(!CMSampleBufferIsValid(imageSampleBuffer)){ isCapturingImage = NO; [self capturePhoto]; return; } ``` EDIT 8NOV2017 ``` if(!CMSampleBufferIsValid(imageSampleBuffer)) { isCapturingImage = NO;...
@AzimJavaidKhan if you add : ``` if(!CMSampleBufferIsValid(imageSampleBuffer)) { isCapturingImage = NO; [self capturePhoto]; return; } [_mySesh stopRunning]; ``` And remove `[_mySesh stopRunning];` on the `- (IBAction)capturePhoto:(id)sender` method ?
Oh... Sorry That's the only thing I changed to worked for me...
Same problem... It's very random, sometime works (1 time out of 20). And on iOS `getDuration()` is not referenced, and `loop:true` not work too.
You can try (MyApp.engine!.renderer is THREE.WebGLRenderer) : ``` MyApp.engine!.renderer = THREE.WebGLRenderer(_options); MyApp.engine!.renderer!.alpha = true; MyApp.engine!.renderer!.setClearColor(THREE.Color(0x000000), 0); MyApp.engine!.renderer!.autoClearDepth = true; ``` And on your scene : ``` MyApp.engine!.scene = THREE.Scene(); MyApp.engine!.scene!.background...
Same crash here, When I comment "notificationChannelId" params it works but the "stopSelf()" cannot remove the notification foreground. Test device : Samsung Galaxy Note8 (Android 9)