archived whole old project
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"colors" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"platform" : "watchos",
|
||||
"size" : "1024x1024"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,198 @@
|
||||
import SwiftUI
|
||||
import Combine
|
||||
|
||||
// MARK: - Models
|
||||
|
||||
struct LessonBlock: Codable, Identifiable {
|
||||
var id: String { "\(day)-\(period)" }
|
||||
let day: String
|
||||
let period: String
|
||||
let timeStart: String
|
||||
let timeEnd: String
|
||||
let room: String
|
||||
let subject: String
|
||||
let group: String
|
||||
let teacher: String
|
||||
let color: String // "pink", "yellow", "green"
|
||||
|
||||
enum CodingKeys: String, CodingKey {
|
||||
case day, period
|
||||
case timeStart = "time_start"
|
||||
case timeEnd = "time_end"
|
||||
case room, subject, group, teacher, color
|
||||
}
|
||||
}
|
||||
|
||||
struct TimetableResponse: Codable {
|
||||
let day: String
|
||||
let lessons: [LessonBlock]
|
||||
}
|
||||
|
||||
// MARK: - ViewModel
|
||||
|
||||
class TimetableViewModel: ObservableObject {
|
||||
@Published var dayName: String = ""
|
||||
@Published var lessons: [LessonBlock] = []
|
||||
@Published var isLoading = true
|
||||
@Published var errorMessage: String?
|
||||
|
||||
func fetchTimetable() {
|
||||
isLoading = true
|
||||
|
||||
guard let url = Bundle.main.url(forResource: "mock", withExtension: "json"),
|
||||
let data = try? Data(contentsOf: url) else {
|
||||
errorMessage = "mock.json nicht gefunden"
|
||||
isLoading = false
|
||||
return
|
||||
}
|
||||
|
||||
do {
|
||||
let decoded = try JSONDecoder().decode(TimetableResponse.self, from: data)
|
||||
self.dayName = decoded.day
|
||||
self.lessons = decoded.lessons
|
||||
} catch {
|
||||
errorMessage = "JSON Fehler: \(error.localizedDescription)"
|
||||
}
|
||||
|
||||
isLoading = false
|
||||
}
|
||||
|
||||
|
||||
func loadMockData() {
|
||||
dayName = "Montag"
|
||||
lessons = [
|
||||
LessonBlock(day: "Montag", period: "1.", timeStart: "08:00", timeEnd: "08:55",
|
||||
room: "255", subject: "D", group: "G2", teacher: "VanC", color: "pink"),
|
||||
LessonBlock(day: "Montag", period: "2. & 3.", timeStart: "08:55", timeEnd: "10:25",
|
||||
room: "255", subject: "M", group: "G2", teacher: "ScLa", color: "yellow"),
|
||||
LessonBlock(day: "Montag", period: "4.", timeStart: "10:55", timeEnd: "11:40",
|
||||
room: "254", subject: "E", group: "G4", teacher: "RadF", color: "green"),
|
||||
LessonBlock(day: "Montag", period: "5.", timeStart: "11:40", timeEnd: "12:25",
|
||||
room: "255", subject: "D", group: "G2", teacher: "VanC", color: "pink"),
|
||||
]
|
||||
isLoading = false
|
||||
}
|
||||
}
|
||||
|
||||
// MARK: - Lesson Block View
|
||||
|
||||
struct LessonBlockView: View {
|
||||
let lesson: LessonBlock
|
||||
|
||||
var blockColor: Color {
|
||||
switch lesson.color {
|
||||
case "pink": return Color(red: 1.0, green: 0.85, blue: 0.88)
|
||||
case "yellow": return Color(red: 1.0, green: 1.0, blue: 0.82)
|
||||
case "green": return Color(red: 0.78, green: 0.95, blue: 0.84)
|
||||
default: return Color.gray.opacity(0.3)
|
||||
}
|
||||
}
|
||||
|
||||
var body: some View {
|
||||
VStack(spacing: 0) {
|
||||
// Top row: Room | Subject Group | Teacher
|
||||
HStack {
|
||||
Text(lesson.room)
|
||||
.font(.system(size: 14, weight: .bold, design: .monospaced))
|
||||
Spacer()
|
||||
Text("\(lesson.subject) \(lesson.group)")
|
||||
.font(.system(size: 14, weight: .bold, design: .monospaced))
|
||||
Spacer()
|
||||
Text(lesson.teacher)
|
||||
.font(.system(size: 14, weight: .bold, design: .monospaced))
|
||||
}
|
||||
.padding(.horizontal, 8)
|
||||
.padding(.top, 6)
|
||||
|
||||
// Bottom row: Period | Time
|
||||
HStack {
|
||||
Text(lesson.period)
|
||||
.font(.system(size: 13, weight: .semibold, design: .monospaced))
|
||||
Spacer()
|
||||
Text("\(lesson.timeStart)-\(lesson.timeEnd)")
|
||||
.font(.system(size: 13, weight: .semibold, design: .monospaced))
|
||||
}
|
||||
.padding(.horizontal, 8)
|
||||
.padding(.bottom, 6)
|
||||
}
|
||||
.background(blockColor)
|
||||
.cornerRadius(4)
|
||||
.overlay(
|
||||
RoundedRectangle(cornerRadius: 4)
|
||||
.stroke(Color.black.opacity(0.3), lineWidth: 1)
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
// MARK: - Main Content View
|
||||
|
||||
struct ContentView: View {
|
||||
@StateObject private var viewModel = TimetableViewModel()
|
||||
|
||||
var body: some View {
|
||||
Group {
|
||||
if viewModel.isLoading {
|
||||
ProgressView("Laden...")
|
||||
} else if let error = viewModel.errorMessage {
|
||||
VStack {
|
||||
Text(error)
|
||||
.font(.caption)
|
||||
.foregroundColor(.red)
|
||||
Button("Erneut versuchen") {
|
||||
viewModel.fetchTimetable()
|
||||
}
|
||||
.font(.caption2)
|
||||
}
|
||||
} else {
|
||||
ScrollView {
|
||||
VStack(spacing: 4) {
|
||||
Text(viewModel.dayName)
|
||||
.font(.system(size: 16, weight: .bold))
|
||||
.foregroundColor(.white)
|
||||
.padding(.bottom, 4)
|
||||
|
||||
ForEach(viewModel.lessons) { lesson in
|
||||
LessonBlockView(lesson: lesson)
|
||||
}
|
||||
}
|
||||
.padding(.horizontal, 2)
|
||||
}
|
||||
}
|
||||
}
|
||||
.onAppear {
|
||||
viewModel.fetchTimetable()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// MARK: - App Entry Point
|
||||
|
||||
@main
|
||||
struct StundenplanApp: App {
|
||||
var body: some Scene {
|
||||
WindowGroup {
|
||||
ContentView()
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Expected JSON format from your backend:
|
||||
|
||||
{
|
||||
"day": "Montag",
|
||||
"lessons": [
|
||||
{
|
||||
"period": "1.",
|
||||
"time_start": "08:00",
|
||||
"time_end": "08:55",
|
||||
"room": "255",
|
||||
"subject": "D",
|
||||
"group": "G2",
|
||||
"teacher": "VanC",
|
||||
"color": "pink",
|
||||
"day": "Montag"
|
||||
}
|
||||
]
|
||||
}
|
||||
*/
|
||||
@@ -0,0 +1,49 @@
|
||||
{
|
||||
"day": "Montag",
|
||||
"lessons": [
|
||||
{
|
||||
"period": "1.",
|
||||
"time_start": "08:00",
|
||||
"time_end": "08:55",
|
||||
"room": "255",
|
||||
"subject": "D",
|
||||
"group": "G2",
|
||||
"teacher": "VanC",
|
||||
"color": "pink",
|
||||
"day": "Montag"
|
||||
},
|
||||
{
|
||||
"period": "2. & 3.",
|
||||
"time_start": "08:55",
|
||||
"time_end": "10:25",
|
||||
"room": "255",
|
||||
"subject": "M",
|
||||
"group": "G2",
|
||||
"teacher": "ScLa",
|
||||
"color": "yellow",
|
||||
"day": "Montag"
|
||||
},
|
||||
{
|
||||
"period": "4.",
|
||||
"time_start": "10:55",
|
||||
"time_end": "11:40",
|
||||
"room": "254",
|
||||
"subject": "E",
|
||||
"group": "G4",
|
||||
"teacher": "RadF",
|
||||
"color": "green",
|
||||
"day": "Montag"
|
||||
},
|
||||
{
|
||||
"period": "5.",
|
||||
"time_start": "11:40",
|
||||
"time_end": "12:25",
|
||||
"room": "255",
|
||||
"subject": "D",
|
||||
"group": "G2",
|
||||
"teacher": "VanC",
|
||||
"color": "pink",
|
||||
"day": "Montag"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"colors" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"platform" : "watchos",
|
||||
"size" : "1024x1024"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
//
|
||||
// ContentView.swift
|
||||
// new-app Watch App
|
||||
//
|
||||
// Created by Theis on 23.02.26.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct WatchContentView: View {
|
||||
var body: some View {
|
||||
ScrollView {
|
||||
VStack(alignment: .leading) {
|
||||
Text("Lesson1")
|
||||
Text("Lesson2")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#Preview {
|
||||
WatchContentView()
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<document type="com.apple.InterfaceBuilder.WatchKit.Storyboard" version="3.0" toolsVersion="17150" targetRuntime="watchKit" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
|
||||
<dependencies>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="17122"/>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBWatchKitPlugin" version="17032"/>
|
||||
</dependencies>
|
||||
<scenes>
|
||||
<!--Interface Controller-->
|
||||
<scene sceneID="fRD-1l-P1O">
|
||||
<objects>
|
||||
<controller id="IGi-cB-aGO"/>
|
||||
</objects>
|
||||
</scene>
|
||||
</scenes>
|
||||
</document>
|
||||
@@ -0,0 +1,18 @@
|
||||
//
|
||||
// SwiftUIView.swift
|
||||
// watch-untis Watch App
|
||||
//
|
||||
// Created by Theis on 23.02.26.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct SwiftUIView: View {
|
||||
var body: some View {
|
||||
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
|
||||
}
|
||||
}
|
||||
|
||||
#Preview {
|
||||
SwiftUIView()
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
//
|
||||
// new_appApp.swift
|
||||
// new-app Watch App
|
||||
//
|
||||
// Created by Theis on 23.02.26.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
@main
|
||||
struct new_app_Watch_AppApp: App {
|
||||
var body: some Scene {
|
||||
WindowGroup {
|
||||
WatchContentView()
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
//
|
||||
// watch_untis_Watch_AppTests.swift
|
||||
// watch-untis Watch AppTests
|
||||
//
|
||||
// Created by Theis on 23.02.26.
|
||||
//
|
||||
|
||||
import Testing
|
||||
@testable import watch_untis_Watch_App
|
||||
|
||||
struct watch_untis_Watch_AppTests {
|
||||
|
||||
@Test func example() async throws {
|
||||
// Write your test here and use APIs like `#expect(...)` to check expected conditions.
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
//
|
||||
// watch_untis_Watch_AppUITests.swift
|
||||
// watch-untis Watch AppUITests
|
||||
//
|
||||
// Created by Theis on 23.02.26.
|
||||
//
|
||||
|
||||
import XCTest
|
||||
|
||||
final class watch_untis_Watch_AppUITests: XCTestCase {
|
||||
|
||||
override func setUpWithError() throws {
|
||||
// Put setup code here. This method is called before the invocation of each test method in the class.
|
||||
|
||||
// In UI tests it is usually best to stop immediately when a failure occurs.
|
||||
continueAfterFailure = false
|
||||
|
||||
// In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this.
|
||||
}
|
||||
|
||||
override func tearDownWithError() throws {
|
||||
// Put teardown code here. This method is called after the invocation of each test method in the class.
|
||||
}
|
||||
|
||||
@MainActor
|
||||
func testExample() throws {
|
||||
// UI tests must launch the application that they test.
|
||||
let app = XCUIApplication()
|
||||
app.launch()
|
||||
|
||||
// Use XCTAssert and related functions to verify your tests produce the correct results.
|
||||
}
|
||||
|
||||
@MainActor
|
||||
func testLaunchPerformance() throws {
|
||||
// This measures how long it takes to launch your application.
|
||||
measure(metrics: [XCTApplicationLaunchMetric()]) {
|
||||
XCUIApplication().launch()
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
//
|
||||
// watch_untis_Watch_AppUITestsLaunchTests.swift
|
||||
// watch-untis Watch AppUITests
|
||||
//
|
||||
// Created by Theis on 23.02.26.
|
||||
//
|
||||
|
||||
import XCTest
|
||||
|
||||
final class watch_untis_Watch_AppUITestsLaunchTests: XCTestCase {
|
||||
|
||||
override class var runsForEachTargetApplicationUIConfiguration: Bool {
|
||||
true
|
||||
}
|
||||
|
||||
override func setUpWithError() throws {
|
||||
continueAfterFailure = false
|
||||
}
|
||||
|
||||
@MainActor
|
||||
func testLaunch() throws {
|
||||
let app = XCUIApplication()
|
||||
app.launch()
|
||||
|
||||
// Insert steps here to perform after app launch but before taking a screenshot,
|
||||
// such as logging into a test account or navigating somewhere in the app
|
||||
|
||||
let attachment = XCTAttachment(screenshot: app.screenshot())
|
||||
attachment.name = "Launch Screen"
|
||||
attachment.lifetime = .keepAlways
|
||||
add(attachment)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,700 @@
|
||||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 77;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
C694B1122F4CF390002D638B /* watch-untis Watch App.app in Embed Watch Content */ = {isa = PBXBuildFile; fileRef = C694B1112F4CF390002D638B /* watch-untis Watch App.app */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
|
||||
C694B1422F4CF533002D638B /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = C694B1412F4CF52C002D638B /* LICENSE */; };
|
||||
C694B1442F4CF5D2002D638B /* .gitignore in Resources */ = {isa = PBXBuildFile; fileRef = C694B1432F4CF5B5002D638B /* .gitignore */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
C694B1132F4CF390002D638B /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = C694B1052F4CF390002D638B /* Project object */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = C694B1102F4CF390002D638B;
|
||||
remoteInfo = "watch-untis Watch App";
|
||||
};
|
||||
C694B1212F4CF391002D638B /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = C694B1052F4CF390002D638B /* Project object */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = C694B1102F4CF390002D638B;
|
||||
remoteInfo = "watch-untis Watch App";
|
||||
};
|
||||
C694B12B2F4CF391002D638B /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = C694B1052F4CF390002D638B /* Project object */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = C694B1102F4CF390002D638B;
|
||||
remoteInfo = "watch-untis Watch App";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXCopyFilesBuildPhase section */
|
||||
C694B1372F4CF391002D638B /* Embed Watch Content */ = {
|
||||
isa = PBXCopyFilesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
dstPath = "$(CONTENTS_FOLDER_PATH)/Watch";
|
||||
dstSubfolderSpec = 16;
|
||||
files = (
|
||||
C694B1122F4CF390002D638B /* watch-untis Watch App.app in Embed Watch Content */,
|
||||
);
|
||||
name = "Embed Watch Content";
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXCopyFilesBuildPhase section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
C694B10B2F4CF390002D638B /* watch-untis.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "watch-untis.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
C694B1112F4CF390002D638B /* watch-untis Watch App.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "watch-untis Watch App.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
C694B1202F4CF391002D638B /* watch-untis Watch AppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "watch-untis Watch AppTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
C694B12A2F4CF391002D638B /* watch-untis Watch AppUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "watch-untis Watch AppUITests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
C694B1412F4CF52C002D638B /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
|
||||
C694B1432F4CF5B5002D638B /* .gitignore */ = {isa = PBXFileReference; lastKnownFileType = text; path = .gitignore; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFileSystemSynchronizedRootGroup section */
|
||||
C694B1152F4CF390002D638B /* watch-untis Watch App */ = {
|
||||
isa = PBXFileSystemSynchronizedRootGroup;
|
||||
path = "watch-untis Watch App";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
C694B1232F4CF391002D638B /* watch-untis Watch AppTests */ = {
|
||||
isa = PBXFileSystemSynchronizedRootGroup;
|
||||
path = "watch-untis Watch AppTests";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
C694B12D2F4CF391002D638B /* watch-untis Watch AppUITests */ = {
|
||||
isa = PBXFileSystemSynchronizedRootGroup;
|
||||
path = "watch-untis Watch AppUITests";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
C694B14F2F4CFAC2002D638B /* watch-untis Watch App - AI_APP */ = {
|
||||
isa = PBXFileSystemSynchronizedRootGroup;
|
||||
path = "watch-untis Watch App - AI_APP";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXFileSystemSynchronizedRootGroup section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
C694B10E2F4CF390002D638B /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
C694B11D2F4CF391002D638B /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
C694B1272F4CF391002D638B /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
C694B1042F4CF390002D638B = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
C694B14F2F4CFAC2002D638B /* watch-untis Watch App - AI_APP */,
|
||||
C694B1412F4CF52C002D638B /* LICENSE */,
|
||||
C694B1432F4CF5B5002D638B /* .gitignore */,
|
||||
C694B1152F4CF390002D638B /* watch-untis Watch App */,
|
||||
C694B1232F4CF391002D638B /* watch-untis Watch AppTests */,
|
||||
C694B12D2F4CF391002D638B /* watch-untis Watch AppUITests */,
|
||||
C694B10C2F4CF390002D638B /* Products */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
C694B10C2F4CF390002D638B /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
C694B10B2F4CF390002D638B /* watch-untis.app */,
|
||||
C694B1112F4CF390002D638B /* watch-untis Watch App.app */,
|
||||
C694B1202F4CF391002D638B /* watch-untis Watch AppTests.xctest */,
|
||||
C694B12A2F4CF391002D638B /* watch-untis Watch AppUITests.xctest */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
C694B10A2F4CF390002D638B /* watch-untis */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = C694B1382F4CF391002D638B /* Build configuration list for PBXNativeTarget "watch-untis" */;
|
||||
buildPhases = (
|
||||
C694B1092F4CF390002D638B /* Resources */,
|
||||
C694B1372F4CF391002D638B /* Embed Watch Content */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
C694B1142F4CF390002D638B /* PBXTargetDependency */,
|
||||
);
|
||||
name = "watch-untis";
|
||||
packageProductDependencies = (
|
||||
);
|
||||
productName = "watch-untis";
|
||||
productReference = C694B10B2F4CF390002D638B /* watch-untis.app */;
|
||||
productType = "com.apple.product-type.application.watchapp2-container";
|
||||
};
|
||||
C694B1102F4CF390002D638B /* watch-untis Watch App */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = C694B1342F4CF391002D638B /* Build configuration list for PBXNativeTarget "watch-untis Watch App" */;
|
||||
buildPhases = (
|
||||
C694B10D2F4CF390002D638B /* Sources */,
|
||||
C694B10E2F4CF390002D638B /* Frameworks */,
|
||||
C694B10F2F4CF390002D638B /* Resources */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
fileSystemSynchronizedGroups = (
|
||||
C694B1152F4CF390002D638B /* watch-untis Watch App */,
|
||||
C694B14F2F4CFAC2002D638B /* watch-untis Watch App - AI_APP */,
|
||||
);
|
||||
name = "watch-untis Watch App";
|
||||
packageProductDependencies = (
|
||||
);
|
||||
productName = "watch-untis Watch App";
|
||||
productReference = C694B1112F4CF390002D638B /* watch-untis Watch App.app */;
|
||||
productType = "com.apple.product-type.application";
|
||||
};
|
||||
C694B11F2F4CF391002D638B /* watch-untis Watch AppTests */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = C694B13B2F4CF391002D638B /* Build configuration list for PBXNativeTarget "watch-untis Watch AppTests" */;
|
||||
buildPhases = (
|
||||
C694B11C2F4CF391002D638B /* Sources */,
|
||||
C694B11D2F4CF391002D638B /* Frameworks */,
|
||||
C694B11E2F4CF391002D638B /* Resources */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
C694B1222F4CF391002D638B /* PBXTargetDependency */,
|
||||
);
|
||||
fileSystemSynchronizedGroups = (
|
||||
C694B1232F4CF391002D638B /* watch-untis Watch AppTests */,
|
||||
);
|
||||
name = "watch-untis Watch AppTests";
|
||||
packageProductDependencies = (
|
||||
);
|
||||
productName = "watch-untis Watch AppTests";
|
||||
productReference = C694B1202F4CF391002D638B /* watch-untis Watch AppTests.xctest */;
|
||||
productType = "com.apple.product-type.bundle.unit-test";
|
||||
};
|
||||
C694B1292F4CF391002D638B /* watch-untis Watch AppUITests */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = C694B13E2F4CF391002D638B /* Build configuration list for PBXNativeTarget "watch-untis Watch AppUITests" */;
|
||||
buildPhases = (
|
||||
C694B1262F4CF391002D638B /* Sources */,
|
||||
C694B1272F4CF391002D638B /* Frameworks */,
|
||||
C694B1282F4CF391002D638B /* Resources */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
C694B12C2F4CF391002D638B /* PBXTargetDependency */,
|
||||
);
|
||||
fileSystemSynchronizedGroups = (
|
||||
C694B12D2F4CF391002D638B /* watch-untis Watch AppUITests */,
|
||||
);
|
||||
name = "watch-untis Watch AppUITests";
|
||||
packageProductDependencies = (
|
||||
);
|
||||
productName = "watch-untis Watch AppUITests";
|
||||
productReference = C694B12A2F4CF391002D638B /* watch-untis Watch AppUITests.xctest */;
|
||||
productType = "com.apple.product-type.bundle.ui-testing";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
C694B1052F4CF390002D638B /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
BuildIndependentTargetsInParallel = 1;
|
||||
LastSwiftUpdateCheck = 2620;
|
||||
LastUpgradeCheck = 2620;
|
||||
TargetAttributes = {
|
||||
C694B10A2F4CF390002D638B = {
|
||||
CreatedOnToolsVersion = 26.2;
|
||||
};
|
||||
C694B1102F4CF390002D638B = {
|
||||
CreatedOnToolsVersion = 26.2;
|
||||
};
|
||||
C694B11F2F4CF391002D638B = {
|
||||
CreatedOnToolsVersion = 26.2;
|
||||
TestTargetID = C694B1102F4CF390002D638B;
|
||||
};
|
||||
C694B1292F4CF391002D638B = {
|
||||
CreatedOnToolsVersion = 26.2;
|
||||
TestTargetID = C694B1102F4CF390002D638B;
|
||||
};
|
||||
};
|
||||
};
|
||||
buildConfigurationList = C694B1082F4CF390002D638B /* Build configuration list for PBXProject "watch-untis" */;
|
||||
developmentRegion = en;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
en,
|
||||
Base,
|
||||
);
|
||||
mainGroup = C694B1042F4CF390002D638B;
|
||||
minimizedProjectReferenceProxies = 1;
|
||||
preferredProjectObjectVersion = 77;
|
||||
productRefGroup = C694B10C2F4CF390002D638B /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
C694B10A2F4CF390002D638B /* watch-untis */,
|
||||
C694B1102F4CF390002D638B /* watch-untis Watch App */,
|
||||
C694B11F2F4CF391002D638B /* watch-untis Watch AppTests */,
|
||||
C694B1292F4CF391002D638B /* watch-untis Watch AppUITests */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
C694B1092F4CF390002D638B /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
C694B10F2F4CF390002D638B /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
C694B1422F4CF533002D638B /* LICENSE in Resources */,
|
||||
C694B1442F4CF5D2002D638B /* .gitignore in Resources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
C694B11E2F4CF391002D638B /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
C694B1282F4CF391002D638B /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
C694B10D2F4CF390002D638B /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
C694B11C2F4CF391002D638B /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
C694B1262F4CF391002D638B /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
C694B1142F4CF390002D638B /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
target = C694B1102F4CF390002D638B /* watch-untis Watch App */;
|
||||
targetProxy = C694B1132F4CF390002D638B /* PBXContainerItemProxy */;
|
||||
};
|
||||
C694B1222F4CF391002D638B /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
target = C694B1102F4CF390002D638B /* watch-untis Watch App */;
|
||||
targetProxy = C694B1212F4CF391002D638B /* PBXContainerItemProxy */;
|
||||
};
|
||||
C694B12C2F4CF391002D638B /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
target = C694B1102F4CF390002D638B /* watch-untis Watch App */;
|
||||
targetProxy = C694B12B2F4CF391002D638B /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
C694B1322F4CF391002D638B /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
|
||||
CLANG_ANALYZER_NONNULL = YES;
|
||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_ENABLE_OBJC_WEAK = YES;
|
||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_COMMA = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INFINITE_RECURSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
ENABLE_TESTABILITY = YES;
|
||||
ENABLE_USER_SCRIPT_SANDBOXING = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu17;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
|
||||
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
||||
MTL_FAST_MATH = YES;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
|
||||
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
C694B1332F4CF391002D638B /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
|
||||
CLANG_ANALYZER_NONNULL = YES;
|
||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_ENABLE_OBJC_WEAK = YES;
|
||||
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_COMMA = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INFINITE_RECURSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
||||
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
||||
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
||||
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
||||
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
||||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
ENABLE_NS_ASSERTIONS = NO;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
ENABLE_USER_SCRIPT_SANDBOXING = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu17;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
MTL_FAST_MATH = YES;
|
||||
SWIFT_COMPILATION_MODE = wholemodule;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
C694B1352F4CF391002D638B /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
ENABLE_PREVIEWS = YES;
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
INFOPLIST_KEY_CFBundleDisplayName = "watch-untis";
|
||||
INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
|
||||
INFOPLIST_KEY_WKWatchOnly = YES;
|
||||
LD_RUNPATH_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"@executable_path/Frameworks",
|
||||
);
|
||||
MARKETING_VERSION = 1.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "theis.watch-untis.watchkitapp";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = watchos;
|
||||
SKIP_INSTALL = YES;
|
||||
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||
SWIFT_APPROACHABLE_CONCURRENCY = YES;
|
||||
SWIFT_DEFAULT_ACTOR_ISOLATION = MainActor;
|
||||
SWIFT_EMIT_LOC_STRINGS = YES;
|
||||
SWIFT_UPCOMING_FEATURE_MEMBER_IMPORT_VISIBILITY = YES;
|
||||
SWIFT_VERSION = 5.0;
|
||||
TARGETED_DEVICE_FAMILY = 4;
|
||||
WATCHOS_DEPLOYMENT_TARGET = 26.2;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
C694B1362F4CF391002D638B /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
ENABLE_PREVIEWS = YES;
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
INFOPLIST_KEY_CFBundleDisplayName = "watch-untis";
|
||||
INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
|
||||
INFOPLIST_KEY_WKWatchOnly = YES;
|
||||
LD_RUNPATH_SEARCH_PATHS = (
|
||||
"$(inherited)",
|
||||
"@executable_path/Frameworks",
|
||||
);
|
||||
MARKETING_VERSION = 1.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "theis.watch-untis.watchkitapp";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = watchos;
|
||||
SKIP_INSTALL = YES;
|
||||
STRING_CATALOG_GENERATE_SYMBOLS = YES;
|
||||
SWIFT_APPROACHABLE_CONCURRENCY = YES;
|
||||
SWIFT_DEFAULT_ACTOR_ISOLATION = MainActor;
|
||||
SWIFT_EMIT_LOC_STRINGS = YES;
|
||||
SWIFT_UPCOMING_FEATURE_MEMBER_IMPORT_VISIBILITY = YES;
|
||||
SWIFT_VERSION = 5.0;
|
||||
TARGETED_DEVICE_FAMILY = 4;
|
||||
VALIDATE_PRODUCT = YES;
|
||||
WATCHOS_DEPLOYMENT_TARGET = 26.2;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
C694B1392F4CF391002D638B /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
INFOPLIST_KEY_CFBundleDisplayName = "watch-untis";
|
||||
MARKETING_VERSION = 1.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "theis.watch-untis";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = iphoneos;
|
||||
SWIFT_APPROACHABLE_CONCURRENCY = YES;
|
||||
SWIFT_UPCOMING_FEATURE_MEMBER_IMPORT_VISIBILITY = YES;
|
||||
SWIFT_VERSION = 5.0;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
C694B13A2F4CF391002D638B /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
INFOPLIST_KEY_CFBundleDisplayName = "watch-untis";
|
||||
MARKETING_VERSION = 1.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "theis.watch-untis";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = iphoneos;
|
||||
SWIFT_APPROACHABLE_CONCURRENCY = YES;
|
||||
SWIFT_UPCOMING_FEATURE_MEMBER_IMPORT_VISIBILITY = YES;
|
||||
SWIFT_VERSION = 5.0;
|
||||
VALIDATE_PRODUCT = YES;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
C694B13C2F4CF391002D638B /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
MARKETING_VERSION = 1.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "theis.watch-untis-Watch-AppTests";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = watchos;
|
||||
STRING_CATALOG_GENERATE_SYMBOLS = NO;
|
||||
SWIFT_APPROACHABLE_CONCURRENCY = YES;
|
||||
SWIFT_EMIT_LOC_STRINGS = NO;
|
||||
SWIFT_UPCOMING_FEATURE_MEMBER_IMPORT_VISIBILITY = YES;
|
||||
SWIFT_VERSION = 5.0;
|
||||
TARGETED_DEVICE_FAMILY = 4;
|
||||
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/watch-untis Watch App.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/watch-untis Watch App";
|
||||
WATCHOS_DEPLOYMENT_TARGET = 26.2;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
C694B13D2F4CF391002D638B /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
BUNDLE_LOADER = "$(TEST_HOST)";
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
MARKETING_VERSION = 1.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "theis.watch-untis-Watch-AppTests";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = watchos;
|
||||
STRING_CATALOG_GENERATE_SYMBOLS = NO;
|
||||
SWIFT_APPROACHABLE_CONCURRENCY = YES;
|
||||
SWIFT_EMIT_LOC_STRINGS = NO;
|
||||
SWIFT_UPCOMING_FEATURE_MEMBER_IMPORT_VISIBILITY = YES;
|
||||
SWIFT_VERSION = 5.0;
|
||||
TARGETED_DEVICE_FAMILY = 4;
|
||||
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/watch-untis Watch App.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/watch-untis Watch App";
|
||||
VALIDATE_PRODUCT = YES;
|
||||
WATCHOS_DEPLOYMENT_TARGET = 26.2;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
C694B13F2F4CF391002D638B /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
MARKETING_VERSION = 1.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "theis.watch-untis-Watch-AppUITests";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = watchos;
|
||||
STRING_CATALOG_GENERATE_SYMBOLS = NO;
|
||||
SWIFT_APPROACHABLE_CONCURRENCY = YES;
|
||||
SWIFT_EMIT_LOC_STRINGS = NO;
|
||||
SWIFT_UPCOMING_FEATURE_MEMBER_IMPORT_VISIBILITY = YES;
|
||||
SWIFT_VERSION = 5.0;
|
||||
TARGETED_DEVICE_FAMILY = 4;
|
||||
TEST_TARGET_NAME = "watch-untis Watch App";
|
||||
WATCHOS_DEPLOYMENT_TARGET = 26.2;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
C694B1402F4CF391002D638B /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 1;
|
||||
GENERATE_INFOPLIST_FILE = YES;
|
||||
MARKETING_VERSION = 1.0;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = "theis.watch-untis-Watch-AppUITests";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = watchos;
|
||||
STRING_CATALOG_GENERATE_SYMBOLS = NO;
|
||||
SWIFT_APPROACHABLE_CONCURRENCY = YES;
|
||||
SWIFT_EMIT_LOC_STRINGS = NO;
|
||||
SWIFT_UPCOMING_FEATURE_MEMBER_IMPORT_VISIBILITY = YES;
|
||||
SWIFT_VERSION = 5.0;
|
||||
TARGETED_DEVICE_FAMILY = 4;
|
||||
TEST_TARGET_NAME = "watch-untis Watch App";
|
||||
VALIDATE_PRODUCT = YES;
|
||||
WATCHOS_DEPLOYMENT_TARGET = 26.2;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
C694B1082F4CF390002D638B /* Build configuration list for PBXProject "watch-untis" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
C694B1322F4CF391002D638B /* Debug */,
|
||||
C694B1332F4CF391002D638B /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
C694B1342F4CF391002D638B /* Build configuration list for PBXNativeTarget "watch-untis Watch App" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
C694B1352F4CF391002D638B /* Debug */,
|
||||
C694B1362F4CF391002D638B /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
C694B1382F4CF391002D638B /* Build configuration list for PBXNativeTarget "watch-untis" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
C694B1392F4CF391002D638B /* Debug */,
|
||||
C694B13A2F4CF391002D638B /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
C694B13B2F4CF391002D638B /* Build configuration list for PBXNativeTarget "watch-untis Watch AppTests" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
C694B13C2F4CF391002D638B /* Debug */,
|
||||
C694B13D2F4CF391002D638B /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
C694B13E2F4CF391002D638B /* Build configuration list for PBXNativeTarget "watch-untis Watch AppUITests" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
C694B13F2F4CF391002D638B /* Debug */,
|
||||
C694B1402F4CF391002D638B /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = C694B1052F4CF390002D638B /* Project object */;
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Workspace
|
||||
version = "1.0">
|
||||
<FileRef
|
||||
location = "self:">
|
||||
</FileRef>
|
||||
</Workspace>
|
||||
Reference in New Issue
Block a user