Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
20 changes: 20 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// swift-tools-version:5.7.0
import PackageDescription

let package = Package(
name: "YXWaveView",
platforms: [
.iOS(.v11),
],
products: [
.library(
name: "YXWaveView",
targets: ["YXWaveView"]),
],
targets: [
.target(
name: "YXWaveView",
path: "YXWaveView"
)
]
)
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ A water wave animation view with a over view float.
`Podfile` add this:

```
platform :ios, '8.0'
platform :ios, '11.0'

pod 'YXWaveView'
```
Expand Down
2 changes: 1 addition & 1 deletion README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
在 `Podfile` 中添加:

```
platform :ios, '8.0'
platform :ios, '11.0'

pod 'YXWaveView'
```
Expand Down
2 changes: 1 addition & 1 deletion YXWaveView.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Pod::Spec.new do |s|
s.source_files = "YXWaveView"
s.swift_version = "5.0"

s.ios.deployment_target = '8.0'
s.ios.deployment_target = '11.0'

s.frameworks = "Foundation"
s.requires_arc = true
Expand Down
4 changes: 2 additions & 2 deletions YXWaveView.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = YXWaveView/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.yourtion.YXWaveView;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -291,7 +291,7 @@
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = YXWaveView/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.yourtion.YXWaveView;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down