@capacitor/android 8.0.1-nightly-20251215T150839.0 → 8.0.1-nightly-20251217T150711.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -165,6 +165,8 @@ public class SystemBars extends Plugin {
165
165
  boolean keyboardVisible = insets.isVisible(WindowInsetsCompat.Type.ime());
166
166
 
167
167
  if (keyboardVisible) {
168
+ safeAreaInsets = Insets.of(safeAreaInsets.left, safeAreaInsets.top, safeAreaInsets.right, 0);
169
+
168
170
  Insets imeInsets = insets.getInsets(WindowInsetsCompat.Type.ime());
169
171
  setViewMargins(v, Insets.of(0, 0, 0, imeInsets.bottom));
170
172
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/android",
3
- "version": "8.0.1-nightly-20251215T150839.0",
3
+ "version": "8.0.1-nightly-20251217T150711.0",
4
4
  "description": "Capacitor: Cross-platform apps with JavaScript and the web",
5
5
  "homepage": "https://capacitorjs.com",
6
6
  "author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
@@ -23,7 +23,7 @@
23
23
  "verify": "./gradlew clean lint build test -b capacitor/build.gradle"
24
24
  },
25
25
  "peerDependencies": {
26
- "@capacitor/core": "^8.0.0-nightly-20251215T150839.0"
26
+ "@capacitor/core": "^8.0.0-nightly-20251217T150711.0"
27
27
  },
28
28
  "publishConfig": {
29
29
  "access": "public"