Skip to content

Commit 29b49ac

Browse files
committed
Release 1.1.7
1 parent 361dad7 commit 29b49ac

File tree

174 files changed

+217
-206
lines changed

Some content is hidden

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

174 files changed

+217
-206
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.7] - 2025-06-03
9+
10+
### Fixed
11+
- Fixed an issue with the sandbox detection.
12+
13+
### Deprecated
14+
- The `DevRevDelegate` protocol is deprecated. It will be removed in the next major release.
15+
816
## [1.1.6] - 2025-05-19
917

1018
### Fixed

DevRevSDK.doccarchive.zip

645 Bytes
Binary file not shown.

DevRevSDK.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Pod::Spec.new do |spec|
22
spec.name = "DevRevSDK"
3-
spec.version = "1.1.6"
3+
spec.version = "1.1.7"
44
spec.summary = "DevRev SDK, used for integrating DevRev services into your iOS app."
55
spec.homepage = "https://devrev.ai"
66
spec.license = "Apache 2.0"
77
spec.author = { "DevRev" => "[email protected]" }
88
spec.platform = :ios, "15.0"
99
spec.source = {
10-
http: "https://github.com/devrev/devrev-sdk-ios/releases/download/v1.1.6/DevRevSDK.xcframework.zip",
10+
http: "https://github.com/devrev/devrev-sdk-ios/releases/download/v1.1.7/DevRevSDK.xcframework.zip",
1111
type: :zip,
1212
headers: [
1313
"Accept: application/octet-stream",

DevRevSDK.xcframework.zip

-6.51 KB
Binary file not shown.

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ let package = Package(
1818
targets: [
1919
.binaryTarget(
2020
name: "DevRevSDK",
21-
url: "https://github.com/devrev/devrev-sdk-ios/releases/download/v1.1.6/DevRevSDK.xcframework.zip",
22-
checksum: "0899d2d3a5a4e8b55ab1c7c917c286399bede73313a1057d4d326735bf2d1d36"
21+
url: "https://github.com/devrev/devrev-sdk-ios/releases/download/v1.1.7/DevRevSDK.xcframework.zip",
22+
checksum: "54a8d43a377f30d4dee4a84d07b0dbbafe075a0fa3fbbd7f21ff241c90552f23"
2323
)
2424
]
2525
)

Samples/Configuration/Project/ProjectDebug.xcconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 $(inherited)
77
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE
88
SWIFT_ACTIVE_COMPILATION_CONDITIONS = $(inherited) DEBUG
99
SWIFT_OPTIMIZATION_LEVEL = -Onone
10+
SWIFT_COMPILATION_MODE =
Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
1-
ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
2-
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME=AccentColor
3-
CODE_SIGN_ENTITLEMENTS=SampleSwiftUI/SampleSwiftUI.entitlements
4-
CODE_SIGN_STYLE=Automatic
5-
CURRENT_PROJECT_VERSION=1
6-
ENABLE_PREVIEWS=YES
7-
GENERATE_INFOPLIST_FILE=YES
8-
INFOPLIST_FILE=SampleSwiftUI/Info.plist
9-
INFOPLIST_KEY_UIApplicationSceneManifest_Generation=YES
10-
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents=YES
11-
INFOPLIST_KEY_UILaunchScreen_Generation=YES
12-
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad=UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight
13-
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone=UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight
1+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
2+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor
3+
CODE_SIGN_ENTITLEMENTS = SampleSwiftUI/SampleSwiftUI.entitlements
4+
CODE_SIGN_STYLE = Automatic
5+
CURRENT_PROJECT_VERSION = 1
6+
ENABLE_PREVIEWS = YES
7+
GENERATE_INFOPLIST_FILE = YES
8+
INFOPLIST_FILE = SampleSwiftUI/Info.plist
9+
INFOPLIST_KEY_CFBundleDisplayName = DevRev SDK (SwiftUI)
10+
INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES
11+
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES
12+
INFOPLIST_KEY_UILaunchScreen_Generation = YES
13+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight
14+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight
1415
IPHONEOS_DEPLOYMENT_TARGET = 15.0
15-
LD_RUNPATH_SEARCH_PATHS=$(inherited) @executable_path/Frameworks
16-
MARKETING_VERSION=1.0
17-
PRODUCT_BUNDLE_IDENTIFIER=ai.devrev.sdk.SampleSwiftUI
18-
PRODUCT_NAME=$(TARGET_NAME)
19-
SWIFT_EMIT_LOC_STRINGS=YES
20-
SWIFT_VERSION=5.0
21-
TARGETED_DEVICE_FAMILY=1,2
16+
LD_RUNPATH_SEARCH_PATHS = $(inherited) @executable_path/Frameworks
17+
MARKETING_VERSION = 1.0.0
18+
PRODUCT_BUNDLE_IDENTIFIER = ai.devrev.sdk.SampleSwiftUI
19+
PRODUCT_NAME = $(TARGET_NAME)
20+
SWIFT_EMIT_LOC_STRINGS = YES
21+
SWIFT_VERSION = 5.0
22+
TARGETED_DEVICE_FAMILY = 1,2
Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
1-
ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
2-
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME=AccentColor
3-
CODE_SIGN_ENTITLEMENTS=SampleUIKit/SampleUIKit.entitlements
4-
CODE_SIGN_STYLE=Automatic
5-
CURRENT_PROJECT_VERSION=1
6-
GENERATE_INFOPLIST_FILE=YES
7-
INFOPLIST_FILE=SampleUIKit/Info.plist
8-
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents=YES
9-
INFOPLIST_KEY_UILaunchStoryboardName=LaunchScreen
10-
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad=UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight
11-
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone=UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight
12-
LD_RUNPATH_SEARCH_PATHS=$(inherited) @executable_path/Frameworks
13-
MARKETING_VERSION=1.0
14-
PRODUCT_BUNDLE_IDENTIFIER=ai.devrev.sdk.SampleUIKit
15-
PRODUCT_NAME=$(TARGET_NAME)
16-
SWIFT_EMIT_LOC_STRINGS=YES
17-
SWIFT_VERSION=5.0
18-
TARGETED_DEVICE_FAMILY=1,2
1+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
2+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor
3+
CODE_SIGN_ENTITLEMENTS = SampleUIKit/SampleUIKit.entitlements
4+
CODE_SIGN_STYLE = Automatic
5+
CURRENT_PROJECT_VERSION = 1
6+
GENERATE_INFOPLIST_FILE = YES
7+
INFOPLIST_FILE = SampleUIKit/Info.plist
8+
INFOPLIST_KEY_CFBundleDisplayName = DevRev SDK (UIKit)
9+
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES
10+
INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen
11+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight
12+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight
13+
LD_RUNPATH_SEARCH_PATHS = $(inherited) @executable_path/Frameworks
14+
MARKETING_VERSION = 1.0.0
15+
PRODUCT_BUNDLE_IDENTIFIER = ai.devrev.sdk.SampleUIKit
16+
PRODUCT_NAME = $(TARGET_NAME)
17+
SWIFT_EMIT_LOC_STRINGS = YES
18+
SWIFT_VERSION = 5.0
19+
TARGETED_DEVICE_FAMILY = 1,2

docs/data/documentation/devrevsdk.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)