Skip to content

Instantly share code, notes, and snippets.

@sachithrrra
Last active May 3, 2025 11:59
Show Gist options
  • Save sachithrrra/1471fc053935031572486ee5f81dc123 to your computer and use it in GitHub Desktop.
Save sachithrrra/1471fc053935031572486ee5f81dc123 to your computer and use it in GitHub Desktop.
expo local apk build on macos
// important docs : https://docs.expo.dev/get-started/set-up-your-environment/
// eas.json
{
"cli": {
"appVersionSource": "remote"
},
"build": {
"development": {
"developmentClient": true,
"distribution": "internal",
"ios": {
"simulator": true
}
},
"preview": {
"android": {
"buildType": "apk"
}
},
"production": {
"autoIncrement": true
}
}
}
// run this
eas build --platform android --profile preview --local
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment