From db43c7c9cf98a869a4614389c4674ffadbcfdd9c Mon Sep 17 00:00:00 2001 From: Alessandro Astone Date: Mon, 18 Aug 2025 12:41:04 +0200 Subject: [PATCH] main: Default to A13 Following Waydroid which now defaults to A13 --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index d76f415..9918e43 100755 --- a/main.py +++ b/main.py @@ -210,7 +210,7 @@ def interact(): Choice(name="Android 13", value="13"), Choice(name="Exit", value=None) ], - default="11", + default="13", ).execute() if not android_version: exit() @@ -288,7 +288,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