How to solve "Did not find frame." from FrameEvents while using pdftron_flutter

Product: pdftron_flutter

Product Version: 1.0.1-22

Please give a brief summary of your issue:

I allways see in my console this log when i show a file with pdftron package as widget on android.
“E/FrameEvents(21237): updateAcquireFence: Did not find frame.”

Please describe your issue and provide steps to reproduce it:

This is since i changed the MainActivitx.kt to this.
class MainActivity : FlutterFragmentActivity() {
override fun configureFlutterEngine(@NonNull flutterEngine: FlutterEngine) {
GeneratedPluginRegistrant.registerWith(flutterEngine);
}
}

The log only is only when i use pdftron as Widget in my page. Here is my widget tree:
SystemChrome.setEnabledSystemUIMode(
SystemUiMode.edgeToEdge,
);
Scaffold > SafeArea > SizedBox > DocumentView

Please provide a link to a minimal sample where the issue is reproducible:

1 Like