From 4a3f5da52135e84612b3c220856a2577b391fd50 Mon Sep 17 00:00:00 2001 From: billisdead Date: Sun, 3 May 2026 14:22:03 +0200 Subject: [PATCH] build: add eas.json for APK cloud build config --- artifacts/postiz-mobile/eas.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 artifacts/postiz-mobile/eas.json diff --git a/artifacts/postiz-mobile/eas.json b/artifacts/postiz-mobile/eas.json new file mode 100644 index 0000000..7ff8c52 --- /dev/null +++ b/artifacts/postiz-mobile/eas.json @@ -0,0 +1,23 @@ +{ + "cli": { + "version": ">= 16.0.0" + }, + "build": { + "preview": { + "android": { + "buildType": "apk" + } + }, + "production": { + "android": { + "buildType": "app-bundle" + }, + "ios": { + "resourceClass": "m-medium" + } + } + }, + "submit": { + "production": {} + } +}