React Native

react-native run-* で error during initialization or failure to call AppRegistry.registerComponent の対策

エラーログ APP_NAME has not been registered. This is either due to a required() error during initialization or failure to call AppRegistry.registerComponent 対策 node プロセスが干渉しているので kill する. $ ps aux | grep node $ sudo kill -…

React Native で実行対象の Android デバイスを選択してビルドする

blog.morugu.com ↑を乗り越えた後に, emulator を起動しつつリアルデバイスも繋いだ状態で react-native run-android したところ emulator が優先された. なので明示的に実行対象を指定する方法. 実行可能な一覧を取得 adb devices で使用可能な( adb サーバ…

React Native で run-adnroid したときに発生しがちな3つのエラーと対策

背景 久しぶりに react-native run-android したらエラーが出て 以前にも同じようなエラーに遭遇した記憶があるので, 内容と対策をまとめておく. 環境 macOS: 10.13.2 react-native-cli: 2.0.1 react-native: 0.42.3 node: v8.9.1 エラー その1: SDK locatio…

React Nativeアプリを爆速で作れるツールCRNAを試してみた

React Native BlogでCRNAが発表されていて モック開発用?Production投入できるの? と気になったので試してみました。 facebook.github.io CRNAとは Create React Native App の略称で、Facebook(React Community) からリリースされた React Nativeの開発を…