Merge "[Common] Initialize e-dbus" into tizen
[apps/native/starter.git] / src / package_mgr.c
1 /*
2  * Copyright (c) 2000 - 2015 Samsung Electronics Co., Ltd. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <vconf.h>
18 #include <pkgmgr-info.h>
19
20 #include "package_mgr.h"
21 #include "util.h"
22
23
24
25 bool package_mgr_exist_app(char *appid)
26 {
27         int ret = 0;
28         pkgmgrinfo_appinfo_h handle = NULL;
29
30         ret = pkgmgrinfo_appinfo_get_appinfo(appid, &handle);
31         if (PMINFO_R_OK != ret || NULL == handle) {
32                 _SECURE_D("%s doesn't exist in this binary", appid);
33                 return false;
34         }
35
36         pkgmgrinfo_appinfo_destroy_appinfo(handle);
37
38         return true;
39 }
40
41
42