@expo/config-types 54.0.9 → 54.0.10
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/build/ExpoConfig.d.ts +3 -2
- package/package.json +2 -2
package/build/ExpoConfig.d.ts
CHANGED
|
@@ -825,9 +825,10 @@ export interface Android {
|
|
|
825
825
|
*/
|
|
826
826
|
version?: string;
|
|
827
827
|
/**
|
|
828
|
-
* Enable your app to run in [edge-to-edge](https://developer.android.com/develop/ui/views/layout/edge-to-edge) mode. Default to
|
|
828
|
+
* Enable your app to run in [edge-to-edge](https://developer.android.com/develop/ui/views/layout/edge-to-edge) mode. Default to true.
|
|
829
|
+
* @deprecated Android 16+ (API level 36) requires edge-to-edge to be enabled. This feature can't be disabled anymore. [learn more](https://developer.android.com/about/versions/16/behavior-changes-16#edge-to-edge)
|
|
829
830
|
*/
|
|
830
|
-
edgeToEdgeEnabled?:
|
|
831
|
+
edgeToEdgeEnabled?: true;
|
|
831
832
|
/**
|
|
832
833
|
* Enable your app to use the [predictive back gesture](https://developer.android.com/guide/navigation/custom-back/predictive-back-gesture) on Android 13 (API level 33) and later. Default to false.
|
|
833
834
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@expo/config-types",
|
|
3
|
-
"version": "54.0.
|
|
3
|
+
"version": "54.0.10",
|
|
4
4
|
"description": "Types for the Expo config object app.config.ts",
|
|
5
5
|
"types": "build/ExpoConfig.d.ts",
|
|
6
6
|
"main": "build/ExpoConfig.js",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "b6d1de9d53724e311e417c51dd0a9f9bee1c040d"
|
|
47
47
|
}
|