This would put it in the same league as root explorer, and eliminate the need for other root file managers.
Please please consider it!

Moderators: Hacker, petermad, Stefan2, white
True, but that doesn't prevent you to do it as root exploer does, i.e. with a long list of numbers.ghisler(Author) wrote:I couldn't find out how user names are organized on Android, that's why I haven't added that yet. It seems that each app has their own user name (???).
Code: Select all
root:0
system:1000
radio:1001
bluetooth:1002
graphics:1003
input:1004
audio:1005
camera:1006
log:1007
compass:1008
mount:1009
wifi:1010
dhcp:1014
adb:1011
install:1012
media:1013
shell:2000
cache:2001
diag:2002
net_bt_admin:3001
net_bt:3002
sdcard_rw:1015
vpn:1016
keystore:1017
inet:3003
net_raw:3004
net_admin:3005
misc:9998
nobody:9999
I found this, does it help? :ghisler(Author) wrote:Thanks, that info was very useful! Any idea how to get the owner number for a specific app name?
Code: Select all
final PackageManager pm = getPackageManager();
//get a list of installed apps.
List<ApplicationInfo> packages = pm.getInstalledApplications(
PackageManager.GET_META_DATA);
int UID;
//loop through the list of installed packages and see if the selected
//app is in the list
for (ApplicationInfo packageInfo : packages) {
if(packageInfo.packageName.equals(app_selected)){
//get the UID for the selected app
UID = packageInfo.uid;
}
//Do whatever with the UID
Log.i("Check UID", "UID is: " + UID);