From 7c601101a93ddaf1b47e730578fbc275f492716c Mon Sep 17 00:00:00 2001 From: DR497 <47689875+dr497@users.noreply.github.com> Date: Tue, 14 Nov 2023 18:03:29 +0800 Subject: [PATCH] fix mobile prod command --- app.json | 2 +- eas.json | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app.json b/app.json index e48c968..5a38786 100644 --- a/app.json +++ b/app.json @@ -16,7 +16,7 @@ "foregroundImage": "./assets/adaptive-icon.png", "backgroundColor": "#000000" }, - "versionCode": 4 + "versionCode": 7 }, "owner": "sns-manager" } diff --git a/eas.json b/eas.json index 7e1cd99..9932b37 100644 --- a/eas.json +++ b/eas.json @@ -24,7 +24,7 @@ "node": "18.15.0", "autoIncrement": true, "android": { - "buildType": "apk" + "buildType": "app-bundle" }, "env": { "SOLANA_RPC_URL": "https://helius-proxy.bonfida.com" diff --git a/package.json b/package.json index 8c918fe..89b1a13 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "build:xnft": "XNFT=true expo export:web", "build:web": "WEB=true expo export:web && cp _headers web-build/", "build:mobile:dev": "eas build -p android --profile preview --local", - "build:mobile:prod": "eas build -p android --profile production --local", + "build:mobile:prod": "eas build -p android --profile production", "start": "yarn build:xnt && npx xnft web", "bundle": "yarn build:xnft && npx xnft bundle", "dev": "GENERATE_SOURCEMAP=false expo start --clear --web & npx xnft --iframe http://localhost:19006",