See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
Using adb, create a backup of the app using the following command:
adb backup -f freeotp-backup.ab -apk org.fedorahosted.freeotp| #!/bin/bash | |
| check_char='\xE2\x9C\x93' | |
| cross_char='\xE2\x9D\x8C' | |
| green='\033[0;32m' | |
| red='\033[0;31m' | |
| nc='\033[0m' | |
| check="$green$check_char$nc" | |
| cross="$red$cross_char$nc" | |
| errors=0 |