-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the sample to use the latest release of the CIQ Companion app …
…SDK version 1.6.0 Updated to use the latest release of the SDK which includes changes to support Universal Links to launch the companion app when fetching paired devices from the Garmin Connect app. Companion app now can send transient messages using the sendMessage() API.
- Loading branch information
1 parent
7108d59
commit 9796054
Showing
8 changed files
with
40 additions
and
12 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
7 changes: 4 additions & 3 deletions
7
ExampleApp/ExampleApp.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved
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 |
---|---|---|
@@ -1,14 +1,15 @@ | ||
{ | ||
"originHash" : "8546cec043655f015797511747e9dcac32fc6a266541bb73e85a63ae4956b656", | ||
"pins" : [ | ||
{ | ||
"identity" : "connectiq-companion-app-sdk-ios", | ||
"kind" : "remoteSourceControl", | ||
"location" : "https://github.com/garmin/connectiq-companion-app-sdk-ios", | ||
"state" : { | ||
"revision" : "d61f5b7ddb93c20a2ee2dfc67aea91fe21b66da1", | ||
"version" : "1.5.2" | ||
"revision" : "3312f9f50e3103e54c2c9b09b823f40a16e0c6cb", | ||
"version" : "1.6.0" | ||
} | ||
} | ||
], | ||
"version" : 2 | ||
"version" : 3 | ||
} |
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 |
---|---|---|
|
@@ -8,3 +8,4 @@ | |
#import <Foundation/Foundation.h> | ||
|
||
extern NSString * const ReturnURLScheme; | ||
extern NSString * const ReturnURLHost; |
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,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>com.apple.developer.associated-domains</key> | ||
<array> | ||
<string>applinks:connect.garmin.com</string> | ||
</array> | ||
</dict> | ||
</plist> |