https://docs.expo.dev/eas-update/eas-cli/#republish-a-previous-update-within-a-branch
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
| go to settings/environments/staging | |
| Activate branch tracking and set the branch | |
| save it | |
| got to /deployments and deploy it with the name of the branch set |
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
| npx playwright test | |
| Runs the end-to-end tests. | |
| npx playwright test --ui | |
| Starts the interactive UI mode. | |
| npx playwright test --project=chromium | |
| Runs the tests only on Desktop Chrome. | |
| npx playwright test example |
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
| # eas update --channel [channel] --message "Description of your update" | |
| # When you run `eas update --channel qa`, it publishes your current local working directory** to the QA channel, including the variables set on .env!! | |
| # CLEAR CACHE is abosolute fundamental!!!! | |
| eas update --channel qa --message "Description of your update" --clear-cache | |
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
| https://www.npmjs.com/package/@testing-library/user-event |
you have to open the terminal over the branch that you want to send the changes
eas update --channel qa
The version of the code been pushed must to match with the app the build that you want to update, for example if the build is in the version 2.1.4 in your package json it has to be the same version
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
| ## **How to Use AAPT to Check APK Permissions** | |
| ### **1. Build Your APK** | |
| Make sure you have a built APK, for example: | |
| ``` | |
| android/app/build/outputs/apk/release/app-release.apk | |
| ``` | |
| ### **2. Find Your AAPT Tool** | |
| On macOS, with a typical Android Studio install, the path is: |
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
| git push origin -d [branch_name] | |
| git push origin -d develop |
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
| vercel env add | |
| #Source: https://vercel.com/docs/cli/env#usage |
NewerOlder