Android Question SuperUser lib: Shell and Process difference

peacemaker

Expert
Licensed User
Longtime User
Why does this Shell variant work ?
B4X:
Dim s As String = "input tap 300 300"
Dim su As SuShell
su.Execute(s)
, but much faster variant of the process - no
B4X:
Dim s As String = "input tap 300 300"
Dim su As SuProcess
su.Execute(s)

?
 

peacemaker

Expert
Licensed User
Longtime User
Post can be deleted. The code sample of the lib is clear now - "Acquire" method is clear for what now.
 
Upvote 0
Top