thanks to @arturkesik and @Wyllis_Monteiro for providing this information. Is the preview smooth in React Native Expo?
I need to use
npx expo run:android
instead ofnpx expo start
but some project modification > should be made.
- Execute
npx expo run:android
to initialize/android
folder at the root project (error will apear)- Update
minSdkVersion
to26
inandroid/app/build.gradle
- Now I should always use
npx expo run:android
to build project (for Android)
Wow, this is a nice tip. Seems like a hard-earned one. Thanks.