This repository has been archived by the owner on Apr 24, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from boswelja/define-accessoryserviceprofile
Add back our own accessory services profile
- Loading branch information
Showing
4 changed files
with
34 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<string name="app_name" /> | ||
<string name="accessory_app_name">@string/app_name</string> | ||
</resources> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
<application name="@string/accessory_app_name"> | ||
<serviceProfile | ||
serviceImpl="com.boswelja.watchconnection.tizen.TizenAccessoryAgent" | ||
role="provider" | ||
name="WatchConnectionLib" | ||
id="/watchconnection/tizen" | ||
version="1.0" | ||
serviceLimit="any" | ||
serviceTimeout="10"> | ||
<supportedTransports> | ||
<transport type="TRANSPORT_BT" /> | ||
<transport type="TRANSPORT_BLE" /> | ||
<transport type="TRANSPORT_WIFI" /> | ||
</supportedTransports> | ||
<supportedFeatures> | ||
<feature type="message" /> | ||
</supportedFeatures> | ||
</serviceProfile> | ||
</application> | ||
</resources> |