Remove the AppContextGetPackage
authorHwankyu Jhun <h.jhun@samsung.com>
Tue, 7 Feb 2017 11:13:34 +0000 (20:13 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Wed, 8 Feb 2017 04:03:57 +0000 (13:03 +0900)
The AppContextGetPackage function is unnecessary.
We use the AppContextGetAppId function instead of
the AppContextGetPackage function.

Change-Id: I9d27bf95e8038c2e360366e7791181a6b0a2e687
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/Tizen.Applications.Common/Interop/Interop.ApplicationManager.cs

index d5f6f26..ec2d291 100755 (executable)
@@ -121,10 +121,6 @@ internal static partial class Interop
         internal static extern ErrorCode AppContextDestroy(IntPtr handle);
         //int app_context_destroy(app_context_h app_context)
 
-        [DllImport(Libraries.AppManager, EntryPoint = "app_context_get_package")]
-        internal static extern ErrorCode AppContextGetPackage(IntPtr handle, out string package);
-        //int app_context_get_package (app_context_h app_context, char **package);
-
         [DllImport(Libraries.AppManager, EntryPoint = "app_context_get_app_id")]
         internal static extern ErrorCode AppContextGetAppId(IntPtr handle, out string applicationId);
         //int app_context_get_app_id(app_context_h app_context, char **app_id)