diff --git a/screen-orientation/README.md b/screen-orientation/README.md index 5ffcdef74..f8a3791e4 100644 --- a/screen-orientation/README.md +++ b/screen-orientation/README.md @@ -69,9 +69,9 @@ lock(options: OrientationLockOptions) => Promise Locks the screen orientation. -Starting in Android targetSdk 36, this method has no effect for large screens (e.g. tablets) on Android 16 an higher. +Starting in Android targetSdk 36, this method has no effect for large screens (e.g. tablets) on Android 16 and higher. You may opt-out of this behavior in your app by adding `<property android:name="android.window.PROPERTY_COMPAT_ALLOW_RESTRICTED_RESIZABILITY" android:value="true" />` to your `AndroidManifest.xml` inside `<application>` or `<activity>`. -Keep in mind though that this opt-out is temporary will no longer work for Android 17. Android discourages setting specific orientations for large screens. +Keep in mind though that this opt-out is temporary and will no longer work for Android 17. Android discourages setting specific orientations for large screens. Regular Android phones are unaffected by this change. For more information check the Android docs at https://developer.android.com/about/versions/16/behavior-changes-16#adaptive-layouts diff --git a/screen-orientation/src/definitions.ts b/screen-orientation/src/definitions.ts index ce43908a9..0acf4cda8 100644 --- a/screen-orientation/src/definitions.ts +++ b/screen-orientation/src/definitions.ts @@ -32,9 +32,9 @@ export interface ScreenOrientationPlugin { /** * Locks the screen orientation. * - * Starting in Android targetSdk 36, this method has no effect for large screens (e.g. tablets) on Android 16 an higher. + * Starting in Android targetSdk 36, this method has no effect for large screens (e.g. tablets) on Android 16 and higher. * You may opt-out of this behavior in your app by adding `` to your `AndroidManifest.xml` inside `` or ``. - * Keep in mind though that this opt-out is temporary will no longer work for Android 17. Android discourages setting specific orientations for large screens. + * Keep in mind though that this opt-out is temporary and will no longer work for Android 17. Android discourages setting specific orientations for large screens. * Regular Android phones are unaffected by this change. * For more information check the Android docs at https://developer.android.com/about/versions/16/behavior-changes-16#adaptive-layouts *