Skip to content

Commit

Permalink
fix: add apk preview in eas.json
Browse files Browse the repository at this point in the history
  • Loading branch information
geeekgod committed Feb 20, 2023
1 parent 7ea20dc commit e82a728
Showing 1 changed file with 21 additions and 16 deletions.
37 changes: 21 additions & 16 deletions eas.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,25 @@
{
"build": {
"production": {
"node": "16.14.0"
},
"preview": {
"extends": "production",
"distribution": "store"
},
"development": {
"extends": "production",
"developmentClient": true,
"distribution": "store"
"build": {
"production": {
"node": "16.14.0"
},
"preview": {
"extends": "production",
"distribution": "store"
},
"apk": {
"android": {
"buildType": "apk"
}
},
"cli": {
"version": ">= 0.52.0",
"requireCommit": true
"development": {
"extends": "production",
"developmentClient": true,
"distribution": "store"
}
}
},
"cli": {
"version": ">= 0.52.0",
"requireCommit": true
}
}

0 comments on commit e82a728

Please sign in to comment.