Skip to content

Commit 7318cb5

Browse files
Add swift package
1 parent b800a93 commit 7318cb5

28 files changed

+298
-257
lines changed

.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ButtonClickStyle/.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.DS_Store
2+
/.build
3+
/Packages
4+
/*.xcodeproj
5+
xcuserdata/
6+
DerivedData/
7+
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Example/ButtonClickStyle.xcodeproj/project.pbxproj

Lines changed: 143 additions & 133 deletions
Large diffs are not rendered by default.

Example/Pods/Pods.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
// swift-tools-version:5.5
2+
// The swift-tools-version declares the minimum version of Swift required to build this package.
3+
4+
import PackageDescrbiption
5+
6+
let package = Package(
7+
name: "ButtonClickStyle",
8+
platforms: [
9+
// Add support for all platforms starting from a specific version.
10+
.iOS(.v14),
11+
],
12+
products: [
13+
// Products define the executables and libraries a package produces, and make them visible to other packages.
14+
.library(
15+
name: "ButtonClickStyle",
16+
targets: ["ButtonClickStyle"]),
17+
],
18+
dependencies: [
19+
// Dependencies declare other packages that this package depends on.
20+
// .package(url: /* package url */, from: "1.0.0"),
21+
],
22+
targets: [
23+
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
24+
// Targets can depend on other targets in this package, and on products in packages this package depends on.
25+
.target(
26+
name: "ButtonClickStyle",
27+
dependencies: []),
28+
]
29+
)

Source/ButtonClickStyle/Animations/ButtonClickStyleAnim+UIViewAlpha.swift renamed to Sources/ButtonClickStyle/Animations/ButtonClickStyleAnim+UIViewAlpha.swift

File renamed without changes.

Source/ButtonClickStyle/Animations/ButtonClickStyleAnim+UIViewAndroidPulse.swift renamed to Sources/ButtonClickStyle/Animations/ButtonClickStyleAnim+UIViewAndroidPulse.swift

File renamed without changes.

Source/ButtonClickStyle/Animations/ButtonClickStyleAnim+UIViewColor.swift renamed to Sources/ButtonClickStyle/Animations/ButtonClickStyleAnim+UIViewColor.swift

File renamed without changes.

Source/ButtonClickStyle/Animations/ButtonClickStyleAnim+UIViewColorFlat.swift renamed to Sources/ButtonClickStyle/Animations/ButtonClickStyleAnim+UIViewColorFlat.swift

File renamed without changes.

Source/ButtonClickStyle/Animations/ButtonClickStyleAnim+UIViewFlash.swift renamed to Sources/ButtonClickStyle/Animations/ButtonClickStyleAnim+UIViewFlash.swift

File renamed without changes.

0 commit comments

Comments
 (0)