I'm currently developing an app that allows the user to install .apk files on their FireTV using a PC. I'm currently having issues regarding OS: it doesn't see variables (I've tried using format
and normal).
Here is my code:
while True:
event, values = window.read()
ip = values["-IP-"]
path = values ["-PATH-"]
if event == pyg.WINDOW_CLOSED:
exit()
if event == 'Start':
os.system(f'adb push {ip} {path}')