I am trying to copy files from /data/app folder, but facing the following issues, please advice.
Process suProcess = Runtime.getRuntime().exec("su");
DataOutputStream os = new DataOutputStream(suProcess.getOutputStream);
- Error is, Required : android.os.Process, Found : java.lang.Process in the first line of the code.
- Cannot resolve symbol, getOutputStream in the second line.
Kindly let me know why these issues occur, and how do I resolve them. Thanks.