User talk:Forum Nokia KB
Hi!
Article TSS000257 TSS000257 - How can I get a list of all applications currently installed on a phone? have оne small bug:
If application UID begin with char (a/b/c/d/e/f) then output UID printed to file begin with "ffffffff" prefix.
Example, original uid e602d449 - in file we have ffffffffe602d449
Solution:
replace
buf.AppendNum(aInfo.iUid.iUid, EHex);
with
buf.AppendNum((TUint)appInfo.iUid.iUid, EHex);
--- Anton Mihailov

