chore: add service account key

This commit is contained in:
2024-09-29 12:02:57 +01:00
parent 25ad3c45b7
commit 55be04f3dd
2 changed files with 26 additions and 20 deletions

4
.gitignore vendored
View File

@@ -17,4 +17,6 @@ web-build/
# The following patterns were generated by expo-cli # The following patterns were generated by expo-cli
expo-env.d.ts expo-env.d.ts
# @end expo-cli # @end expo-cli
service-account-key.json

View File

@@ -1,21 +1,25 @@
{ {
"cli": { "cli": {
"version": ">= 12.5.1", "version": ">= 12.5.1",
"appVersionSource": "remote" "appVersionSource": "remote"
}, },
"build": { "build": {
"development": { "development": {
"developmentClient": true, "developmentClient": true,
"distribution": "internal" "distribution": "internal"
}, },
"preview": { "preview": {
"distribution": "internal" "distribution": "internal"
}, },
"production": { "production": {
"autoIncrement": true "autoIncrement": true
} }
}, },
"submit": { "submit": {
"production": {} "production": {
} "android": {
"serviceAccountKeyPath": "./service-account-key.json"
}
}
}
} }