|
|
|
|
@ -215,7 +215,7 @@ def interact():
|
|
|
|
|
Choice(name="Android 13", value="13"),
|
|
|
|
|
Choice(name="Exit", value=None)
|
|
|
|
|
],
|
|
|
|
|
default="11",
|
|
|
|
|
default="13",
|
|
|
|
|
).execute()
|
|
|
|
|
if not android_version:
|
|
|
|
|
exit()
|
|
|
|
|
@ -234,11 +234,10 @@ def interact():
|
|
|
|
|
if not action:
|
|
|
|
|
exit()
|
|
|
|
|
|
|
|
|
|
install_choices = ["gapps", "microg", "libndk", "libhoudini", "magisk", "smartdock", "fdroidpriv","gps"]
|
|
|
|
|
install_choices = ["gapps", "microg", "libndk", "libhoudini", "magisk", "smartdock", "fdroidpriv", "widevine", "gps",]
|
|
|
|
|
baud_rate_choices = ["9600", "19200", "38400", "57600", "115200"]
|
|
|
|
|
hack_choices = []
|
|
|
|
|
if android_version=="11":
|
|
|
|
|
install_choices.extend(["widevine", ])
|
|
|
|
|
hack_choices.extend(["nodataperm", "hidestatusbar"])
|
|
|
|
|
|
|
|
|
|
if action == "Install":
|
|
|
|
|
@ -308,7 +307,7 @@ def main():
|
|
|
|
|
parser.add_argument('-a', '--android-version',
|
|
|
|
|
dest='android_version',
|
|
|
|
|
help='Specify the Android version',
|
|
|
|
|
default="11",
|
|
|
|
|
default="13",
|
|
|
|
|
choices=["11", "13"])
|
|
|
|
|
|
|
|
|
|
# android command
|
|
|
|
|
|