timbotimbo

Results 194 comments of timbotimbo

Can you try this with the alternative type of android PlatformView? You used to be able to switch using `useAndroidViewSurface: /*true or false*/` but Flutter 3.0 broke the false option....

After testing on fuw 2022.1.0+7 and Flutter 2.10.5, it seems to be surfaceView related. With flutter 2.10.5 the issue only occurs with `useAndroidViewSurface: true`, setting it to false makes it...

It doesn't seem related to Flutter 3. In Flutter 2.10.5 the bug only happens with `useAndroidViewSurface: true`, In Flutter 3.0.0 - 3.0.5 it always happens because `useAndroidViewSurface` is forced. In...

Any chance you have the "Scripting backend" in the Unity player settings set to "Mono"? Your error contains `/MonoBleedingEdge/bin/mono`. This package requires the scripting backend to be "IL2CPP".

Solved in https://github.com/juicycleff/flutter-unity-view-widget/issues/629 for Unity 2022.1 Disable script debugging. ``` // Assets/FlutterUnityIntegration/Editor/build.cs DoBuildAndroid() //remove this line playerOptions.options = BuildOptions.AllowDebugging; ```

This is caused by how the video file is included in the build. The videoplayer can play videos from a remote url or the local StreamingAssets folder. It is just...

Decided to look into this again. Video's included in a Unity scene or prefab get included into an asset file, which gets compressed when the app is built. Unity can't...

I know this has been fixed in package version `2022.1.1` but I noticed something interesting. This bug popped up for me on changing a minor Unity version for an older...

My issue with [Unity being hidden behind flutter on Android 6 and 7](https://github.com/juicycleff/flutter-unity-view-widget/issues/317) seems to be fixed in flutter_unity_widget versions 2022.1.0+x. This looks related, so it might be worth a...

Did you follow the readme and open and export the Unity project? Between step 2 and 3, you also need to open the example unity project in the `unity/DemoApp` folder....