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

Target downgraded to iOS 10 #127

Merged
merged 2 commits into from
Oct 2, 2018
Merged
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
10 changes: 7 additions & 3 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,18 @@ PODS:
DEPENDENCIES:
- arek (from `../`)

SPEC REPOS:
/~https://github.com/cocoapods/specs.git:
- PMAlertController

EXTERNAL SOURCES:
arek:
:path: ../
:path: "../"

SPEC CHECKSUMS:
arek: c24ee64110b3218894403653437ba1a45a1f1316
arek: c0e7b1a53b5496e026a3e2a819f293936b44ab24
PMAlertController: 06dab8160066fc4ce991c880e3722cd403e2926a

PODFILE CHECKSUM: 51391b981566b427912c687e0f5ba15813bf3aa4

COCOAPODS: 1.4.0
COCOAPODS: 1.5.3
22 changes: 4 additions & 18 deletions Example/arek_example.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@
7569AF8A1E7447F300E81C95 /* Frameworks */,
7569AF8B1E7447F300E81C95 /* Resources */,
C9C6CBF2904F6DB01B9F8DA2 /* [CP] Embed Pods Frameworks */,
02E1FE4A0A2D25E9D073C746 /* [CP] Copy Pods Resources */,
);
buildRules = (
);
Expand Down Expand Up @@ -323,21 +322,6 @@
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
02E1FE4A0A2D25E9D073C746 /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "[CP] Copy Pods Resources";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-arek_example/Pods-arek_example-resources.sh\"\n";
showEnvVarsInLog = 0;
};
749983BE198146DE8643834E /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
Expand Down Expand Up @@ -497,7 +481,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -546,7 +530,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
Expand All @@ -565,6 +549,7 @@
CODE_SIGN_STYLE = Manual;
DEVELOPMENT_TEAM = "";
INFOPLIST_FILE = arek_example/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.ennioma.arek;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -585,6 +570,7 @@
CODE_SIGN_STYLE = Manual;
DEVELOPMENT_TEAM = "";
INFOPLIST_FILE = arek_example/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.ennioma.arek;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
2 changes: 1 addition & 1 deletion arek.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Pod::Spec.new do |s|
s.author = { 'Ennio Masi' => 'ennio.masi@gmail.com' }
s.source = { :git => '/~https://github.com/ennioma/arek.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/ennioma'
s.ios.deployment_target = '11.0'
s.ios.deployment_target = '10.0'
s.swift_version = '4.2'
s.source_files = 'code/Classes/**/*', 'code/Classes/Core/**/*', 'code/Classes/Permissions/**/*'
s.exclude_files = 'Example/*'
Expand Down