[OK]を、ここに私の問題...建物アプリ作成後反応するネイティブアプリ
コマンドcreate-react-native-app myApp
を使用して反応させ、ネイティブアプリを作成した後で、私は、ファイルApp.js
を編集し、上でそれを実行することができた私npm start
とアプリ万博を使用してAndroid携帯電話。
その後、のプロジェクトをnpm run eject
で排出します。
私は、ツリーの方法で、そこから実行するプロジェクトを取得しようとしました:
- はそれを構築し、
react-native run-android
、 - を実行し、Androidのメーカーで
myApp/android
の下でプロジェクトを開くnpm run android
、 - を実行していますそこ。
私は自分の携帯電話に同じエラーメッセージ(サムスンギャラクシーS2)で終わる毎回:
:Unable to load script from assets 'index.android.bundle'. Make sure your bundle is packaged correctly or you're running a packager server.
は今、このエラーメッセージに見た後、私は、次の「解決策」を見つけます
mkdir android/app/src/main/assets
react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/
App.js
というファイルのみを提供するcreate-react-native-app
を使用したため、Cannot find entry file index.android.js
というエラーが発生しました。
私は代わりにreact-native bundle --platform android --dev false --entry-file App.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/
というコマンドを実行しました。index.android.bundle
とindex.android.bundle.meta
というファイルをassets
フォルダに追加しました。
最後に私は: 3,react-native run-android
を再度実行しました。私はアイデアの出だ
Module AppRegistry is not a registered module (calling runApplication)
:
は今、私は次のようなエラー・メッセージが表示されます。誰もこれに遭遇しましたか?/これに対処する方法を知っていますか?
おかげで、解決 Buugy