Skip to content

Commit

Permalink
Fixing builds
Browse files Browse the repository at this point in the history
  • Loading branch information
vedmant committed Mar 7, 2024
1 parent f7a981d commit c16a959
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,5 @@ yarn-error.*
ios
android
my-upload-key.keystore
*.aab
*.apk
2 changes: 1 addition & 1 deletion app.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"bundleIdentifier": "com.vedmant.running-time"
},
"android": {
"ersionCode": 3145732,
"versionCode": 3145732,
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
Expand Down
Binary file modified bun.lockb
Binary file not shown.
10 changes: 10 additions & 0 deletions credentials.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"android": {
"keystore": {
"keystorePath": "my-upload-key.keystore",
"keystorePassword": "123456",
"keyAlias": "my-key-alias",
"keyPassword": "123456"
}
}
}
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,19 @@
"scripts": {
"dev": "expo start",
"android": "expo run:android",
"android-build": "expo run:android --variant release",
"android-build": "eas build -p android --local",
"ios": "expo run:ios --device",
"ios-build": "expo run:ios --device --configuration Release"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.22.3",
"@react-native-community/datetimepicker": "^7.6.2",
"@react-native-async-storage/async-storage": "1.21.0",
"@react-native-community/datetimepicker": "7.6.1",
"@react-navigation/bottom-tabs": "^6.5.16",
"@react-navigation/native": "^6.1.14",
"@react-navigation/stack": "^6.3.25",
"dayjs": "^1.11.10",
"expo": "~50.0.8",
"expo": "~50.0.11",
"expo-dev-client": "~3.3.9",
"expo-status-bar": "~1.11.1",
"expo-updates": "~0.24.11",
"lodash": "^4.17.21",
Expand All @@ -31,7 +32,7 @@
"react-native-root-toast": "^3.5.1",
"react-native-safe-area-context": "4.8.2",
"react-native-screens": "~3.29.0",
"react-native-svg": "^15.0.0",
"react-native-svg": "14.1.0",
"react-native-tab-view": "^3.5.2",
"typescript": "^5.3.0",
"zustand": "^4.5.2"
Expand Down
2 changes: 2 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ Demo login: `[email protected]` and password: `123456`

### Installation ###

Install Bun if not installed `curl -fsSL https://bun.sh/install | bash`

```bash
git clone https://github.com/vedmant/running-time-react-expo # To clone repo
cd running-time-react-expo
Expand Down

0 comments on commit c16a959

Please sign in to comment.