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
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 |
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
Yes, it's possible to run `trunk check --fix` on a **specific file**. | |
Here’s how you can do it: | |
```bash | |
trunk check --fix path/to/your/file.ext | |
``` | |
### 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
The command `trunk check list` lists all the **checkable tools** that Trunk knows about in your project. These are typically linters, formatters, or other code quality tools (like ESLint, Prettier, Flake8, etc.). | |
### Specifically, `trunk check list` shows: | |
* Which tools are **enabled** or **disabled**. | |
* What language(s) each tool supports. | |
* If the tool is **autodiscovered** (based on your project files) or **manually enabled**. | |
* Whether the tool is **managed** by Trunk (i.e. automatically downloaded and installed) or **externally provided**. | |
### Example output: |
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
adb reverse tcp:9090 tcp:9090 | |
# Source: https://docs.infinite.red/reactotron/quick-start/react-native/#troubleshooting |
NewerOlder