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
ro.secure=0 | |
ro.allow.mock.location=1 | |
ro.debuggable=1 | |
persist.sys.usb.config=adb | |
ro.adb.secure=0 |
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
#!/usr/bin/env python3 | |
import os | |
import stat | |
import argparse | |
template_fcgi = '''#!/usr/bin/env python3 | |
from flup.server.fcgi import WSGIServer | |
from %s import app |