Skip to content

Commit

Permalink
Merge pull request #3 from garmin/bugfixRelease
Browse files Browse the repository at this point in the history
Several bug fixes and code improvements.
  • Loading branch information
abhishekthakurGarmin authored Mar 4, 2024
2 parents 8c5ac2a + 09a16d0 commit d61f5b7
Show file tree
Hide file tree
Showing 13 changed files with 29 additions and 165 deletions.
14 changes: 9 additions & 5 deletions ConnectIQ.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,35 @@
<key>AvailableLibraries</key>
<array>
<dict>
<key>BinaryPath</key>
<string>ConnectIQ.framework/ConnectIQ</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>ConnectIQ.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>ConnectIQ.framework/ConnectIQ</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>ConnectIQ.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Binary file modified ConnectIQ.xcframework/ios-arm64/ConnectIQ.framework/ConnectIQ
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
//

#import <Foundation/Foundation.h>
#import "IQConstants.h"
#import "IQDevice.h"
#import "IQApp.h"
#import <ConnectIQ/IQConstants.h>
#import <ConnectIQ/IQDevice.h>
#import <ConnectIQ/IQApp.h>

// --------------------------------------------------------------------------------
#pragma mark - PUBLIC TYPES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
//

#import <Foundation/Foundation.h>
#import "IQDevice.h"
#import "IQAppStatus.h"
#import <ConnectIQ/IQDevice.h>
#import <ConnectIQ/IQAppStatus.h>

/// @brief Represents an instance of a ConnectIQ app that is installed on a
/// Garmin device.
Expand Down
Binary file modified ConnectIQ.xcframework/ios-arm64/ConnectIQ.framework/Info.plist
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
framework module ConnectIQ {
umbrella header "ConnectIQ.h"

export *

module * { export * }
}
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
//

#import <Foundation/Foundation.h>
#import "IQConstants.h"
#import "IQDevice.h"
#import "IQApp.h"
#import <ConnectIQ/IQConstants.h>
#import <ConnectIQ/IQDevice.h>
#import <ConnectIQ/IQApp.h>

// --------------------------------------------------------------------------------
#pragma mark - PUBLIC TYPES
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
//

#import <Foundation/Foundation.h>
#import "IQDevice.h"
#import "IQAppStatus.h"
#import <ConnectIQ/IQDevice.h>
#import <ConnectIQ/IQAppStatus.h>

/// @brief Represents an instance of a ConnectIQ app that is installed on a
/// Garmin device.
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
framework module ConnectIQ {
umbrella header "ConnectIQ.h"

export *

module * { export * }
}
Loading

0 comments on commit d61f5b7

Please sign in to comment.