Fork me on GitHub
#cljsrn
<
2017-05-02
>
tim219:05:37

Trying re-natal with rum: re-natal init chip1 -i rum; cd chip1; re-natal use-android device avd; re-natal use-figwheel; lein figwheel android; (in separate window) react-native run-android Result in emulator is red screen with "Application chip1 has not been registered. ..." I was able to get re-natal working with reagent, but I would like to try rum. Compared re-natal collateral for reagent with re-natal collateral for rum, but did not spot any obvious issue with the rum collateral. Any thoughts where to look next? Thanks for any help.

pesterhazy20:05:29

"not been registered" is a catch-alll error that usually just means something went wrong in the javascript code before that point

pesterhazy20:05:43

try react-native log-android to inspect the logs

pesterhazy20:05:53

often there's an indication of what's wrong

tim220:05:22

@pesterhazy -- Thanks, log-android is a useful command. I needed to restart the react-native packager after changing from the reagent project to the rum project. Now it works.