We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb53b2c commit 4ac6887Copy full SHA for 4ac6887
main.py
@@ -87,7 +87,7 @@ def adbShell(self):
87
global adbpath
88
subprocess.call((f'{adbpath} disconnect'), shell=True)
89
subprocess.call((f'{adbpath} connect 127.0.0.1:58526'), shell=True)
90
- os.system('start cmd /k adb shell')
+ os.system(f'start cmd /k {adbpath} shell')
91
self.status.set('Finished opening adb shell')
92
93
def installURL(self, link, name='app'):
@@ -153,6 +153,8 @@ def resource_path(relative_path):
153
except :
154
adbpath = resource_path('adb.exe')
155
156
+ adbpath = os.path.abspath(adbpath)
157
+
158
root = tk.Tk()
159
root.geometry(f'{WIDTH}x{HEIGHT}')
160
root.resizable(False, False)
0 commit comments