react-native-edge-to-edge 0.1.1 → 0.1.2
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.
- package/README.md +3 -1
- package/dist/commonjs/NativeRNEdgeToEdge.web.js +10 -0
- package/dist/commonjs/NativeRNEdgeToEdge.web.js.map +1 -0
- package/dist/module/NativeRNEdgeToEdge.web.js +6 -0
- package/dist/module/NativeRNEdgeToEdge.web.js.map +1 -0
- package/dist/typescript/NativeRNEdgeToEdge.web.d.ts +5 -0
- package/dist/typescript/NativeRNEdgeToEdge.web.d.ts.map +1 -0
- package/package.json +1 -1
- package/src/NativeRNEdgeToEdge.web.ts +5 -0
package/README.md
CHANGED
|
@@ -25,7 +25,9 @@ It is supporting the **latest version**, and the **two previous minor series**.
|
|
|
25
25
|
|
|
26
26
|
### Android 15
|
|
27
27
|
|
|
28
|
-
With the upcoming release of Android 15, Google is introducing a significant change: apps targeting SDK 35 [will have edge-to-edge enforcement](https://developer.android.com/about/versions/15/behavior-changes-15#edge-to-edge).
|
|
28
|
+
With the upcoming release of Android 15, Google is introducing a significant change: apps targeting SDK 35 [will have edge-to-edge enforcement](https://developer.android.com/about/versions/15/behavior-changes-15#edge-to-edge). Google is _likely_ to mandate that app updates on the Play Store target SDK 35 starting on August 31, 2025. This assumption is based on the [previous years' requirements following a similar timeline](https://support.google.com/googleplay/android-developer/answer/11926878?sjid=11853000253346477363-EU#zippy=%2Care-there-any-exceptions-for-existing-apps-targeting-api-or-below:~:text=App%20update%20requirements).
|
|
29
|
+
|
|
30
|
+
Currently, new React Native projects target SDK 34.
|
|
29
31
|
|
|
30
32
|
### Immersive mode
|
|
31
33
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["setSystemBarsConfig"],"sourceRoot":"../../src","sources":["NativeRNEdgeToEdge.web.ts"],"mappings":";;;;;;iCAEe;EACbA,mBAAmBA,CAAA,EAAG,CAAC;AACzB,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["setSystemBarsConfig"],"sourceRoot":"../../src","sources":["NativeRNEdgeToEdge.web.ts"],"mappings":";;AAEA,eAAe;EACbA,mBAAmBA,CAAA,EAAG,CAAC;AACzB,CAAC","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NativeRNEdgeToEdge.web.d.ts","sourceRoot":"","sources":["../../src/NativeRNEdgeToEdge.web.ts"],"names":[],"mappings":";;;AAEA,wBAEiB"}
|
package/package.json
CHANGED