Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Devs want to deprecate iOS 13 support #1107

Open
wants to merge 1 commit into
base: feature/entry-widget-and-secure-conversations-v2
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion GliaWidgets.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/salemove/ios-sdk-widgets.git', :tag => s.version.to_s }

s.module_name = 'GliaWidgets'
s.ios.deployment_target = '13.0'
s.ios.deployment_target = '14.0'
s.source_files = 'GliaWidgets/**/*.swift'
s.swift_version = '5.3'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import Foundation
#if DEBUG
extension QueuesMonitor.Environment {
static let mock: Self = .init(
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ let package = Package(
name: "GliaWidgets",
defaultLocalization: .init(stringLiteral: "en"),
platforms: [
.iOS(.v13)
.iOS(.v14)
],
products: [
.library(
Expand Down
2 changes: 1 addition & 1 deletion Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugin 'cocoapods-no-autoimports'
# cocoapods-no-autoimports__pods = ['Pods-GliaWidgets.debug']
project 'GliaWidgets.xcodeproj'

DEPLOYMENT_TARGET = '13.0'
DEPLOYMENT_TARGET = '14.0'

platform :ios, DEPLOYMENT_TARGET

Expand Down
2 changes: 1 addition & 1 deletion Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ SPEC CHECKSUMS:
TwilioVoice: 9563c9ad71b9ab7bbad0b59b67cfe4be96c75d23
WebRTC-lib: 4e9a17058f880cd658e88383c1ac8f1119af3700

PODFILE CHECKSUM: c88b58a44d219be0b6830c83686a1f63c44b5057
PODFILE CHECKSUM: 6e671efd7fbcde1779d6bba89f39a8e1edc8fa6d

COCOAPODS: 1.15.2
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Glia Technologies

## Requirements

- iOS 13+
- iOS 14+
- [Xcode 15.1+](https://developer.apple.com/xcode/)
- Swift 5.3
- [Git LFS](https://git-lfs.github.com/)
Expand Down
2 changes: 1 addition & 1 deletion integrations/SwiftPackageManager/spm-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ targets:
SpmSampleApp:
type: application
platform: iOS
deploymentTarget: "13.0"
deploymentTarget: "14.0"
info:
path: Sources/Info.plist
sources: [Sources]
Expand Down
2 changes: 1 addition & 1 deletion templates/GliaWidgets.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Pod::Spec.new do |s|
s.source = { :git => 'https://github.com/salemove/ios-sdk-widgets.git', :tag => s.version.to_s }

s.module_name = 'GliaWidgets'
s.ios.deployment_target = '13.0'
s.ios.deployment_target = '14.0'
s.source_files = 'GliaWidgets/**/*.swift'
s.swift_version = '5.3'

Expand Down
Loading