강의

멘토링

커뮤니티

BEST
Programming

/

Mobile Application Development

Delivery App Clone Coding [with React Native]

Let's create a delivery app for riders with React Native. This is a lecture by a developer who has created more than 5 apps with React Native over the past 6 years and sold them to Kakao Mobility.

(4.8) 61 reviews

1,857 learners

  • zerocho
꽉꽉 채워낸
Q&A의 달인
React Native
zerocho님의 프로필 이미지

Edited

Source code for version 0.71

Since many things have changed in version 0.71, I also tried setting up the project again in 0.71.

https://github.com/ZeroCho/food-delivery-app/tree/master/rn71

The source code is here. The main difference is that build.gradle & app/build.gradle are slightly different (be careful not to accidentally delete a line while editing the existing files).

The point that I had to set android:exported = true in android/app/src/main/AndroidManifest.xml

There was something that I had to modify with patch-package because react-native-code-push didn't work. The modified file is

https://github.com/ZeroCho/food-delivery-app/blob/master/rn71/patches/react-native-code-push%2B7.1.0.patch

On the iOS side, AppDelegate.mm has been created instead of AppDelegate.m. The way to do push notification has changed a lot, so please check AppDelegate.h and AppDelegate.mm (In AppDelegate.mm, you must enter your module name as the module name)

I've uploaded it here, so if you copy and paste this file and run npm i, the changes will be reflected.

Comment