Archived:Group folder remains after uninstallation of application (Known Issue)
hamishwillee
(Talk | contribs) m (Hamishwillee - Bot update - Fix metadata) |
|||
| (14 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
| − | {{ | + | {{Archived|timestamp=20120216105234|user=roy.debjit| }} |
| − | + | [[Category:Symbian C++]][[Category:S60 3rd Edition (initial release)]][[Category:Known Issue]][[Category:Symbian]] | |
| − | + | {{Abstract |After an application that is installed in a group folder is uninstalled, the group folder remains on the device. The folder has to be deleted manually.}} | |
| − | {| | + | {{ArticleMetaData <!-- v1.2 --> |
| − | |- | + | |sourcecode= <!-- Link to example source code (e.g. [[Media:The Code Example ZIP.zip]]) --> |
| − | | | + | |installfile= <!-- Link to installation file (e.g. [[Media:The Installation File.sis]]) --> |
| − | | | + | |devices= All |
| − | |- | + | |sdk= <!-- SDK(s) built and tested against (e.g. [http://linktosdkdownload/ Nokia Qt SDK 1.1]) --> |
| − | | | + | |platform= S60 2nd Edition, S60 3rd Edition |
| − | | | + | |devicecompatability= <!-- Compatible devices (e.g.: All* (must have GPS) ) --> |
| − | |- | + | |dependencies= <!-- Any other/external dependencies e.g.: Google Maps Api v1.0 --> |
| − | | | + | |signing= <!-- Empty or one of Self-Signed, DevCert, Manufacturer --> |
| − | | | + | |capabilities= <!-- Capabilities required by the article/code example (e.g. Location, NetworkServices. --> |
| − | |} | + | |keywords= <!-- APIs, classes and methods (e.g. QSystemScreenSaver, QList, CBase --> |
| + | |language= <!-- Language category code for non-English topics - e.g. Lang-Chinese --> | ||
| + | |translated-by= <!-- [[User:XXXX]] --> | ||
| + | |translated-from-title= <!-- Title only --> | ||
| + | |translated-from-id= <!-- Id of translated revision --> | ||
| + | |review-by= <!-- After re-review: [[User:username]] --> | ||
| + | |review-timestamp= <!-- After re-review: YYYYMMDD --> | ||
| + | |update-by= <!-- After significant update: [[User:username]]--> | ||
| + | |update-timestamp= <!-- After significant update: YYYYMMDD --> | ||
| + | |creationdate= 20080516 | ||
| + | |author= [[User:Technical writer 1]] | ||
| + | <!-- The following are not in current metadata --> | ||
| + | |id= KIS000962 | ||
| + | }} | ||
==Description== | ==Description== | ||
| − | |||
The following code shows how to install your application into a group folder. | The following code shows how to install your application into a group folder. | ||
| Line 25: | Line 37: | ||
embeddability=KAppNotEmbeddable; | embeddability=KAppNotEmbeddable; | ||
newfile=KAppDoesNotSupportNewFile; | newfile=KAppDoesNotSupportNewFile; | ||
| − | + | ... | |
| − | + | ||
| − | + | ||
//Group folder where you want to install your application | //Group folder where you want to install your application | ||
group_name ="Folder name"; | group_name ="Folder name"; | ||
| Line 33: | Line 43: | ||
</code> | </code> | ||
| − | ==How to reproduce | + | ==How to reproduce== |
| − | + | # Install an application into a group folder. | |
| − | + | # Uninstall the application. | |
| − | + | ||
| − | + | ||
You can see the empty group folder after the application has been uninstalled. | You can see the empty group folder after the application has been uninstalled. | ||
==Solution== | ==Solution== | ||
| − | |||
No solution exists. | No solution exists. | ||
| − | [[ | + | <!-- Translation --> [[zh-hans:Archived:程序卸载后仍保留文件夹]] |
Latest revision as of 09:53, 7 September 2012
Archived: This article is archived because it is not considered relevant for third-party developers creating commercial solutions today. If you think this article is still relevant, let us know by adding the template {{ReviewForRemovalFromArchive|user=~~~~|write your reason here}}.
After an application that is installed in a group folder is uninstalled, the group folder remains on the device. The folder has to be deleted manually.
Article Metadata
Tested with
Devices(s): All
Compatibility
Platform(s): S60 2nd Edition, S60 3rd Edition
Article
Created: User:Technical writer 1
(16 May 2008)
Last edited: hamishwillee
(07 Sep 2012)
Description
The following code shows how to install your application into a group folder.
RESOURCE APP_REGISTRATION_INFO
{
app_file="application_name";
embeddability=KAppNotEmbeddable;
newfile=KAppDoesNotSupportNewFile;
...
//Group folder where you want to install your application
group_name ="Folder name";
}
How to reproduce
- Install an application into a group folder.
- Uninstall the application.
You can see the empty group folder after the application has been uninstalled.
Solution
No solution exists.

