expo-constants 17.0.8 → 17.1.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.
- package/CHANGELOG.md +19 -10
- package/android/build.gradle +12 -11
- package/ios/EXConstants.podspec +1 -1
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -10,27 +10,36 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
-
## 17.0
|
|
13
|
+
## 17.1.0 — 2025-04-04
|
|
14
14
|
|
|
15
|
-
###
|
|
15
|
+
### 🛠 Breaking changes
|
|
16
16
|
|
|
17
|
-
-
|
|
17
|
+
- Bump minimum macOS version to 11.0. ([#34980](https://github.com/expo/expo/pull/34980) by [@gabrieldonadel](https://github.com/gabrieldonadel))
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
### 🐛 Bug fixes
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
- Add missing types to package exports ([#35223](https://github.com/expo/expo/pull/35223) by [@timostroehlein](https://github.com/timostroehlein))
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
### 💡 Others
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
- [android][ios] Updated Gradle build and Podspec files to ensure app.json/app.config.js values are correctly updated during each native build. ([#34228](https://github.com/expo/expo/pull/34228) by [@chrfalch](https://github.com/chrfalch))
|
|
26
|
+
- [Android] Started using expo modules gradle plugin. ([#34176](https://github.com/expo/expo/pull/34176) by [@lukmccall](https://github.com/lukmccall))
|
|
26
27
|
|
|
27
|
-
## 17.0.
|
|
28
|
+
## 17.0.8 - 2025-03-11
|
|
28
29
|
|
|
29
30
|
### 🐛 Bug fixes
|
|
30
31
|
|
|
31
|
-
- [
|
|
32
|
+
- [iOS] Fix pod install in older CocoaPods versions ([#35181](https://github.com/expo/expo/pull/35181) by [@gabrieldonadel](https://github.com/gabrieldonadel))
|
|
33
|
+
|
|
34
|
+
## 17.0.7 - 2025-02-19
|
|
35
|
+
|
|
36
|
+
_This version does not introduce any user-facing changes._
|
|
37
|
+
|
|
38
|
+
## 17.0.6 - 2025-02-14
|
|
39
|
+
|
|
40
|
+
_This version does not introduce any user-facing changes._
|
|
32
41
|
|
|
33
|
-
## 17.0.4
|
|
42
|
+
## 17.0.4 - 2025-01-10
|
|
34
43
|
|
|
35
44
|
_This version does not introduce any user-facing changes._
|
|
36
45
|
|
package/android/build.gradle
CHANGED
|
@@ -1,22 +1,23 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
plugins {
|
|
2
|
+
id 'com.android.library'
|
|
3
|
+
id 'expo-module-gradle-plugin'
|
|
4
|
+
}
|
|
5
5
|
|
|
6
6
|
apply from: "../scripts/get-app-config-android.gradle"
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
8
|
+
group = 'host.exp.exponent'
|
|
9
|
+
version = '17.1.0'
|
|
10
|
+
|
|
11
|
+
expoModule {
|
|
12
|
+
// We can't prebuild the module because we need to apply `get-app-config-android.gradle` script.
|
|
13
|
+
canBePublished false
|
|
14
|
+
}
|
|
14
15
|
|
|
15
16
|
android {
|
|
16
17
|
namespace "expo.modules.constants"
|
|
17
18
|
defaultConfig {
|
|
18
19
|
versionCode 33
|
|
19
|
-
versionName "17.0
|
|
20
|
+
versionName "17.1.0"
|
|
20
21
|
}
|
|
21
22
|
}
|
|
22
23
|
|
package/ios/EXConstants.podspec
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-constants",
|
|
3
|
-
"version": "17.0
|
|
3
|
+
"version": "17.1.0",
|
|
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",
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"exports": {
|
|
9
9
|
"./package.json": "./package.json",
|
|
10
10
|
".": {
|
|
11
|
+
"types": "./build/Constants.d.ts",
|
|
11
12
|
"react-server": "./build/Constants.server.js",
|
|
12
13
|
"default": "./build/Constants.js"
|
|
13
14
|
}
|
|
@@ -42,15 +43,15 @@
|
|
|
42
43
|
"preset": "expo-module-scripts"
|
|
43
44
|
},
|
|
44
45
|
"dependencies": {
|
|
45
|
-
"@expo/config": "~
|
|
46
|
-
"@expo/env": "~0.
|
|
46
|
+
"@expo/config": "~11.0.0",
|
|
47
|
+
"@expo/env": "~1.0.0"
|
|
47
48
|
},
|
|
48
49
|
"devDependencies": {
|
|
49
|
-
"expo-module-scripts": "^4.0
|
|
50
|
+
"expo-module-scripts": "^4.1.0"
|
|
50
51
|
},
|
|
51
52
|
"peerDependencies": {
|
|
52
53
|
"expo": "*",
|
|
53
54
|
"react-native": "*"
|
|
54
55
|
},
|
|
55
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "68b8233002dc678934ba40cbade7fbc80e71aeff"
|
|
56
57
|
}
|