I try to access all phone number that calling me in Q python.
I wrote this code:
import androidhelper
w=1
while (w == 1):
droid = androidhelper.Android()
droid.startTrackingPhoneState()
phonest = droid.readPhoneState()
number = phonest[2]
if number != None:
print(number)
I have not find any result when other call me or I call other my device is lg k 10 2 sim.
What can I do?