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
#!/bin/bash | |
# Linux ISO Updater Script | |
# Updates ISO files to latest minor/patch versions while preserving major versions | |
set -e | |
# Configuration | |
ISO_DIR="$(pwd)" | |
DOWNLOAD_DIR="" |
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
import re | |
from pythonforandroid.logger import info | |
""" | |
HOOK for Android Theme | |
""" | |
NEW_THEME = "@style/Theme.AppCompat.Light" | |