Skip to content

Commit

Permalink
ios and tvos min -> 11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredmixpanel committed Mar 25, 2024
1 parent 14d6694 commit e46ee38
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Mixpanel.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Pod::Spec.new do |s|
s.requires_arc = true
s.libraries = 'icucore'
s.swift_version = '4.2'
s.ios.deployment_target = '12.0'
s.ios.deployment_target = '11.0'
all_files = 'Sources/**/*.{m,h}'
public_header_files = 'Sources/Mixpanel.h', 'Sources/MixpanelType.h', 'Sources/MixpanelGroup.h', 'Sources/MixpanelType.h', 'Sources/MixpanelPeople.h'
private_header_files = 'Sources/MixpanelPeoplePrivate.h', 'Sources/MixpanelGroupPrivate.h', 'Sources/MPNetworkPrivate.h', 'Sources/MixpanelPrivate.h', 'Sources/SessionMetadata.h', 'Sources/MixpanelIdentity.h', 'Sources/MPJSONHander.h', 'Sources/MixpanelPersistence.h', 'Sources/MPDB.h'
Expand All @@ -19,7 +19,7 @@ Pod::Spec.new do |s|
s.ios.public_header_files = public_header_files
s.ios.private_header_files = private_header_files
s.ios.frameworks = 'UIKit', 'Foundation', 'SystemConfiguration', 'CoreTelephony', 'Accelerate', 'CoreGraphics', 'QuartzCore', 'StoreKit'
s.tvos.deployment_target = '12.0'
s.tvos.deployment_target = '11.0'
s.tvos.source_files = all_files
s.tvos.exclude_files = 'Sources/MixpanelWatchProperties.{m,h}','Sources/Include/*.h'
s.tvos.public_header_files = public_header_files
Expand Down
8 changes: 4 additions & 4 deletions Mixpanel.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1125,7 +1125,7 @@
GCC_WARN_INHIBIT_ALL_WARNINGS = NO;
INFOPLIST_FILE = "$(SRCROOT)/Info.plist";
INSTALL_PATH = "@rpath";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = Sources/ios.modulemap;
OTHER_CFLAGS = "";
Expand Down Expand Up @@ -1166,7 +1166,7 @@
GCC_WARN_INHIBIT_ALL_WARNINGS = NO;
INFOPLIST_FILE = "$(SRCROOT)/Info.plist";
INSTALL_PATH = "@rpath";
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MODULEMAP_FILE = Sources/ios.modulemap;
OTHER_CFLAGS = "";
Expand Down Expand Up @@ -1433,7 +1433,7 @@
SDKROOT = appletvos;
SUPPORTED_PLATFORMS = "appletvsimulator appletvos";
TARGETED_DEVICE_FAMILY = 3;
TVOS_DEPLOYMENT_TARGET = 12.0;
TVOS_DEPLOYMENT_TARGET = 11.0;
VALID_ARCHS = "$(ARCHS_STANDARD)";
};
name = Debug;
Expand Down Expand Up @@ -1474,7 +1474,7 @@
SDKROOT = appletvos;
SUPPORTED_PLATFORMS = "appletvsimulator appletvos";
TARGETED_DEVICE_FAMILY = 3;
TVOS_DEPLOYMENT_TARGET = 12.0;
TVOS_DEPLOYMENT_TARGET = 11.0;
VALID_ARCHS = "$(ARCHS_STANDARD)";
};
name = Release;
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import PackageDescription
let package = Package(
name: "Mixpanel",
platforms: [
.iOS(.v12),
.tvOS(.v12),
.iOS(.v11),
.tvOS(.v11),
.macOS(.v10_13),
.watchOS(.v4),
],
Expand Down

0 comments on commit e46ee38

Please sign in to comment.