Skip to content

Commit 27da7ac

Browse files
authored
Merge pull request #5 from CuriositySoftware/change_iossample
Changed the configuration of the iOS Sample.
2 parents 9701983 + 7a0922d commit 27da7ac

File tree

15 files changed

+469
-329
lines changed

15 files changed

+469
-329
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import Foundation
2-
2+
import Utility
33
public struct APIClient {
44
public init() {}
55

66
public func request() -> String {
7-
"response"
7+
"response \(Echo.run(number: 1))"
88
}
99
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#import <Foundation/Foundation.h>
2+
3+
//! Project version number for AppFeature.
4+
FOUNDATION_EXPORT double AppFeatureVersionNumber;
5+
6+
//! Project version string for AppFeature.
7+
FOUNDATION_EXPORT const unsigned char AppFeatureVersionString[];
8+
9+
// In this header, you should import all the public headers of your framework using statements like #import <AppFeature/PublicHeader.h>
10+
11+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#import <Foundation/Foundation.h>
2+
3+
//! Project version number for FeatureA.
4+
FOUNDATION_EXPORT double FeatureAVersionNumber;
5+
6+
//! Project version string for FeatureA.
7+
FOUNDATION_EXPORT const unsigned char FeatureAVersionString[];
8+
9+
// In this header, you should import all the public headers of your framework using statements like #import <FeatureA/PublicHeader.h>
10+
11+
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import SwiftUI
2+
import SDWebImage
3+
4+
struct FeatureAView: View {
5+
var body: some View {
6+
Text("A")
7+
}
8+
}
9+
10+
struct FeatureAView_Previews: PreviewProvider {
11+
static var previews: some View {
12+
FeatureAView()
13+
}
14+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#import <Foundation/Foundation.h>
2+
3+
//! Project version number for FeatureB.
4+
FOUNDATION_EXPORT double FeatureBVersionNumber;
5+
6+
//! Project version string for FeatureB.
7+
FOUNDATION_EXPORT const unsigned char FeatureBVersionString[];
8+
9+
// In this header, you should import all the public headers of your framework using statements like #import <FeatureB/PublicHeader.h>
10+
11+

Samples/SampleiOSApp/Modules/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PackageDescription
55

66
let package = Package(
77
name: "Modules",
8-
platforms: [.iOS("16.4")],
8+
platforms: [.iOS("16.3")],
99
products: [
1010
// Products define the executables and libraries a package produces, and make them visible to other packages.
1111
.library(

Samples/SampleiOSApp/MyEmbedFramework/Echo.swift

Lines changed: 0 additions & 8 deletions
This file was deleted.

Samples/SampleiOSApp/MyEmbedFramework/MyEmbedFramework.docc/MyEmbedFramework.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

Samples/SampleiOSApp/MyEmbedFramework/MyEmbedFramework.h

Lines changed: 0 additions & 11 deletions
This file was deleted.

Samples/SampleiOSApp/MyEmbedFrameworkTests/MyEmbedFrameworkTests.swift

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)