Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update expo sdk, other packages and delete yarn.lock (#5) #18

Merged
merged 1 commit into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -104,13 +104,14 @@ buck-out/

# Bundle artifacts
*.jsbundle

# CocoaPods
/ios/Pods/

# Expo

.expo/
web-build/
dist/

# @end expo-cli
# @end expo-cli

# if you intend to use CNG / Prebuild.
/Android
/ios
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

## Running the application

First time? You will be asked to sign into [EAS account (Expo)](https://expo.dev/signup).

```
expo start
npx expo
```

When expo runs correctly it will give you multiple options to look at the app. [Here are some ways to simulate the app](#setup-simulators).
Expand Down
43 changes: 20 additions & 23 deletions app.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,22 @@
{
"expo": {
"name": "ISFiT23",
"icon": "./src/assets/launch_screen.png",
"slug": "app-isfit-23",
"version": "1.1.0",
"ios": {
"image": "latest",
"bundleIdentifier": "com.isfit.isfit23",
"buildNumber": "1.1.0"
},
"android": {
"package": "com.isfit.isfit23",
"versionCode": 3
},
"assetBundlePatterns": [
"**/*"
],
"extra": {
"eas": {
"projectId": "4cec8075-0840-4f37-8cbb-cd18f513a37f"
}
}
}
"expo": {
"name": "ISFiT23",
"icon": "./src/assets/launch_screen.png",
"slug": "app-isfit-23",
"version": "1.1.0",
"ios": {
"bundleIdentifier": "com.isfit.isfit23",
"buildNumber": "1.1.0"
},
"android": {
"package": "com.isfit.isfit23",
"versionCode": 3
},
"assetBundlePatterns": ["**/*"],
"extra": {
"eas": {
"projectId": "4cec8075-0840-4f37-8cbb-cd18f513a37f"
}
}
}
}
Loading