Add Expo assets and Android edge-to-edge config

This commit is contained in:
Noctura 2026-03-24 14:37:22 +01:00
parent a0ca117ac8
commit 93fbd87aec
5 changed files with 33 additions and 3 deletions

View file

@ -11,7 +11,9 @@
"resizeMode": "contain",
"backgroundColor": "#080808"
},
"assetBundlePatterns": ["**/*"],
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.yourname.setlist",
@ -22,6 +24,7 @@
}
},
"android": {
"edgeToEdgeEnabled": true,
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#080808"
@ -30,7 +33,8 @@
"versionCode": 1,
"permissions": [
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE"
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.RECORD_AUDIO"
]
},
"plugins": [
@ -40,6 +44,11 @@
"photosPermission": "SETLIST braucht Zugriff auf deine Fotos, um Konzerttickets und Bilder zu speichern."
}
]
]
],
"extra": {
"eas": {
"projectId": "98d3e4e3-6040-4e4f-933d-ca3a6b1b6925"
}
}
}
}

BIN
assets/adaptive-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

BIN
assets/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

BIN
assets/splash.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 B

21
eas.json Normal file
View file

@ -0,0 +1,21 @@
{
"cli": {
"version": ">= 18.4.0",
"appVersionSource": "remote"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal"
},
"preview": {
"distribution": "internal"
},
"production": {
"autoIncrement": true
}
},
"submit": {
"production": {}
}
}