From 180f0b54cd3d7758c525d51c4922ff777eebab4b Mon Sep 17 00:00:00 2001 From: Alexandre Jacinto Date: Tue, 25 Nov 2025 09:21:19 -0400 Subject: [PATCH 1/3] chore(screen-orientation): fix small typos in documentation --- screen-orientation/README.md | 4 ++-- screen-orientation/src/definitions.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/screen-orientation/README.md b/screen-orientation/README.md index 5ffcdef744..f8a3791e46 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 ce43908a9c..0acf4cda81 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 * From d4899251ff8cabb003b55fb66db6f068996377a3 Mon Sep 17 00:00:00 2001 From: Alexandre Jacinto Date: Tue, 25 Nov 2025 09:22:08 -0400 Subject: [PATCH 2/3] Revert "chore(screen-orientation): fix small typos in documentation" This reverts commit 180f0b54cd3d7758c525d51c4922ff777eebab4b. --- screen-orientation/README.md | 4 ++-- screen-orientation/src/definitions.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/screen-orientation/README.md b/screen-orientation/README.md index f8a3791e46..5ffcdef744 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 and higher. +Starting in Android targetSdk 36, this method has no effect for large screens (e.g. tablets) on Android 16 an 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 and 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 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 0acf4cda81..ce43908a9c 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 and higher. + * Starting in Android targetSdk 36, this method has no effect for large screens (e.g. tablets) on Android 16 an 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 and 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 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 * From c65511cd09503ebb668533930a5ba883140707a3 Mon Sep 17 00:00:00 2001 From: Alexandre Jacinto Date: Tue, 25 Nov 2025 09:22:57 -0400 Subject: [PATCH 3/3] chore(screen-orientation): fix small typo in docs --- screen-orientation/README.md | 4 ++-- screen-orientation/src/definitions.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/screen-orientation/README.md b/screen-orientation/README.md index 5ffcdef744..f8a3791e46 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 ce43908a9c..0acf4cda81 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 *