First, make sure you set up your development environment.
Go to Home Folder in your computer. (or whatever you want)Just make sure the folders are not nested inside each other.
Clone the AI Wrapper React Native Expo Repository.git clone https://github.com/shipmobilefast/shipmobilefast-ai.git [your-project-name]
First open your your-project-name folder and open app.json file and find these lines: {
"expo": {
"name": "Ship Mobile Fast",
"slug": "ship-mobile-fast",
"scheme": "com.shipmobilefast.app",
...
"ios": {
...
"associatedDomains": ["applinks:shipmobilefast.com"],
"bundleIdentifier": "com.shipmobilefast.app",
...
},
"android": {
...
"package": "com.shipmobilefast.app",
...
"intentFilters": [
{
...
"data": [
{
"scheme": "https",
"host": "shipmobilefast.com",
},
{
"scheme": "com.shipmobilefast.app"
}
],
}
]
},...
}
Find an app name for yourself. For example: Ship Mobile Fast.
Then create a slug for your app. For example: ship-mobile-fast.
Then create a bundle identifier for your app. For example: com.shipmobilefast.app.Scheme, Bundle Identifier and Package should be the same.
I am using shipmobilefast.com as my domain. If you donโt have one, you can delete the associatedDomains and data sections. "data": [
{
"scheme": "https",
"host": "shipmobilefast.com",
},
// Don't delete this one ๐
{
"scheme": "com.shipmobilefast.app"
}
]
Then replace the values with your own.
Okay. Now we need to create a Firebase project.
Firebase Setup
Create a Firebase project