From 051d2285794bf26c81dc8b2aae279f6b452b7f62 Mon Sep 17 00:00:00 2001 From: James Pepper Date: Wed, 10 Jun 2026 09:40:49 +0100 Subject: [PATCH] Use Android app bundle in EAS build config Add "buildType": "app-bundle" to the Android profile in eas.json so EAS builds produce Android App Bundles (AAB) rather than APKs. This enables Play Store distribution and optimized delivery; no other configuration changes were made. --- eas.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eas.json b/eas.json index 0a435ce..3f34835 100644 --- a/eas.json +++ b/eas.json @@ -31,7 +31,8 @@ "autoIncrement": true, "node": "20.19.4", "android": { - "image": "ubuntu-22.04-jdk-17-ndk-r25b" + "image": "ubuntu-22.04-jdk-17-ndk-r25b", + "buildType": "app-bundle" }, "ios": { "simulator": false,