From: Ickhee Woo Date: Wed, 6 Sep 2017 04:39:32 +0000 (+0900) Subject: added statement for sync-manager feature on native guide X-Git-Tag: GitHub/PR#40/tizen-studio~31^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a7db4113775bc0734ba2ff746052f7bdb7fe30a7;p=sdk%2Fonline-doc.git added statement for sync-manager feature on native guide PS3: Reviewed PS4: Fixed feature name and added to System Information guide PS5: More features added to System Information guide PS6: Changed native synch guide title Change-Id: I56466c3f4624f8d87afec48cf0a57bbcb0e80a47 Signed-off-by: Ickhee Woo --- diff --git a/org.tizen.guides/html/index.htm b/org.tizen.guides/html/index.htm index 545f431..0bd8b60 100644 --- a/org.tizen.guides/html/index.htm +++ b/org.tizen.guides/html/index.htm @@ -464,7 +464,7 @@
  • Personal Data
    • Account Management
    • -
    • Data Synchronization
    • +
    • Synchronization Management
    • Authentication and Authorization
      • FIDO Universal Authentication Framework
      • diff --git a/org.tizen.guides/html/native/device/system_n.htm b/org.tizen.guides/html/native/device/system_n.htm index 32f36d5..e3de106 100644 --- a/org.tizen.guides/html/native/device/system_n.htm +++ b/org.tizen.guides/html/native/device/system_n.htm @@ -84,6 +84,13 @@ Feature keys + Account + FM radio + Microphone + Sensor + + + Battery Graphics Multimedia @@ -129,12 +136,7 @@ FIDO Media Screen - - - - - FM radio - Microphone - Sensor + - System keys @@ -143,13 +145,13 @@ Build Manufacturer Platform - TizenID + - + TizenID Model name Sound - - @@ -218,6 +220,29 @@ func(void)

        Feature Keys

        +

        The following table lists the account feature keys.

        +

        Table: Account feature keys

        + + + + + + + + + + + + + + + + + + + +
        KeyTypeDescription
        http://tizen.org/feature/accountboolThe platform returns true for this key, if the device supports the Account Manager API.
        http://tizen.org/feature/account.syncboolThe platform returns true for this key, if the device supports the Sync Manager API.
        +

        The following table lists the battery feature keys.

        Table: Battery feature keys

        diff --git a/org.tizen.guides/html/native/personal/data_sync_n.htm b/org.tizen.guides/html/native/personal/data_sync_n.htm index 269c07d..fc571d4 100644 --- a/org.tizen.guides/html/native/personal/data_sync_n.htm +++ b/org.tizen.guides/html/native/personal/data_sync_n.htm @@ -10,7 +10,7 @@ - Data Synchronization + Synchronization Management @@ -53,7 +53,7 @@
        -

        Data Synchronization

        +

        Synchronization Management

        Tizen provides notifications for a service application to maintain data consistency between a server and the device.

        @@ -127,7 +127,7 @@

      Prerequisites

      -

      To enable your application to use the data synchronization functionality:

      +

      To enable your application to use the synchronization management functionality:

      1. To use the Sync Manager API (in mobile and wearable applications), the application has to request permission by adding the following privileges to the tizen-manifest.xml file:
        @@ -141,6 +141,13 @@
         </privileges>
         
      2. +
      3. Before using the Sync Manager API, check whether the device supports the synchronization management feature with the system_info_get_platform_bool() function. If the device supports the Sync Manager API, the function returns true in the second parameter. +
        +bool sync_support;
        +
        +system_info_get_platform_bool("http://tizen.org/feature/account.sync", &sync_support);
        +
        +
      4. Set the sync adapter callbacks in the service application:
         #include <sync_adapter.h>
        diff --git a/org.tizen.guides/html/native/personal/personal_cover_n.htm b/org.tizen.guides/html/native/personal/personal_cover_n.htm
        index 3603b06..f2cad28 100644
        --- a/org.tizen.guides/html/native/personal/personal_cover_n.htm
        +++ b/org.tizen.guides/html/native/personal/personal_cover_n.htm
        @@ -45,7 +45,7 @@
         
         

        You can access user accounts and account providers. After getting a specific account, you can manage it, retrieve account information, and manage account secrecy.

      5. -
      6. Data Synchronization +
      7. Synchronization Management

        You can synchronize service application data between a server and the device by creating various sync jobs.

      8. diff --git a/org.tizen.guides/index.xml b/org.tizen.guides/index.xml index 3819d8f..762964d 100644 --- a/org.tizen.guides/index.xml +++ b/org.tizen.guides/index.xml @@ -332,7 +332,7 @@ - +