You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: openandroidinstaller/views/select_view.py
+48-1Lines changed: 48 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,8 @@
25
25
Row,
26
26
Text,
27
27
icons,
28
+
TextButton,
29
+
AlertDialog,
28
30
FilePicker,
29
31
FilePickerResultEvent,
30
32
)
@@ -48,6 +50,25 @@ def __init__(
48
50
self.on_confirm=on_confirm
49
51
50
52
defbuild(self):
53
+
# dialog box to explain OS images and recovery
54
+
self.dlg_explain_images=AlertDialog(
55
+
modal=True,
56
+
title=Text("What is an OS image and recovery and why do I need it?"),
57
+
content=Markdown(
58
+
"""
59
+
To do this, tap seven times on the build number in the 'System'- or 'About the phone'-Menu in Settings. You can also use the phones own search to look for `build number`.
60
+
Then go back to the main menu and look for 'developer options'. You can also search for it in your phone.
61
+
When you are in developer options, toggle OEM unlocking and USB-Debugging. If your phone is already connected to your PC, a pop-up might appear. Allow USB debugging in the pop-up on your phone.
0 commit comments