You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
251 B
12 lines
251 B
import pyperclip
|
|
|
|
from adb import Device
|
|
|
|
|
|
def open_youtube(Device, link):
|
|
Device.shell(*("am start -a android.intent.action.VIEW".split(" ")), link)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
d = Device.prim_device()
|
|
open_youtube(d, pyperclip.paste())
|