#include <FBaseInternalTypes.h>
#include <FBase_StringConverter.h>
#include "FApp_AppInfo.h"
-#include "FApp_Aul.h"
+#include "FAppPkg_PackageManagerImpl.h"
#include "FApp_AppArg.h"
#include "FShell_NotificationManagerImpl.h"
#include "FShell_NotificationManagerProxy.h"
using namespace Tizen::Base;
using namespace Tizen::App;
+using namespace Tizen::App::Package;
using namespace Tizen::Shell;
extern "C" int service_create_request(bundle *data, service_h *service);
memset(buffer, 0, 256);
- bool b = _Aul::IsInstalled(appId);
+ bool b = _PackageManagerImpl::IsAppInstalled(appId);
SysTryReturnResult(NID_APP, b == true, E_APP_NOT_INSTALLED, "The application %ls is not installed", appId.GetPointer());
int
_NotificationManagerImpl::GetBadgeNumber(const AppId& appId) const
{
- bool b = _Aul::IsInstalled(appId);
+ bool b = _PackageManagerImpl::IsAppInstalled(appId);
SysTryReturn(NID_APP, b == true, -1, E_OBJ_NOT_FOUND, "[E_OBJ_NOT_FOUND] The application %ls is not installed",
appId.GetPointer());