expo-dev-menu 6.0.1 → 6.0.3

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,22 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 6.0.3 — 2024-10-25
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - [iOS] Fix build failure on 0.76 with use frameworks. ([#32341](https://github.com/expo/expo/pull/32341) by [@matinzd](https://github.com/matinzd))
18
+
19
+ ### 💡 Others
20
+
21
+ - Skipped internal bundles from debugging targets. ([#32322](https://github.com/expo/expo/pull/32322) by [@kudo](https://github.com/kudo))
22
+
23
+ ## 6.0.2 — 2024-10-24
24
+
25
+ ### 🎉 New features
26
+
27
+ - Add support for react-native 0.76 ([#32285](https://github.com/expo/expo/pull/32285) by [@gabrieldonadel](https://github.com/gabrieldonadel))
28
+
13
29
  ## 6.0.1 — 2024-10-22
14
30
 
15
31
  _This version does not introduce any user-facing changes._
@@ -1,7 +1,7 @@
1
1
  apply plugin: 'com.android.library'
2
2
 
3
3
  group = 'host.exp.exponent'
4
- version = '6.0.1'
4
+ version = '6.0.3'
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 '6.0.1'
23
+ versionName '6.0.3'
24
24
  }
25
25
 
26
26
  buildTypes {
package/app/index.ts CHANGED
@@ -3,6 +3,9 @@ import { enableScreens } from 'react-native-screens';
3
3
 
4
4
  import { App } from './App';
5
5
 
6
+ // Hide this target from the JS inspector
7
+ globalThis.__expo_hide_from_inspector__ = 'expo-dev-menu';
8
+
6
9
  enableScreens(false);
7
10
 
8
11
  AppRegistry.registerComponent('main', () => App);