Skip to content

Commit 3bbee2e

Browse files
authored
Update Package.swift (#52)
1 parent 4b82591 commit 3bbee2e

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

Package.swift

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
// swift-tools-version:5.3
1+
// swift-tools-version:5.9
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
55

66
let package = Package(
77
name: "VisualEffectView",
88
platforms: [
9-
.iOS(.v14)
9+
.iOS(.v14),
10+
.macOS(.v14),
1011
],
1112
products: [
1213
// Products define the executables and libraries produced by a package, and make them visible to other packages.
@@ -21,10 +22,6 @@ let package = Package(
2122
targets: [
2223
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
2324
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
24-
.target(
25-
name: "VisualEffectView",
26-
dependencies: [],
27-
path: "Sources"
28-
)
25+
.target(name: "VisualEffectView")
2926
]
3027
)

VisualEffectView.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@
439439
"@loader_path/Frameworks",
440440
);
441441
MARKETING_VERSION = 4.1.5;
442-
PRODUCT_BUNDLE_IDENTIFIER = com.efremidze.VisualEffectView;
442+
PRODUCT_BUNDLE_IDENTIFIER = com.example.VisualEffectView;
443443
PRODUCT_NAME = "$(TARGET_NAME)";
444444
SKIP_INSTALL = YES;
445445
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@@ -464,7 +464,7 @@
464464
"@loader_path/Frameworks",
465465
);
466466
MARKETING_VERSION = 4.1.5;
467-
PRODUCT_BUNDLE_IDENTIFIER = com.efremidze.VisualEffectView;
467+
PRODUCT_BUNDLE_IDENTIFIER = com.example.VisualEffectView;
468468
PRODUCT_NAME = "$(TARGET_NAME)";
469469
SKIP_INSTALL = YES;
470470
};
@@ -481,7 +481,7 @@
481481
"$(inherited)",
482482
"@executable_path/Frameworks",
483483
);
484-
PRODUCT_BUNDLE_IDENTIFIER = com.efremidze.Example;
484+
PRODUCT_BUNDLE_IDENTIFIER = com.example;
485485
PRODUCT_NAME = "$(TARGET_NAME)";
486486
};
487487
name = Debug;
@@ -497,7 +497,7 @@
497497
"$(inherited)",
498498
"@executable_path/Frameworks",
499499
);
500-
PRODUCT_BUNDLE_IDENTIFIER = com.efremidze.Example;
500+
PRODUCT_BUNDLE_IDENTIFIER = com.example;
501501
PRODUCT_NAME = "$(TARGET_NAME)";
502502
};
503503
name = Release;

0 commit comments

Comments
 (0)