I am trying to give access to a file I have written in one app to another app.
chgrp
is not available in the adb shell (command 'chgrp' not found
)
I have installed BusyBox but in order to get access to chgrp
.
For example I use the command chown app_79 file.txt
and it works.
But when I try chgrp app_79 file.txt
it always returns something like chgrp: unknown group app_79
I Googled a bunch and found that most linux systems have a file /etc/group
which stores the group information for that system, but it is not present in Android.