expo-constants 15.2.0 → 15.3.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 +7 -0
- package/android/build.gradle +4 -4
- package/ios/EXConstants.podspec +5 -5
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,13 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 15.3.0 — 2023-11-14
|
|
14
|
+
|
|
15
|
+
### 🛠 Breaking changes
|
|
16
|
+
|
|
17
|
+
- Bumped iOS deployment target to 13.4. ([#25063](https://github.com/expo/expo/pull/25063) by [@gabrieldonadel](https://github.com/gabrieldonadel))
|
|
18
|
+
- On `Android` bump `compileSdkVersion` and `targetSdkVersion` to `34`. ([#24708](https://github.com/expo/expo/pull/24708) by [@alanjhughes](https://github.com/alanjhughes))
|
|
19
|
+
|
|
13
20
|
## 15.2.0 — 2023-10-17
|
|
14
21
|
|
|
15
22
|
_This version does not introduce any user-facing changes._
|
package/android/build.gradle
CHANGED
|
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
|
|
|
3
3
|
apply plugin: 'maven-publish'
|
|
4
4
|
|
|
5
5
|
group = 'host.exp.exponent'
|
|
6
|
-
version = '15.
|
|
6
|
+
version = '15.3.0'
|
|
7
7
|
|
|
8
8
|
apply from: "../scripts/get-app-config-android.gradle"
|
|
9
9
|
|
|
@@ -63,11 +63,11 @@ if (!safeExtGet("expoProvidesDefaultConfig", false)) {
|
|
|
63
63
|
android {
|
|
64
64
|
// Remove this if and it's contents, when support for SDK49 is dropped
|
|
65
65
|
if (!safeExtGet("expoProvidesDefaultConfig", false)) {
|
|
66
|
-
compileSdkVersion safeExtGet("compileSdkVersion",
|
|
66
|
+
compileSdkVersion safeExtGet("compileSdkVersion", 34)
|
|
67
67
|
|
|
68
68
|
defaultConfig {
|
|
69
69
|
minSdkVersion safeExtGet("minSdkVersion", 23)
|
|
70
|
-
targetSdkVersion safeExtGet("targetSdkVersion",
|
|
70
|
+
targetSdkVersion safeExtGet("targetSdkVersion", 34)
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
publishing {
|
|
@@ -96,7 +96,7 @@ android {
|
|
|
96
96
|
namespace "expo.modules.constants"
|
|
97
97
|
defaultConfig {
|
|
98
98
|
versionCode 33
|
|
99
|
-
versionName "15.
|
|
99
|
+
versionName "15.3.0"
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
102
|
|
package/ios/EXConstants.podspec
CHANGED
|
@@ -10,17 +10,17 @@ Pod::Spec.new do |s|
|
|
|
10
10
|
s.license = package['license']
|
|
11
11
|
s.author = package['author']
|
|
12
12
|
s.homepage = package['homepage']
|
|
13
|
-
s.platforms = { :ios => '13.
|
|
13
|
+
s.platforms = { :ios => '13.4', :tvos => '13.4'}
|
|
14
14
|
s.swift_version = '5.4'
|
|
15
15
|
s.source = { git: 'https://github.com/expo/expo.git' }
|
|
16
16
|
s.static_framework = true
|
|
17
17
|
|
|
18
18
|
s.dependency 'ExpoModulesCore'
|
|
19
19
|
|
|
20
|
-
# Swift/Objective-C compatibility
|
|
21
|
-
s.pod_target_xcconfig = {
|
|
22
|
-
'DEFINES_MODULE' => 'YES',
|
|
23
|
-
'SWIFT_COMPILATION_MODE' => 'wholemodule'
|
|
20
|
+
# Swift/Objective-C compatibility
|
|
21
|
+
s.pod_target_xcconfig = {
|
|
22
|
+
'DEFINES_MODULE' => 'YES',
|
|
23
|
+
'SWIFT_COMPILATION_MODE' => 'wholemodule'
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
if !$ExpoUseSources&.include?(package['name']) && ENV['EXPO_USE_SOURCE'].to_i == 0 && File.exist?("#{s.name}.xcframework") && Gem::Version.new(Pod::VERSION) >= Gem::Version.new('1.10.0')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-constants",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.3.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",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"expo": "*"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "3142a086578deffd8704a8f1b6f0f661527d836c"
|
|
47
47
|
}
|