Skip to content

Commit ea6d5b5

Browse files
Merge pull request #524 from Iterable/tapash/mob-3835-fix-archive-issue
[MOB-3835] - Fix archive issue SwiftUI doesn't build for armv7
2 parents 7b1eef5 + c14aa0b commit ea6d5b5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

swift-sdk/swiftui/InboxViewRepresentable.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Copyright © 2021 Iterable. All rights reserved.
33
//
44

5-
#if canImport(SwiftUI)
5+
#if canImport(SwiftUI) && !arch(arm)
66

77
import Foundation
88
import SwiftUI

swift-sdk/swiftui/IterableInboxView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Copyright © 2021 Iterable. All rights reserved.
33
//
44

5-
#if canImport(SwiftUI)
5+
#if canImport(SwiftUI) && !arch(arm)
66

77
import Foundation
88
import SwiftUI

0 commit comments

Comments
 (0)