Skip to content

Commit 5f04aae

Browse files
committed
Merge branch 'master' into fix_formatting_native_download
2 parents e31a88e + 2b9b689 commit 5f04aae

File tree

3,033 files changed

+1753785
-4389
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,033 files changed

+1753785
-4389
lines changed

docs/application/dotnet/guides/account/fido.md

Lines changed: 0 additions & 211 deletions
This file was deleted.

docs/application/dotnet/guides/app-management/package-manager.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ To retrieve all package information for installed packages, follow these steps:
6464
Log.Debug(LogTag, "system: " + package.IsSystemPackage);
6565
Log.Debug(LogTag, "removable: " + package.IsRemovable);
6666
Log.Debug(LogTag, "preload: " + package.IsPreloaded);
67+
Log.Debug(LogTag, "first installed time: " + package.FirstInstalledTime);
68+
Log.Debug(LogTag, "installed time: " + package.InstalledTime);
6769
}
6870
```
6971

@@ -91,6 +93,8 @@ To get specific package information, follow these steps:
9193
Log.Debug(LogTag, "system: " + package.IsSystemPackage);
9294
Log.Debug(LogTag, "removable: " + package.IsRemovable);
9395
Log.Debug(LogTag, "preload: " + package.IsPreloaded);
96+
Log.Debug(LogTag, "first installed time: " + package.FirstInstalledTime);
97+
Log.Debug(LogTag, "installed time: " + package.InstalledTime);
9498
```
9599

96100
<a name="listen"></a>

docs/application/dotnet/guides/connectivity/iotcon.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# IoT Connectivity
22

3+
> [!NOTE]
4+
> All IoT Connectivity APIs have been deprecated since Tizen 10 and will be removed after two releases without any alternatives.
35
46
[IoTivity](https://www.iotivity.org/) offers seamless device-to-device connectivity to address the emerging needs of the Internet of Things (IoT) through the open source reference implementation of the OCF (Open Connectivity Foundation) standard specifications. The Tizen.Network.IoTConnectivity namespace provides the means of using IoTivity in Tizen.
57

docs/application/dotnet/guides/connectivity/nsd.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Network Service Discovery
22

3+
> [!NOTE]
4+
> Tizen.Network.Nsd.SsdpService and Tizen.Network.Nsd.SsdpBrowser class are deprecated since Tizen 10.0 and will be removed after two releases without any alternatives.
35
46
You can use 2 different protocols to perform network service discoveries to announce local services and search for remote services on a network: DNS-SD (DNS Service Discovery) and SSDP (Simple Service Discovery Protocol).
57

docs/application/dotnet/guides/connectivity/smartcard.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Smart Card
22

3+
> [!NOTE]
4+
> All Smart card APIs have been deprecated since Tizen 10.0 and will be removed after two releases without any alternatives.
35
46
You can use smart card functionalities, such as accessing a secure element (SE). Before using the Tizen.Network.Smartcard namespace, make sure you have an SE in the device. The smart card service allows you to open a session on an SE, open a channel to the applet in the SE, send a command to the channel, and finally receive a response to the command.
57

docs/application/dotnet/guides/connectivity/stc.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Smart Traffic Control
22

3+
> [!NOTE]
4+
> All STC APIs have been deprecated since Tizen 10.0 and will be removed after two releases without any alternatives.
35
46
Smart Traffic Control (STC) provides extensible packet-level control services, including per-app data usage, total data quota, and background app data saving.
57

docs/application/dotnet/guides/index.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,21 @@ Tizen.Wearable.CircularUI supports Tizen wearable-specific user interfaces, and
291291
</div>
292292
</div>
293293
</div>
294+
<div class="col col-md-3">
295+
<div class="card card-infra card-list h-100">
296+
<div class="card-body">
297+
<p class="h3 card-title">Performance</p>
298+
<div class="card-text">
299+
<ul class="list-infra list-infra-arrow">
300+
<li><a href="performance/tracer.md">Tracer</a></li>
301+
</ul>
302+
</div>
303+
</div>
304+
<div class="card-footer">
305+
<a class="link-standalone" href="performance/overview.md">Learn more</a>
306+
</div>
307+
</div>
308+
</div>
294309
<div class="col col-md-3">
295310
<div class="card card-infra card-list h-100">
296311
<div class="card-body">

0 commit comments

Comments
 (0)