feat: update .gitignore and configure platform-specific settings in app.json

This commit is contained in:
2025-12-20 23:21:19 +01:00
parent 03fa5fb853
commit 36e2cde26b
5 changed files with 13 additions and 3 deletions

6
.gitignore vendored
View File

@@ -1,2 +1,6 @@
node_modules
pnpm-lock.yaml
pnpm-lock.yaml
.expo
ios
android
.env

View File

@@ -30,6 +30,12 @@
"eas": {
"projectId": "00000000-0000-0000-0000-000000000000"
}
},
"ios": {
"bundleIdentifier": "com.devbeni.vegas-blackjack"
},
"android": {
"package": "com.devbeni.vegasblackjack"
}
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 B

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 68 B

After

Width:  |  Height:  |  Size: 65 KiB

View File

@@ -5,8 +5,8 @@
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web"
},
"dependencies": {