fixed tutorial for cleaning up account appropriately.
authorIckhee Woo <ickhee.woo@samsung.com>
Tue, 16 Jun 2015 09:09:54 +0000 (18:09 +0900)
committerIckhee Woo <ickhee.woo@samsung.com>
Tue, 16 Jun 2015 09:09:54 +0000 (18:09 +0900)
Change-Id: I10c1a859bcf07f3970a95ca3631f381768e52b2c
Signed-off-by: Ickhee Woo <ickhee.woo@samsung.com>
org.tizen.tutorials/html/native/sync/sync_adapter_tutorial_n.htm
org.tizen.tutorials/html/native/sync/sync_manager_tutorial_n.htm

index a883780..d485c29 100644 (file)
@@ -48,7 +48,7 @@
     </tr>
    </tbody>
  </table>
-       
+
   <h2>Warm-up</h2>
     <p>Become familiar with the Sync Adapter API basics by learning about:</p>
        <ul>
index 8635f0a..8967f7c 100644 (file)
@@ -92,7 +92,7 @@ result = sync_manager_connect();
 </pre>
 </li>
 
-<li>If you want to use an account (track calendar or contact data changes on the device), create the account and the bundle to obtain the parameters for the <span style="font-family: Courier New,Courier,monospace">sync_manager_add_sync_job()</span> function you need later on. 
+<li>If you want to use an account (track calendar or contact data changes on the device), create the account and the bundle to obtain the parameters for the <span style="font-family: Courier New,Courier,monospace">sync_manager_add_sync_job()</span> function you need later on.
 <p>The account handle is not a mandatory parameter, because it is meant for an application that uses the sync manager without an account. For more information, see <a href="../social/account_tutorial_n.htm">Creating and Managing an Account</a> and <a href="../app_framework/bundle_tutorial_n.htm">Managing and Using the Bundle Content</a>.</p>
 
 <pre class="prettyprint">
@@ -127,14 +127,13 @@ result = sync_manager_add_sync_job(NULL, NULL, extra);
 <p>If the sync job addition process succeeds, the <span style="font-family: Courier New,Courier,monospace">SYNC_ERROR_NONE</span> value is returned.</p>
 </li>
 
-<li>When the on-demand sync is no longer needed, remove it with the <span style="font-family: Courier New,Courier,monospace">sync_manager_remove_sync_job()</span> function. If you want to stop using the account too, clean up the account handle. 
+<li>When the on-demand sync is no longer needed, remove it with the <span style="font-family: Courier New,Courier,monospace">sync_manager_remove_sync_job()</span> function. If you want to stop using the account too, clean up the account handle.
 <p>At the end, disconnect from the sync manager and release the resources with the <span style="font-family: Courier New,Courier,monospace">sync_manager_disconnect()</span> function.</p>
 <pre class="prettyprint">
 result = sync_manager_remove_sync_job(account, capability);
 
 account_connect();
-account_get_account_id(account, &amp;account_id);
-account_delete_from_db_by_id(account_id);
+account_delete_from_db_by_package_name("data-sync-module");
 account_destroy(account);
 account_disconnect();
 
@@ -152,7 +151,7 @@ sync_adapter_destroy();
 </pre>
 </li>
 </ol>
-               
+
 <h2 id="periodic_sync" name="periodic_sync">Initializing the Periodic Sync</h2>
 
 <p>To inform the service application of a periodical sync operation and its sync interval:</p>
@@ -186,7 +185,7 @@ result = sync_manager_connect();
 </pre>
 </li>
 
-<li>If you want to use an account (track calendar or contact data changes on the device), create the account and the bundle to obtain the parameters for the <span style="font-family: Courier New,Courier,monospace">sync_manager_add_sync_job()</span> function you need later on. 
+<li>If you want to use an account (track calendar or contact data changes on the device), create the account and the bundle to obtain the parameters for the <span style="font-family: Courier New,Courier,monospace">sync_manager_add_sync_job()</span> function you need later on.
 <p>The account handle is not a mandatory parameter, because it is meant for an application that uses the sync manager without an account. For more information, see <a href="../social/account_tutorial_n.htm">Creating and Managing an Account</a> and <a href="../app_framework/bundle_tutorial_n.htm">Managing and Using the Bundle Content</a>.</p>
 
 <pre class="prettyprint">