This file contains 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
{ | |
"files.exclude": { | |
".vscode": false, | |
".gitignore": false, | |
".metadata": true, | |
"build": true, | |
"test": true, | |
".flutter-plugins": true, | |
".flutter-plugins-dependencies": true, | |
"LICENSE": true, |
This file contains 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
name: Android CI | |
permissions: write-all | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
on: | |
push: |
This file contains 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
Comando que usei para executar a aplicação: | |
```bash | |
npx react-native run-android | |
``` | |
Saída do terminal: | |
```bash | |
info Running jetifier to migrate libraries to AndroidX. You can disable it using "--no-jetifier" flag. | |
Jetifier found 1162 file(s) to forward-jetify. Using 4 workers... | |
info Starting JS server... |
This file contains 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
print(f'\033[1;33m{"Algoritmo elaborado por Anderson André": ^60} \033[m \n' | |
f'\033[1;33m{"VALIDADOR DE CPF":-^60} \n\n' | |
f'Esse é um validador de CPF.\n' | |
f'1- Apenas números.\n' | |
f'2- Digitar os onze dígitos do CPF.\n' | |
f'3- Não será considerado números após o 11º digitado.\n' | |
f'4- Pra sair digite Sair.\033[m \n') | |
CPF = 0 |