Tôi đã gặp sự cố trong dự án React-Native trước đó đang hoạt động tốt nhưng đột nhiên nó ngừng hoạt động. Bất cứ khi nào tôi sử dụng lệnh:
react-native run-android
Tôi đã gặp lỗi :
Không tìm thấy dự án Android. Có thể chạy android gốc phản ứng trước?
Tôi đã thử chạy:
react-native android
Nhưng nó nói:
Unrecognized command 'android' Run react-native --help to see list of all available commands
Sau khi thử:
D:\ProjectRoot\ReactNativeProjects\AwesomeProject>react-native eject
Lỗi trả về là:
Quét các thư mục tìm liên kết tượng trưng trong D: \ ProjectRoot \ ReactNativeProjects \ AwesomeProject \ node_modules (48ms) Ứng dụng
name
phải được xác định trongapp.json
tệp cấu hình để xác định tên dự án. Nó không được chứa bất kỳ khoảng trắng hoặc dấu gạch ngang nào.
Đây là tệp app.json:
{
"expo": {
"name": "AwesomeProject",
"description": "A very interesting project.",
"slug": "AwesomeProject",
"privacy": "public",
"sdkVersion": "30.0.0",
"platforms": ["ios", "android"],
"ios": {
"supportsTablet": true
},
"android": {
"package": "com.project.first"
},
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
]
}
}