AWS SNSを利用したPush Notificationについて(React Native / iOS)
ここでは、AWS SNSを利用したPush Notificationについて紹介します。具体的には次の手順で設定することになりますが、一部の設定方法については、割愛します。 Apple Dev WebコンソールでPush… 続きを読む »
ここでは、AWS SNSを利用したPush Notificationについて紹介します。具体的には次の手順で設定することになりますが、一部の設定方法については、割愛します。 Apple Dev WebコンソールでPush… 続きを読む »
react nativeをデバッグモードで起動していると、ファイルの変更に合わせて、自動的に再読み込みが発生します。ただ、テスト用のファイルなど全ての変更に対して、再読み込みが発生することが好ましくない場合があります。 … 続きを読む »
React Nativeでプロジェクト作成時に適当な名前をつけたために、後から変更したくなることがあると思います。単にプロジェクト直下にある<プロジェクト名>.jsonのdisplayNameやnameの値を… 続きを読む »
React NativeでPush Notificationを実現する方法について紹介します。まず、今回、利用したモジュールは、react-native-push-notificationというモジュールです。 まず、通… 続きを読む »
React Nativeで作成したアプリを別のMacでシミュレータで開発をしようとしたところ、次のようなエラーが発生しました。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
** BUILD SUCCEEDED ** The following commands produced analyzer issues: Analyze Base/RCTModuleMethod.mm normal x86_64 (1 command with analyzer issues) Installing build/Build/Products/Debug-iphonesimulator/app.app An error was encountered processing the command (domain=NSPOSIXErrorDomain, code=2): Failed to install the requested application An application bundle was not found at the provided path. Provide a valid path to the desired application bundle. Print: Entry, ":CFBundleIdentifier", Does Not Exist Command failed: /usr/libexec/PlistBuddy -c Print:CFBundleIdentifier build/Build/Products/Debug-iphonesimulator/app.app/Info.plist Print: Entry, ":CFBundleIdentifier", Does Not Exist |
エラーの内容は、̶… 続きを読む »
React Nativeでデバッグをする時に、想定するiOSシミュレータを利用したい場合があります。何も指定しない場合、(現時点では) iPhone 5のシミュレータが立ち上がります。それを所望のシミュレータを立ち上げる… 続きを読む »