Languages

Menu
Sites
Language
Check application installation

Is there any way to find out if one application from the list returned by GetPackageAppInfoListN is installed by user or is default system application (calculator, calendar ,etc)?

Thanks in advance

 

Responses

2 Replies
youngsik yoon

To do this, GetPackageInfoListN() looks proper method for you.

So get PackageInfo using this function and check its IsDownloaded().

https://developer.tizen.org/help/index.jsp?topic=%2Forg.tizen.native.apireference%2FclassTizen_1_1App_1_1Package_1_1PackageInfo.html

Or use GetPackageInfoListN() with filter key "http://tizen.org/package/downloaded". 

I found sample code. Please refer to 

https://developer.tizen.org/help/index.jsp?topic=%2Forg.tizen.native.appprogramming%2Fhtml%2Fguide%2Fapp%2Fpackage_filter.htm

 

 

Byron Gavras

Thank you youngsik yoon.

This is what i was looking for.