remote control - android teamviewer intent with parameters -


is there way start in android "teamviewer" app (or similar app let remote control phone) specifing "user id" , password required control device?

for example:

intent = getpackagemanager().getlaunchintentforpackage("com.teamviewer"); i.putextra("id_key", "123456789"); i.putextra("password", "1234"); startactivity(i); 

thank you

intent = getactivity().getpackagemanager().getlaunchintentforpackage("com.teamviewer.teamviewer.market.mobile");       i.putextra("id_key", "123456789");       i.putextra("password", "1234");       startactivity(i); 

Comments

Popular posts from this blog

css - Which browser returns the correct result for getBoundingClientRect of an SVG element? -

gcc - Calling fftR4() in c from assembly -

Function that returns a formatted array in VBA -