expo-constants 55.0.13 → 55.0.15
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/CHANGELOG.md +10 -0
- package/android/build.gradle +2 -2
- package/package.json +2 -3
- package/scripts/build/getAppConfig.js +4 -3
- package/scripts/src/getAppConfig.ts +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,16 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 55.0.15 — 2026-04-21
|
|
14
|
+
|
|
15
|
+
### 💡 Others
|
|
16
|
+
|
|
17
|
+
- Switch app config generation from `@expo/config` to `expo/config` public API ([#44721](https://github.com/expo/expo/pull/44721) by [@kitten](https://github.com/kitten))
|
|
18
|
+
|
|
19
|
+
## 55.0.14 — 2026-04-13
|
|
20
|
+
|
|
21
|
+
_This version does not introduce any user-facing changes._
|
|
22
|
+
|
|
13
23
|
## 55.0.13 — 2026-04-09
|
|
14
24
|
|
|
15
25
|
_This version does not introduce any user-facing changes._
|
package/android/build.gradle
CHANGED
|
@@ -6,7 +6,7 @@ plugins {
|
|
|
6
6
|
apply from: "../scripts/get-app-config-android.gradle"
|
|
7
7
|
|
|
8
8
|
group = 'host.exp.exponent'
|
|
9
|
-
version = '55.0.
|
|
9
|
+
version = '55.0.15'
|
|
10
10
|
|
|
11
11
|
expoModule {
|
|
12
12
|
// We can't prebuild the module because we need to apply `get-app-config-android.gradle` script.
|
|
@@ -17,6 +17,6 @@ android {
|
|
|
17
17
|
namespace "expo.modules.constants"
|
|
18
18
|
defaultConfig {
|
|
19
19
|
versionCode 33
|
|
20
|
-
versionName "55.0.
|
|
20
|
+
versionName "55.0.15"
|
|
21
21
|
}
|
|
22
22
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-constants",
|
|
3
|
-
"version": "55.0.
|
|
3
|
+
"version": "55.0.15",
|
|
4
4
|
"description": "Provides system information that remains constant throughout the lifetime of your app.",
|
|
5
5
|
"main": "build/Constants.js",
|
|
6
6
|
"types": "build/Constants.d.ts",
|
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"preset": "expo-module-scripts"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@expo/config": "~55.0.14",
|
|
47
46
|
"@expo/env": "~2.1.1"
|
|
48
47
|
},
|
|
49
48
|
"devDependencies": {
|
|
@@ -53,5 +52,5 @@
|
|
|
53
52
|
"expo": "*",
|
|
54
53
|
"react-native": "*"
|
|
55
54
|
},
|
|
56
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "e37e614d97c3ca53f16b91609a787675d044c284"
|
|
57
56
|
}
|
|
@@ -3,11 +3,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
const config_1 = require("
|
|
6
|
+
const config_1 = require("expo/config");
|
|
7
7
|
const fs_1 = __importDefault(require("fs"));
|
|
8
8
|
const path_1 = __importDefault(require("path"));
|
|
9
|
-
const
|
|
10
|
-
const
|
|
9
|
+
const cwd = process.cwd();
|
|
10
|
+
const possibleProjectRoot = process.argv[2] ?? cwd;
|
|
11
|
+
const destinationDir = process.argv[3] ?? cwd;
|
|
11
12
|
// TODO: Verify we can remove projectRoot validation, now that we no longer
|
|
12
13
|
// support React Native <= 62
|
|
13
14
|
let projectRoot;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { getConfig } from '
|
|
1
|
+
import { getConfig } from 'expo/config';
|
|
2
2
|
import fs from 'fs';
|
|
3
3
|
import path from 'path';
|
|
4
4
|
|
|
5
|
-
const
|
|
6
|
-
const
|
|
5
|
+
const cwd = process.cwd();
|
|
6
|
+
const possibleProjectRoot = process.argv[2] ?? cwd;
|
|
7
|
+
const destinationDir = process.argv[3] ?? cwd;
|
|
7
8
|
|
|
8
9
|
// TODO: Verify we can remove projectRoot validation, now that we no longer
|
|
9
10
|
// support React Native <= 62
|