We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi Forum,
In streamline tool, I don't see any way to pass command line argument to the app when launching. Because of this I need to rebuild the apk and reinstall every time I need to change the command line argument.
Is there a work around to this problem?
Thank you,
rchakena
Hi Andrew,
I tried these steps and reached till step7. But when I run step 7. i.e ./gatord --wait-process <YourAppsPackage> I get the below error.
Streamline gatord version 800 (Streamline v8.0)Default perf mmap size set to 128 pages (512kb)Error creating server TCP socket (1 : Operation not permitted)
Any other settings that need to be changed. The security_perf_harden has been changed to 0.
1|t2s:/ $ getprop | grep perf_harden[security.perf_harden]: [0]
Looks like gator couldn't listen on TCP for incoming connections from streamline. You can instruct it to use unix domain sockets instead. Try
$ ./gatord --port uds --wait-process <YourAppsPackage>
Andrew
This worked! Thank you.