From 55be04f3ddffeb018712dbe7ea5139aeab8881ff Mon Sep 17 00:00:00 2001 From: Kenneth Date: Sun, 29 Sep 2024 12:02:57 +0100 Subject: [PATCH] chore: add service account key --- .gitignore | 4 +++- eas.json | 42 +++++++++++++++++++++++------------------- 2 files changed, 26 insertions(+), 20 deletions(-) diff --git a/.gitignore b/.gitignore index 6623142..7dce7b6 100644 --- a/.gitignore +++ b/.gitignore @@ -17,4 +17,6 @@ web-build/ # The following patterns were generated by expo-cli expo-env.d.ts -# @end expo-cli \ No newline at end of file +# @end expo-cli + +service-account-key.json diff --git a/eas.json b/eas.json index a27aced..d78fa66 100644 --- a/eas.json +++ b/eas.json @@ -1,21 +1,25 @@ { - "cli": { - "version": ">= 12.5.1", - "appVersionSource": "remote" - }, - "build": { - "development": { - "developmentClient": true, - "distribution": "internal" - }, - "preview": { - "distribution": "internal" - }, - "production": { - "autoIncrement": true - } - }, - "submit": { - "production": {} - } + "cli": { + "version": ">= 12.5.1", + "appVersionSource": "remote" + }, + "build": { + "development": { + "developmentClient": true, + "distribution": "internal" + }, + "preview": { + "distribution": "internal" + }, + "production": { + "autoIncrement": true + } + }, + "submit": { + "production": { + "android": { + "serviceAccountKeyPath": "./service-account-key.json" + } + } + } }