Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Making use of diffable data source #744

Open
wants to merge 20 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions BuildTools/.swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ excluded:
- ../fastlane
- ../OpenHABCore/.build
- .build
- ../OpenHABCore/Sources/OpenHABCore/GeneratedSources/*
- ../OpenHABCore/swift-openapi-generator

nesting:
type_level: 2
Expand Down Expand Up @@ -93,6 +95,7 @@ custom_rules:

file_name:
suffix_pattern: "Extension?|\\+.*"
excluded: "UICollectionViewCellRegistrationExtension.swift"

opening_brace:
allow_multiline_func: true
12 changes: 7 additions & 5 deletions OpenHABCore/Package.swift
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// swift-tools-version:5.5
// swift-tools-version:5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "OpenHABCore",
platforms: [.iOS(.v12), .watchOS(.v6)],
platforms: [.iOS(.v16), .watchOS(.v8)],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
Expand All @@ -15,8 +15,9 @@ let package = Package(
],
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(name: "Alamofire", url: "https://github.com/Alamofire/Alamofire.git", from: "5.0.0"),
.package(name: "Kingfisher", url: "https://github.com/onevcat/Kingfisher.git", from: "7.0.0")
.package(url: "https://github.com/Alamofire/Alamofire.git", from: "5.0.0"),
.package(url: "https://github.com/onevcat/Kingfisher.git", from: "7.0.0"),
.package(url: "https://github.com/apple/swift-collections.git", .upToNextMajor(from: "1.1.0"))
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
Expand All @@ -25,7 +26,8 @@ let package = Package(
name: "OpenHABCore",
dependencies: [
.product(name: "Alamofire", package: "Alamofire", condition: .when(platforms: [.iOS, .watchOS])),
.product(name: "Kingfisher", package: "Kingfisher", condition: .when(platforms: [.iOS, .watchOS]))
.product(name: "Kingfisher", package: "Kingfisher", condition: .when(platforms: [.iOS, .watchOS])),
.product(name: "Collections", package: "swift-collections")
]
),
.testTarget(
Expand Down
32 changes: 27 additions & 5 deletions OpenHABCore/Sources/OpenHABCore/Model/OpenHABSitemapPage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,36 @@
//
// SPDX-License-Identifier: EPL-2.0

import Collections
import Foundation
import os.log

public class OpenHABSitemapPage: NSObject {
public class OpenHABSitemapPage: NSObject, ObservableObject {
public var sendCommand: ((_ item: OpenHABItem, _ command: String?) -> Void)?
public var widgets: [OpenHABWidget] = []
public var widgets = OrderedDictionary<String, OpenHABWidget>()
public var pageId = ""
public var title = ""
public var link = ""
public var leaf = false
public var icon = ""

public init(pageId: String, title: String, link: String, leaf: Bool, widgets: OrderedDictionary<String, OpenHABWidget>, icon: String) {
super.init()
self.pageId = pageId
self.title = title
self.link = link
self.leaf = leaf

self.widgets = widgets

for (_, widget) in self.widgets {
widget.sendCommand = { [weak self] item, command in
self?.sendCommand(item, commandToSend: command)
}
}
self.icon = icon
}

public init(pageId: String, title: String, link: String, leaf: Bool, widgets: [OpenHABWidget], icon: String) {
super.init()
self.pageId = pageId
Expand All @@ -29,8 +47,12 @@ public class OpenHABSitemapPage: NSObject {
self.leaf = leaf
var tempWidgets = [OpenHABWidget]()
tempWidgets.flatten(widgets)
self.widgets = tempWidgets
for widget in self.widgets {

self.widgets = OrderedDictionary(
uniqueKeysWithValues: tempWidgets.map { ($0.id, $0) }
)

for (_, widget) in self.widgets {
widget.sendCommand = { [weak self] item, command in
self?.sendCommand(item, commandToSend: command)
}
Expand All @@ -47,7 +69,7 @@ public class OpenHABSitemapPage: NSObject {
}

public extension OpenHABSitemapPage {
func filter(_ isIncluded: (OpenHABWidget) throws -> Bool) rethrows -> OpenHABSitemapPage {
func filter(_ isIncluded: (String, OpenHABWidget) throws -> Bool) rethrows -> OpenHABSitemapPage {
let filteredOpenHABSitemapPage = try OpenHABSitemapPage(
pageId: pageId,
title: title,
Expand Down
10 changes: 9 additions & 1 deletion OpenHABCore/Sources/OpenHABCore/Model/OpenHABUiTile.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import Foundation

public class OpenHABUiTile: Decodable {
public class OpenHABUiTile: Decodable, Hashable {
public var name = ""
public var url = ""
public var imageUrl = ""
Expand All @@ -21,6 +21,14 @@ public class OpenHABUiTile: Decodable {
self.url = url
self.imageUrl = imageUrl
}

public static func == (lhs: OpenHABUiTile, rhs: OpenHABUiTile) -> Bool {
lhs.name == rhs.name
}

public func hash(into hasher: inout Hasher) {
hasher.combine(name)
}
}

public extension OpenHABUiTile {
Expand Down
4 changes: 2 additions & 2 deletions OpenHABCore/Sources/OpenHABCore/Model/OpenHABWidget.swift
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ protocol Widget: AnyObject {
func flatten(_: [ChildWidget])
}

public class OpenHABWidget: NSObject, MKAnnotation, Identifiable {
public class OpenHABWidget: NSObject, MKAnnotation, Identifiable, ObservableObject {
public enum WidgetType: String {
case chart = "Chart"
case colorpicker = "Colorpicker"
Expand Down Expand Up @@ -86,7 +86,7 @@ public class OpenHABWidget: NSObject, MKAnnotation, Identifiable {
public var labelcolor = ""
public var valuecolor = ""
public var service = ""
public var state = ""
@Published public var state = ""
public var text = ""
public var legend: Bool?
public var encoding = ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ public class NetworkConnection {
public static func uiTiles(openHABRootUrl: String,
completionHandler: @escaping (DataResponse<Data, AFError>) -> Void) {
if let url = Endpoint.uiTiles(openHABRootUrl: openHABRootUrl).url {
os_log("URL for Endpoint %{PUBLIC}@", log: .default, type: .info, url.debugDescription)
load(from: url, completionHandler: completionHandler)
}
}
Expand Down Expand Up @@ -154,7 +155,6 @@ public class NetworkConnection {

commandRequest.setValue("text/plain", forHTTPHeaderField: "Content-type")

os_log("Timeout %{PUBLIC}g", log: .default, type: .info, commandRequest.timeoutInterval)
let link = item.link
os_log("OpenHABViewController posting %{PUBLIC}@ command to %{PUBLIC}@", log: .default, type: .info, command ?? "", link)
os_log("%{PUBLIC}@", log: .default, type: .info, commandRequest.debugDescription)
Expand Down
26 changes: 20 additions & 6 deletions openHAB.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@
DA07764A234683BC0086C685 /* SwitchRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA077649234683BC0086C685 /* SwitchRow.swift */; };
DA0776F0234788010086C685 /* UserData.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA0776EF234788010086C685 /* UserData.swift */; };
DA0F37D023D4ACC7007EAB48 /* SliderRow.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA0F37CF23D4ACC7007EAB48 /* SliderRow.swift */; };
DA11B2482C8125E8004D96C9 /* FrameCellView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA11B2472C8125E8004D96C9 /* FrameCellView.swift */; };
DA15BFBD23C6726400BD8ADA /* ObservableOpenHABDataObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA15BFBC23C6726400BD8ADA /* ObservableOpenHABDataObject.swift */; };
DA19E25B22FD801D002F8F2F /* OpenHABGeneralTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA19E25A22FD801D002F8F2F /* OpenHABGeneralTests.swift */; };
DA21EAE22339621C001AB415 /* Throttler.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA21EAE12339621C001AB415 /* Throttler.swift */; };
Expand All @@ -110,6 +111,7 @@
DAA42BA821DC97E000244B2A /* NotificationTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAA42BA721DC97DF00244B2A /* NotificationTableViewCell.swift */; };
DAA42BAA21DC983B00244B2A /* VideoUITableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAA42BA921DC983B00244B2A /* VideoUITableViewCell.swift */; };
DAA42BAC21DC984A00244B2A /* WebUITableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAA42BAB21DC984A00244B2A /* WebUITableViewCell.swift */; };
DABA07542B0F9E7A00708281 /* UICollectionViewCellRegistrationExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = DABA07532B0F9E7A00708281 /* UICollectionViewCellRegistrationExtension.swift */; };
DAC65FC7236EDF3900F4501E /* SpinnerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAC65FC6236EDF3900F4501E /* SpinnerViewController.swift */; };
DAC6608D236F771600F4501E /* PreferencesSwiftUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAC6608C236F771600F4501E /* PreferencesSwiftUIView.swift */; };
DAC6608F236F80BA00F4501E /* PreferencesRowUIView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAC6608E236F80BA00F4501E /* PreferencesRowUIView.swift */; };
Expand Down Expand Up @@ -144,7 +146,7 @@
DAF4F6C0222734D300C24876 /* NewImageUITableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAF4F6BF222734D200C24876 /* NewImageUITableViewCell.swift */; };
DF05EF121D00696200DD646D /* DrawerUITableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF05EF111D00696200DD646D /* DrawerUITableViewCell.swift */; };
DF05FF231896BD2D00FF2F9B /* SelectionUITableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF05FF221896BD2D00FF2F9B /* SelectionUITableViewCell.swift */; };
DF06F1F618FE7A160011E7B9 /* OpenHABSelectionTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF06F1F518FE7A160011E7B9 /* OpenHABSelectionTableViewController.swift */; };
DF06F1F618FE7A160011E7B9 /* OpenHABSelectionCollectionViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF06F1F518FE7A160011E7B9 /* OpenHABSelectionCollectionViewController.swift */; };
DF06F1FC18FEC2020011E7B9 /* ColorPickerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF06F1FB18FEC2020011E7B9 /* ColorPickerViewController.swift */; };
DF1B302D1CF5C667009C921C /* OpenHABNotification.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF1B302C1CF5C667009C921C /* OpenHABNotification.swift */; };
DF4A022C1CF315BA006C3456 /* OpenHABDrawerTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF4A022B1CF315BA006C3456 /* OpenHABDrawerTableViewController.swift */; };
Expand Down Expand Up @@ -338,6 +340,7 @@
DA077649234683BC0086C685 /* SwitchRow.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwitchRow.swift; sourceTree = "<group>"; };
DA0776EF234788010086C685 /* UserData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserData.swift; sourceTree = "<group>"; };
DA0F37CF23D4ACC7007EAB48 /* SliderRow.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SliderRow.swift; sourceTree = "<group>"; };
DA11B2472C8125E8004D96C9 /* FrameCellView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FrameCellView.swift; sourceTree = "<group>"; };
DA15BFBC23C6726400BD8ADA /* ObservableOpenHABDataObject.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ObservableOpenHABDataObject.swift; sourceTree = "<group>"; };
DA19E25A22FD801D002F8F2F /* OpenHABGeneralTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenHABGeneralTests.swift; sourceTree = "<group>"; };
DA1C2E4B230DC28F00FACFB0 /* Appfile */ = {isa = PBXFileReference; lastKnownFileType = text; path = Appfile; sourceTree = "<group>"; };
Expand Down Expand Up @@ -400,6 +403,7 @@
DAA42BA721DC97DF00244B2A /* NotificationTableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationTableViewCell.swift; sourceTree = "<group>"; };
DAA42BA921DC983B00244B2A /* VideoUITableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = VideoUITableViewCell.swift; sourceTree = "<group>"; };
DAA42BAB21DC984A00244B2A /* WebUITableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WebUITableViewCell.swift; sourceTree = "<group>"; };
DABA07532B0F9E7A00708281 /* UICollectionViewCellRegistrationExtension.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UICollectionViewCellRegistrationExtension.swift; sourceTree = "<group>"; };
DAC65FC6236EDF3900F4501E /* SpinnerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpinnerViewController.swift; sourceTree = "<group>"; };
DAC6608B236F6F4200F4501E /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
DAC6608C236F771600F4501E /* PreferencesSwiftUIView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PreferencesSwiftUIView.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -437,7 +441,7 @@
DAF4F6BF222734D200C24876 /* NewImageUITableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NewImageUITableViewCell.swift; sourceTree = "<group>"; };
DF05EF111D00696200DD646D /* DrawerUITableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DrawerUITableViewCell.swift; sourceTree = "<group>"; };
DF05FF221896BD2D00FF2F9B /* SelectionUITableViewCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SelectionUITableViewCell.swift; sourceTree = "<group>"; };
DF06F1F518FE7A160011E7B9 /* OpenHABSelectionTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OpenHABSelectionTableViewController.swift; sourceTree = "<group>"; };
DF06F1F518FE7A160011E7B9 /* OpenHABSelectionCollectionViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OpenHABSelectionCollectionViewController.swift; sourceTree = "<group>"; };
DF06F1FB18FEC2020011E7B9 /* ColorPickerViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ColorPickerViewController.swift; sourceTree = "<group>"; };
DF1B302C1CF5C667009C921C /* OpenHABNotification.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OpenHABNotification.swift; sourceTree = "<group>"; };
DF4A022B1CF315BA006C3456 /* OpenHABDrawerTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OpenHABDrawerTableViewController.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -853,7 +857,7 @@
DFDEE3FC18831099008B26AC /* OpenHABSettingsViewController.swift */,
DAEAA89A21E2611000267EA3 /* OpenHABNotificationsViewController.swift */,
DFDF452E1932032B00A6E581 /* OpenHABLegalViewController.swift */,
DF06F1F518FE7A160011E7B9 /* OpenHABSelectionTableViewController.swift */,
DF06F1F518FE7A160011E7B9 /* OpenHABSelectionCollectionViewController.swift */,
A07EF79F2230C0A20040919F /* OpenHABClientCertificatesViewController.swift */,
DF4B84101886DA9900F34902 /* Widgets */,
DF4A02291CF3157B006C3456 /* Drawer */,
Expand Down Expand Up @@ -895,6 +899,7 @@
DAEAA89E21E6B16600267EA3 /* UITableView.swift */,
DA7E1E47222EB00B002AEFD8 /* PlayerView.swift */,
DA21EAE12339621C001AB415 /* Throttler.swift */,
DA11B2472C8125E8004D96C9 /* FrameCellView.swift */,
);
name = Widgets;
sourceTree = "<group>";
Expand Down Expand Up @@ -1004,6 +1009,7 @@
938BF9C524EFCC0700E6B52F /* UILabel+Localization.swift */,
938BF9D224EFD0B700E6B52F /* UIViewController+Localization.swift */,
935B484525342B8E00E44CF0 /* URL+Static.swift */,
DABA07532B0F9E7A00708281 /* UICollectionViewCellRegistrationExtension.swift */,
);
name = Util;
sourceTree = "<group>";
Expand Down Expand Up @@ -1475,6 +1481,7 @@
DF4B84041885A53700F34902 /* OpenHABDataObject.swift in Sources */,
DAC65FC7236EDF3900F4501E /* SpinnerViewController.swift in Sources */,
DF4A02421CF34096006C3456 /* OpenHABDrawerItem.swift in Sources */,
DA11B2482C8125E8004D96C9 /* FrameCellView.swift in Sources */,
DA50C7BF2B0A65300009F716 /* SliderWithSwitchSupportUITableViewCell.swift in Sources */,
DF4A022C1CF315BA006C3456 /* OpenHABDrawerTableViewController.swift in Sources */,
DFDF452F1932032B00A6E581 /* OpenHABLegalViewController.swift in Sources */,
Expand All @@ -1483,13 +1490,14 @@
DAEAA89B21E2611000267EA3 /* OpenHABNotificationsViewController.swift in Sources */,
DF1B302D1CF5C667009C921C /* OpenHABNotification.swift in Sources */,
938BF9D324EFD0B700E6B52F /* UIViewController+Localization.swift in Sources */,
DF06F1F618FE7A160011E7B9 /* OpenHABSelectionTableViewController.swift in Sources */,
DF06F1F618FE7A160011E7B9 /* OpenHABSelectionCollectionViewController.swift in Sources */,
DAA42BA821DC97E000244B2A /* NotificationTableViewCell.swift in Sources */,
DAF0A28F2C56F1EE00A14A6A /* ColorPickerCell.swift in Sources */,
6595667E28E0BE8E00E8A53B /* MulticastDelegate.swift in Sources */,
DFDEE3FD18831099008B26AC /* OpenHABSettingsViewController.swift in Sources */,
938EDCE122C4FEB800661CA1 /* ScaleAspectFitImageView.swift in Sources */,
DAEAA89F21E6B16600267EA3 /* UITableView.swift in Sources */,
DABA07542B0F9E7A00708281 /* UICollectionViewCellRegistrationExtension.swift in Sources */,
DFB2624418830A3600D3244D /* OpenHABSitemapViewController.swift in Sources */,
653B54C2285E714900298ECD /* OpenHABViewController.swift in Sources */,
DFA16EC118898A8400EDB0BB /* SegmentedUITableViewCell.swift in Sources */,
Expand Down Expand Up @@ -1794,6 +1802,7 @@
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
INFOPLIST_FILE = openHABUITests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down Expand Up @@ -1840,6 +1849,7 @@
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
INFOPLIST_FILE = openHABUITests/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down Expand Up @@ -1903,7 +1913,7 @@
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = 4;
VERSIONING_SYSTEM = "apple-generic";
WATCHOS_DEPLOYMENT_TARGET = 7.0;
WATCHOS_DEPLOYMENT_TARGET = 8.0;
};
name = Debug;
};
Expand Down Expand Up @@ -1950,7 +1960,7 @@
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = 4;
VERSIONING_SYSTEM = "apple-generic";
WATCHOS_DEPLOYMENT_TARGET = 7.0;
WATCHOS_DEPLOYMENT_TARGET = 8.0;
};
name = Release;
};
Expand All @@ -1975,6 +1985,7 @@
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
INFOPLIST_FILE = openHABTestsSwift/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down Expand Up @@ -2018,6 +2029,7 @@
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
INFOPLIST_FILE = openHABTestsSwift/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down Expand Up @@ -2176,6 +2188,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "openHAB/openHAB-Prefix.pch";
INFOPLIST_FILE = "openHAB/openHAB-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down Expand Up @@ -2221,6 +2234,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "openHAB/openHAB-Prefix.pch";
INFOPLIST_FILE = "openHAB/openHAB-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 16.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down
Loading