SDK 48 Can't debug Hermes

Upgraded my project to SDK 48 and configured JS engine as Hermes in app.config.js

Running npx expo start --dev-client on iOS I get this

If I try this on Android device I get:

No compatible apps connected. JavaScript Debugging can only be used with the Hermes engine

Android curl http://127.0.0.1:19000/json/list:
[]

chrome://inspect/#devices (previously added localhost:19000 and localhost:8081), doesn’t shows anything (no targets at all)

No matter how many times I go home and reopen the Dev Server URL, the JS debug just says No compatible apps connected. JavaScript Debugging can only be used with the Hermes engine.

jsEngine: ‘hermes’, is explicitly set ion app.config.js

package Json
{
“name”: "app-demostrador,
“version”: “1.0.0”,
“main”: “node_modules/expo/AppEntry.js”,
“private”: true,
“scripts”: {
“start”: “npx expo start --localhost”,
“start-production”: “npx expo start --no-dev --minify”,
“android”: “npx expo start --android”,
“ios”: “npx expo start --ios”,
“web”: “npx expo start --web”,
“eject”: “npx expo eject”,
“test”: “jest --watchAll”,
“lint”: “eslint --ext .tsx --ext .ts app/”,
“format”: “prettier --check ./app”,
“eas-build-pre-install”: “echo $GOOGLE_SERVICES_JSON_DEMOSTRADOR | base64 --decode > ./google-services.json”
},
“jest”: {
“preset”: “jest-expo”
},
“dependencies”: {
@expo/vector-icons”: “^13.0.0”,
@react-native-async-storage/async-storage”: “1.17.11”,
@react-native-community/netinfo”: “9.3.7”,
@react-navigation/bottom-tabs”: “^6.5.7”,
@react-navigation/native”: “^6.1.6”,
@react-navigation/native-stack”: “^6.9.12”,
“expo”: “^48.0.0”,
“expo-asset”: “~8.9.1”,
“expo-constants”: “~14.2.1”,
“expo-dev-client”: “~2.2.1”,
“expo-device”: “~5.2.1”,
“expo-font”: “~11.1.1”,
“expo-linking”: “~4.0.1”,
“expo-notifications”: “~0.18.1”,
“expo-splash-screen”: “~0.18.2”,
“expo-status-bar”: “~1.4.4”,
“expo-system-ui”: “~2.2.1”,
“expo-task-manager”: “~11.1.1”,
“expo-updates”: “~0.16.4”,
“lodash”: “^4.17.21”,
“react”: “18.2.0”,
“react-dom”: “18.2.0”,
“react-native”: “0.71.7”,
“react-native-safe-area-context”: “4.5.0”,
“react-native-screens”: “~3.20.0”,
“react-native-url-polyfill”: “^1.3.0”,
“react-native-web”: “~0.18.10”,
“react-native-webview”: “11.26.0”,
“zustand”: “^4.3.8”
},
“devDependencies”: {
@babel/core”: “^7.20.0”,
@types/lodash”: “^4.14.194”,
@types/react”: “~18.0.24”,
@typescript-eslint/eslint-plugin”: “^5.59.2”,
@typescript-eslint/parser”: “^5.59.2”,
“eslint-plugin-prettier”: “^4.2.1”,
“eslint-plugin-react”: “^7.32.2”,
“eslint-plugin-react-hooks”: “^4.6.0”,
“jest”: “^29.2.1”,
“jest-expo”: “^48.0.0”,
“prettier”: “^2.8.0”,
“react-test-renderer”: “18.2.0”,
“typescript”: “^4.9.4”
}
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.