expo-manifests 0.16.6 → 0.17.0-canary-20250709-136b77f

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 CHANGED
@@ -6,11 +6,13 @@
6
6
 
7
7
  ### 🎉 New features
8
8
 
9
+ - Add support for macOS. ([#37629](https://github.com/expo/expo/pull/37629) by [@gabrieldonadel](https://github.com/gabrieldonadel))
10
+
9
11
  ### 🐛 Bug fixes
10
12
 
11
13
  ### 💡 Others
12
14
 
13
- ## 0.16.6 2025-07-03
15
+ ## 0.16.6 - 2025-07-03
14
16
 
15
17
  _This version does not introduce any user-facing changes._
16
18
 
@@ -4,7 +4,7 @@ plugins {
4
4
  }
5
5
 
6
6
  group = 'host.exp.exponent'
7
- version = '0.16.6'
7
+ version = '0.17.0-canary-20250709-136b77f'
8
8
 
9
9
  expoModule {
10
10
  canBePublished false
@@ -14,7 +14,7 @@ android {
14
14
  namespace "expo.modules.manifests"
15
15
  defaultConfig {
16
16
  versionCode 31
17
- versionName '0.16.6'
17
+ versionName '0.17.0-canary-20250709-136b77f'
18
18
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
19
19
  }
20
20
  testOptions {
@@ -4,8 +4,10 @@
4
4
  // swiftlint:disable unavailable_function
5
5
 
6
6
  import Foundation
7
- import UIKit
8
7
 
8
+ #if os(iOS) || os(tvOS)
9
+ import UIKit
10
+ #endif
9
11
  /**
10
12
  Uses objective-c NSExceptions for field validation. This is to maintain
11
13
  backwards compatibility with the previous objective-c implementation so that we don't need to do
@@ -274,13 +276,17 @@ public class Manifest: NSObject {
274
276
  }
275
277
 
276
278
  public func iosSplashImageUrl() -> String? {
279
+ var paths = [["ios", "splash", "imageUrl"], ["splash", "imageUrl"]]
280
+ #if os(iOS) || os(tvOS)
281
+ if UIDevice.current.userInterfaceIdiom == UIUserInterfaceIdiom.pad {
282
+ paths.insert(contentsOf: [
283
+ ["ios", "splash", "tabletImageUrl"],
284
+ ["splash", "tabletImageUrl"]
285
+ ], at: 0)
286
+ }
287
+ #endif
277
288
  return expoClientConfigRootObject().let { it in
278
- Manifest.string(fromManifest: it, atPaths: [
279
- UIDevice.current.userInterfaceIdiom == UIUserInterfaceIdiom.pad
280
- ? ["ios", "splash", "tabletImageUrl"] : [],
281
- ["ios", "splash", "imageUrl"],
282
- ["splash", "imageUrl"]
283
- ])
289
+ Manifest.string(fromManifest: it, atPaths: paths)
284
290
  }
285
291
  }
286
292
 
@@ -12,9 +12,10 @@ Pod::Spec.new do |s|
12
12
  s.homepage = package['homepage']
13
13
  s.platforms = {
14
14
  :ios => '15.1',
15
- :tvos => '15.1'
15
+ :tvos => '15.1',
16
+ :osx => '11.0'
16
17
  }
17
- s.swift_version = '5.4'
18
+ s.swift_version = '5.9'
18
19
  s.source = { git: 'https://github.com/expo/expo.git' }
19
20
  s.static_framework = true
20
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-manifests",
3
- "version": "0.16.6",
3
+ "version": "0.17.0-canary-20250709-136b77f",
4
4
  "description": "Code to parse and use Expo and Expo Updates manifests.",
5
5
  "main": "build/Manifests.js",
6
6
  "types": "build/Manifests.d.ts",
@@ -34,14 +34,13 @@
34
34
  "preset": "expo-module-scripts"
35
35
  },
36
36
  "dependencies": {
37
- "@expo/config": "~11.0.12",
38
- "expo-json-utils": "~0.15.0"
37
+ "@expo/config": "11.0.14-canary-20250709-136b77f",
38
+ "expo-json-utils": "0.15.1-canary-20250709-136b77f"
39
39
  },
40
40
  "devDependencies": {
41
- "expo-module-scripts": "^4.1.9"
41
+ "expo-module-scripts": "4.1.10-canary-20250709-136b77f"
42
42
  },
43
43
  "peerDependencies": {
44
- "expo": "*"
45
- },
46
- "gitHead": "1f24ccedde18e18270967f102ffb1ae0ebc20c1c"
44
+ "expo": "54.0.0-canary-20250709-136b77f"
45
+ }
47
46
  }