通常情況下,我們使用以下命令來在我們的手機上測試 React Native 應用程式:react-native run-android。然而,這個方法需要將手機連接到電腦上。為了達到無需伺服器的目標,我們可以使用以下指令來實現:
react-native bundle --dev false --platform android --entry-file index.android.js --bundle-output ./android/app/build/intermediates/assets/debug/index.android.bundle --assets-dest ./android/app/build/intermediates/res/merged/debug
cd android
./gradlew assembleDebug
參考資料
Build and Install unsigned apk on device without the development server?
感謝您閱讀我的文章。歡迎隨時分享你的想法。