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.
13 lines
312 B
13 lines
312 B
import time
|
|
|
|
from adb import Device
|
|
|
|
d = Device.prim_device()
|
|
d.root()
|
|
conn = d.db_connect(
|
|
"/data/data/com.catchingnow.tinyclipboardmanager/databases/clippingnow.db"
|
|
)
|
|
out = conn.execute(
|
|
"INSERT INTO cliphistory (date,history,star) values (?,?,?)",
|
|
[int(time.time() * 1000), "test_test", False],
|
|
)
|