Hacker News new | ask | show | jobs
by epberry 3772 days ago
> Not knowing Objective C or Swift

I think this is a key phrase here. I'm writing a RN Android app without knowing much about Java.

2 comments

You can write a CRUD like app without any hardware/native code required. However, even when you do need that code - for example I'm building an app that records and plays audio - react native still gives you an advantage in the sense that you only need to expose a hardware API but all the logic still stays in javascript. I've managed to write just enough Objective C and Java to expose some APIs I need, and no more.

There is also a lot of react-native npm packages that abstract away the hardware issues, quality & completeness varies however.

Have you run into any gotchas? I am thinking of doing the same thing for a simple app.
There were definitely some head scratchers along the way, I think I address a few of them in this post but I plan to write a few more posts that show how we tackled some issues in more detail so keep an eye out for that.