Skip to content
This repository was archived by the owner on Apr 2, 2025. It is now read-only.

Commit 0ac904c

Browse files
authored
Adds support for iOS 13 (#411)
1 parent 9b675a8 commit 0ac904c

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

Example/Example.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@
568568
CODE_SIGN_IDENTITY = "iPhone Developer";
569569
DEVELOPMENT_TEAM = HT94948NDD;
570570
INFOPLIST_FILE = "$(SRCROOT)/Example/Supporting Files/Info.plist";
571-
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
571+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
572572
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
573573
MARKETING_VERSION = 2.0.2;
574574
PRODUCT_BUNDLE_IDENTIFIER = com.facebook.Facebook;
@@ -586,7 +586,7 @@
586586
CODE_SIGN_IDENTITY = "iPhone Developer";
587587
DEVELOPMENT_TEAM = HT94948NDD;
588588
INFOPLIST_FILE = "$(SRCROOT)/Example/Supporting Files/Info.plist";
589-
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
589+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
590590
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
591591
MARKETING_VERSION = 2.0.2;
592592
PRODUCT_BUNDLE_IDENTIFIER = com.facebook.Facebook;

Example/Pods/Pods.xcodeproj/project.pbxproj

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

Package.swift

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

44
let package = Package(
55
name: "Siren",
6-
platforms: [.iOS(.v15), .tvOS(.v15)],
6+
platforms: [.iOS(.v13), .tvOS(.v13)],
77
products: [.library(name: "Siren", targets: ["Siren"])],
88
targets: [.target(name: "Siren", path: "Sources", resources: [.copy("Siren.bundle")])],
99
swiftLanguageVersions: [.v5]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Siren is built to work with the [**Semantic Versioning**](https://semver.org/) s
4444
## Features
4545

4646
### Current Features
47-
- [x] Compatible with iOS 15+ and tvOS 15+
47+
- [x] Compatible with iOS 13+ and tvOS 13+
4848
- [x] CocoaPods and Swift Package Manager Support (see [Installation Instructions](https://github.com/ArtSabintsev/Siren#installation-instructions))
4949
- [x] Three Types of Alerts (see [Screenshots](https://github.com/ArtSabintsev/Siren#screenshots))
5050
- [x] Highly Customizable Presentation Rules (see [Implementation Examples](https://github.com/ArtSabintsev/Siren#implementation-examples))

Siren.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Pod::Spec.new do |s|
1414
DESC
1515

1616
# Compatibility & Sources
17-
s.ios.deployment_target = '15.0'
18-
s.tvos.deployment_target = '15.0'
17+
s.ios.deployment_target = '13.0'
18+
s.tvos.deployment_target = '13.0'
1919
s.source = { :git => "https://github.com/ArtSabintsev/Siren.git", :tag => s.version.to_s }
2020
s.source_files = 'Sources/**/*.swift'
2121
s.resources = 'Sources/Siren.bundle'

0 commit comments

Comments
 (0)