Last active
May 3, 2025 11:59
-
-
Save sachithrrra/1471fc053935031572486ee5f81dc123 to your computer and use it in GitHub Desktop.
expo local apk build on macos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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