Skip to content

Commit

Permalink
0.1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
dinesh-roam committed Nov 2, 2023
1 parent 81b7ee4 commit ddf4684
Show file tree
Hide file tree
Showing 27 changed files with 889 additions and 1,210 deletions.
Binary file modified .DS_Store
Binary file not shown.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,3 +305,9 @@ Your feedback has been invaluable in shaping these improvements. For any queries

## 0.1.16
- Minor bug fixes and improvements for a smoother experience.

## 0.1.17
We're thrilled to present Roam iOS SDK version 0.1.17, focusing on bolstering our security module. In this update, we've made significant improvements to enhance the security of location data. Here's what's new:
Efficient Spoofed Location Detection: Our security algorithm has been refined to efficiently discard spoofed locations during the initial location fix. This enhancement ensures that only genuine and accurate location data is captured, enhancing the authenticity of the information gathered.
Addressing False Negatives: We've tackled false negatives during location tracking, ensuring that true locations are not mistakenly identified as spoofed locations. This refinement enhances the precision of location tracking, providing you with reliable and accurate data.
These security enhancements are designed to safeguard your data and ensure the integrity of the location information collected by the Roam iOS SDK. Your security is our priority, and we're committed to providing you with a secure and trustworthy experience. If you have any questions, concerns, or feedback, our support team is always here to assist you.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ This will add the Roam SDK and its dependencies to your project. The Roam SDK de

#### Manual Installation

If you’re not familiar with using Cocoapods or prefer manual installation, we’ve added a ZIP file to the SDK. Use this link to download the [Roam.zip](https://github.com/roam-ai/roam-ios/releases/download/0.1.16/Roam.xcframework.zip) file.
If you’re not familiar with using Cocoapods or prefer manual installation, we’ve added a ZIP file to the SDK. Use this link to download the [Roam.zip](https://github.com/roam-ai/roam-ios/releases/download/0.1.17/Roam.xcframework.zip) file.

Unzip the file and add the Roam `Roam.framework` to your Xcode project by dragging the file into your Project Navigator.

Expand Down
Binary file modified Roam.xcframework.zip
Binary file not shown.
10 changes: 5 additions & 5 deletions Roam/Roam.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,30 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>Roam.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>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>Roam.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
Original file line number Diff line number Diff line change
Expand Up @@ -286,13 +286,14 @@ SWIFT_CLASS_NAMED("BatchLocation")




typedef SWIFT_ENUM(NSInteger, LocationAccuracy, open) {
LocationAccuracyKCLLocationAccuracyBestForNavigation = 0,
LocationAccuracyKCLLocationAccuracyBest = 1,
LocationAccuracyKCLLocationAccuracyNearestTenMeters = 2,
LocationAccuracyKCLLocationAccuracyHundredMeters = 3,
LocationAccuracyKCLLocationAccuracyKilometer = 4,
LocationAccuracyKCLLocationAccuracyThreeKilometers = 5,
LocationAccuracyKCLLocationAccuracyBestForNavigation = 1,
LocationAccuracyKCLLocationAccuracyBest = 2,
LocationAccuracyKCLLocationAccuracyNearestTenMeters = 3,
LocationAccuracyKCLLocationAccuracyHundredMeters = 4,
LocationAccuracyKCLLocationAccuracyKilometer = 5,
LocationAccuracyKCLLocationAccuracyThreeKilometers = 6,
};


Expand Down
Loading

0 comments on commit ddf4684

Please sign in to comment.