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
expo-env.d.ts
# @end expo-cli
# @end expo-cli
service-account-key.json

View File

@@ -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"
}
}
}
}