내 블로그의 예로 반응 네이티브 프로젝트를 만들고 있지만 expo
을 24.0.0
으로 업그레이드하면 예상치 못한 오류가 발생합니다.엑스포로 업그레이드 할 때 지원되지 않는 최상위 이벤트 유형 "topTouchStart"가 발송됩니다.
app.json :
{
"name": "TipCalculator",
"displayName": "rn_tip_calculator",
"expo": {
"name": "TipCalculator",
"slug": "rn-tip-calculator",
"sdkVersion": "24.0.0"
}
}
package.json는 :
이 문제는 매우 년 11 월 2017 년 알려져있다{
"name": "rn_tip_calculator",
"version": "0.0.1",
"private": true,
"author": "GeniusDoan <[email protected]> (https://github.com/nhoxbypass)",
"repository": "https://github.com/HCMUS-IceTeaViet-SE/rn_tip_calculator",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"expo": "^24.0.0",
"react": "^16.0.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-24.0.0.tar.gz",
"react-native-deprecated-custom-components": "^0.1.0",
"react-native-i18n": "^1.0.0",
"react-native-segmented-control-tab": "^3.0.1"
},
"devDependencies": {
"babel-jest": "19.0.0",
"babel-preset-react-native": "1.9.1",
"jest": "19.0.2",
"react-test-renderer": "16.0.0"
},
"jest": {
"preset": "react-native"
}
}
, 나는 많은 Github에서 읽었습니다 문제에 관해서는 반응 네이티브 v50.0에서 발생합니다. 하지만 내 프로젝트에서 최신 반응 기본 버전 (v51.0) 및 포크 반 - 네이티브 버전의 엑스포를 사용하려고 시도했지만 작동하지 않습니다.
Android 6.0에서 실행됩니다.
도움이 될 것입니다!
나는 imalik8088 @ 당신이 그것을 해결하는 방법을 알게 되었습니까 같은 문제 – imalik8088
있어? – nhoxbypass
아직 불행히도 오류가 있습니다. 해결책을 찾았습니까? – imalik8088