Describe the bug
When loading the plugin in version 54, compilation fails due to the override keyword used.
It is needed in version 52, not in > 53 anymore.
Expected behavior
It should use the override keyword in version 52 and avoid it in version > 53.
Additional information
It looks like this is how the previous bug report #85 was implemented:
plugin/src/withRNOrientationAppDelegate.ts
line 62:
const methodPrefix = !sdkVersion?.includes('53') ? 'override' : '';