Changing the Expo Icon in React Native - react-native

This is my app.json file for my project.
I'm trying to change the expo app icon with my own, but having some difficulties. I tried to run expo with expo start -c, but it didn't work. Does anyone know what I am doing wrong?

Related

Is there a way to convert a react-native app from npx to Expo?

Having successfully ejected a react-native app first created using 'expo init' with the 'expo eject' command, I was wondering if there is a way to go the other way?
NO. You cannot go back to expo again after you have ejected from expo to a bare react-native app becuase now your code is splitted into two halves, one in android directory and ios directory.
There's no going back around, but you can use the expo libraries which you were using in expo , by simply installing rn-unimodules in your react native project.
Hope it helps .feel free for doubts

How can I turn the expo into react native without problem?

I can't run-ios In the react-native form.
The console says file ios is not available
So I have to get out expo from project
How can I do this?

How to import react native github repo to a working app

Currently having issues on applying the repo of https://github.com/prscX/react-native-photo-editor to a working app on my phone using expo.
I dont have any basic on react native and i would really appreciate if someone can give me the instruction on making my app have the following module.
react-native-photo-editor is native lib still not support with the expo.
You can start app development without expo.
Setup React Native
install react-native
react-native init TestNative
cd ./TestNative && react-native run-ios
Then follow these steps
https://github.com/PascalSun/PhotoEditor-SDK-React-Native-Demo

React native difference in react native project directry structure

While creating an app in react native, I didn't get sub directories like android,or IOS. I Used create-react-native-app command.
New version of CRNA integrates Expo Toolkit, and android and ios folders are hidden. If you want to separate these folders, you must detach expo from react native app.
npm run reject
You can read more detail at CRNA's github

How to transfer EXPO project to React Native project?

I build an app with Expo tool .. but now I what to move to react native without expo .. I tried to just create a new project in react native and then transfer the code that I had written and install components that I had used in my app .
the app with Expo work as expected put with moved to react native without Expo works as unexpected and crashes.
you don't need to transfer the code like that, the expo provides us to detach our code from expo to without expo react-native projects.
please refer to this link expokit eject
if you want to use expo API in your project then you can detach your app using detach-with-expokit.
use expo eject to add ExpoKit (choose the "ExpoKit" option).