From 93fbd87aecf3f1d4af8da9f072a2f22e9a0309ad Mon Sep 17 00:00:00 2001 From: Noctura Date: Tue, 24 Mar 2026 14:37:22 +0100 Subject: [PATCH] Add Expo assets and Android edge-to-edge config --- app.json | 15 ++++++++++++--- assets/adaptive-icon.png | Bin 0 -> 68 bytes assets/icon.png | Bin 0 -> 68 bytes assets/splash.png | Bin 0 -> 68 bytes eas.json | 21 +++++++++++++++++++++ 5 files changed, 33 insertions(+), 3 deletions(-) create mode 100644 assets/adaptive-icon.png create mode 100644 assets/icon.png create mode 100644 assets/splash.png create mode 100644 eas.json diff --git a/app.json b/app.json index 0a4c752..7611c46 100644 --- a/app.json +++ b/app.json @@ -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" + } + } } } diff --git a/assets/adaptive-icon.png b/assets/adaptive-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d0e8873feaee871ae8610ef3389ce9b908bcd2c9 GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcwN$fBwreFf%hTyq|UN QJW!ay)78&qol`;+0FSK>_W%F@ literal 0 HcmV?d00001 diff --git a/assets/icon.png b/assets/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d0e8873feaee871ae8610ef3389ce9b908bcd2c9 GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcwN$fBwreFf%hTyq|UN QJW!ay)78&qol`;+0FSK>_W%F@ literal 0 HcmV?d00001 diff --git a/assets/splash.png b/assets/splash.png new file mode 100644 index 0000000000000000000000000000000000000000..d0e8873feaee871ae8610ef3389ce9b908bcd2c9 GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcwN$fBwreFf%hTyq|UN QJW!ay)78&qol`;+0FSK>_W%F@ literal 0 HcmV?d00001 diff --git a/eas.json b/eas.json new file mode 100644 index 0000000..f4cc4a0 --- /dev/null +++ b/eas.json @@ -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": {} + } +}