modify manifest for the sample
authorjungmin76.park <jungmin76.park@samsung.com>
Mon, 7 Jan 2013 08:56:16 +0000 (17:56 +0900)
committerjungmin76.park <jungmin76.park@samsung.com>
Mon, 7 Jan 2013 08:59:21 +0000 (17:59 +0900)
Change-Id: Icd11145ba2843ce57f547e6cf429e191e1c29865
Signed-off-by: jungmin76.park <jungmin76.park@samsung.com>
project/manifest.xml
project/src/LiveboxViewer.cpp

index 7bc746e..e6f4aef 100644 (file)
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
 <Manifest xmlns="http://schemas.tizen.org/2012/06/manifest">
-    <Id>rp9Sxzp10l</Id>
+    <Id>$(manifestAppId)</Id>
     <Version>1.0.0</Version>
     <Type>C++App</Type>
     <Vendors/>
         <ApiVersion>2.1</ApiVersion>
         <Secret/>
         <Privileges/>
-        <UiApp Default="True" ExecutableName="LiveboxViewer" MainmenuVisible="True">
+        <UiApp Default="True" ExecutableName="$(projectName)" MainmenuVisible="True">
             <UiScalability BaseScreenSize="Normal" CoordinateSystem="Logical" LogicalCoordinate="720"/>
             <UiTheme SystemTheme="White"/>
             <Names>
-                <Name Locale="eng-GB">LiveboxViewer</Name>
+                <Name Locale="eng-GB">$(projectName)</Name>
             </Names>
             <Icons>
                 <Icon Section="MainMenu" Type="Xhigh">mainmenu.png</Icon>
index 7ef7cb2..77c7420 100644 (file)
@@ -92,7 +92,7 @@ LiveboxViewerApp::PrintLiveboxProviderInfos()
        AppAssertf(pLiveboxManager, "LiveboxManager creation failed.");
 
        std::unique_ptr<IList> pLiveboxProviderInfos(pLiveboxManager->GetLiveboxProviderInfoListN() );
-       TryReturnVoid(pLiveboxProviderInfos.get(), "GetLiveboxProviderInfosN returns null!!" );
+       TryReturnVoid(pLiveboxProviderInfos.get(), "GetLiveboxProviderInfoListN returns null!!" );
        AppLog("All livebox count (%d)", pLiveboxProviderInfos->GetCount() );
 
        for(int i = 0; i < pLiveboxProviderInfos->GetCount(); i++)