expo-dev-menu 5.0.13 → 5.0.14

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
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 5.0.14 — 2024-05-09
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Fixed build errors with use_frameworks on iOS. ([#28702](https://github.com/expo/expo/pull/28702) by [@kudo](https://github.com/kudo))
18
+
13
19
  ## 5.0.13 — 2024-05-08
14
20
 
15
21
  ### 🐛 Bug fixes
@@ -1,7 +1,7 @@
1
1
  apply plugin: 'com.android.library'
2
2
 
3
3
  group = 'host.exp.exponent'
4
- version = '5.0.13'
4
+ version = '5.0.14'
5
5
 
6
6
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
7
7
  apply from: expoModulesCorePlugin
@@ -20,7 +20,7 @@ android {
20
20
  namespace "expo.modules.devmenu"
21
21
  defaultConfig {
22
22
  versionCode 10
23
- versionName '5.0.13'
23
+ versionName '5.0.14'
24
24
  }
25
25
 
26
26
  buildTypes {
@@ -46,13 +46,17 @@ Pod::Spec.new do |s|
46
46
  }
47
47
 
48
48
  header_search_paths = [
49
- '"$(PODS_ROOT)/boost"',
50
49
  '"${PODS_ROOT}/Headers/Private/React-Core"',
51
50
  '"$(PODS_CONFIGURATION_BUILD_DIR)/ExpoModulesCore/Swift Compatibility Header"',
52
51
  '"$(PODS_CONFIGURATION_BUILD_DIR)/expo-dev-menu-interface/Swift Compatibility Header"',
53
52
  ]
54
53
  if ENV['USE_FRAMEWORKS']
55
54
  header_search_paths.concat([
55
+ '"${PODS_CONFIGURATION_BUILD_DIR}/React-Mapbuffer/React_Mapbuffer.framework/Headers"',
56
+ '"${PODS_CONFIGURATION_BUILD_DIR}/React-RuntimeApple/React_RuntimeApple.framework/Headers"',
57
+ '"${PODS_CONFIGURATION_BUILD_DIR}/React-RuntimeCore/React_RuntimeCore.framework/Headers"',
58
+ '"${PODS_CONFIGURATION_BUILD_DIR}/React-jserrorhandler/React_jserrorhandler.framework/Headers"',
59
+ '"${PODS_CONFIGURATION_BUILD_DIR}/React-nativeconfig/React_nativeconfig.framework/Headers"',
56
60
  '"${PODS_CONFIGURATION_BUILD_DIR}/React-runtimescheduler/React_runtimescheduler.framework/Headers"',
57
61
  ])
58
62
  end
@@ -98,7 +102,11 @@ Pod::Spec.new do |s|
98
102
  s.exclude_files = 'ios/*Tests/**/*', 'ios/ReactNativeCompatibles/**/*', 'vendored/**/*'
99
103
  s.compiler_flags = compiler_flags
100
104
 
105
+ # add_dependency() requires to be defined
106
+ main.pod_target_xcconfig = {}
107
+
101
108
  main.dependency 'React-Core'
109
+ add_dependency(main, "React-jsinspector", :framework_name => 'jsinspector_modern')
102
110
  main.dependency "EXManifests"
103
111
  main.dependency 'ExpoModulesCore'
104
112
  main.dependency 'expo-dev-menu-interface'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-dev-menu",
3
- "version": "5.0.13",
3
+ "version": "5.0.14",
4
4
  "description": "Expo/React Native module with the developer menu.",
5
5
  "main": "build/DevMenu.js",
6
6
  "types": "build/DevMenu.d.ts",
@@ -70,5 +70,5 @@
70
70
  "peerDependencies": {
71
71
  "expo": "*"
72
72
  },
73
- "gitHead": "2d46c18795300bad8ac2ad9491c3c0541a1c67e9"
73
+ "gitHead": "9857711b8ec18ddecd36f9291ade5ccccbabddbc"
74
74
  }