Categories: S60 | Code Examples | Python | How To
This page was last modified 15:43, 16 May 2008.
How to list all the installed applications
From Forum Nokia Wiki
This code snippets helps us to list all the installed applications on a Mobile Device using Python
The extension that offers this functionality is applist.
Applist:
This is a S60 python extension module for getting list of applications info.
The applist function returns a list of tuples (Uid, caption, fullName). Uid is an integer.
The code below is used to list applications
import applist apps = applist.applist()
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| retrieve GSM cell id | ibec | Symbian Networking & Messaging | 274 | 2008-07-10 16:42 |
| Nokia N70 Application Install | mew1979 | General Symbian C++ | 4 | 2006-09-02 17:50 |
| SDK "not available" under .NET or VS 2005 | Jeepy | Symbian Tools & SDKs | 4 | 2008-03-31 18:20 |
| Transparency Hello World | lilovss | General Symbian C++ | 0 | 2006-12-05 16:32 |
| Installing applications from Gallery | ondracek.lukas | Mobile Java Tools & SDKs | 6 | 2007-10-17 14:24 |
