Check out WSATools by Simone Franco: https://www.microsoft.com/store/apps/9N4P75DXL6FG
- Launch Windows Subsystem for Android.
#!/usr/bin/env bash | |
# | |
# This program is free software: you can redistribute it and/or modify it | |
# under the terms of the GNU General Public License as published by the | |
# Free Software Foundation, either version 3 of the License, or (at your | |
# option) any later version. Please see LICENSE.txt at the top level of | |
# the source code distribution for details. | |
# | |
# @package install_cachet.sh | |
# @author <[email protected]> |
Check out WSATools by Simone Franco: https://www.microsoft.com/store/apps/9N4P75DXL6FG
Some stock ROMs don't want you using audio logcat level 7 which is required for the audio logs... so for that? You'll need to root your stock ROM with something like Magisk and then use adb with these commands: | |
adb shell | |
su | |
stop | |
setprop sys.init_log_level 7 | |
logcat -G 4M | |
start | |
exit |
import os | |
import requests | |
import time | |
from pprint import pprint | |
def poll_job(s, redash_url, job): | |
# TODO: add timeout | |
while job['status'] not in (3,4): | |
response = s.get('{}/api/jobs/{}'.format(redash_url, job['id'])) |