Skip to content

Commit

Permalink
New version
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-desimone-1 committed Nov 17, 2023
1 parent bfbb741 commit 61e487b
Show file tree
Hide file tree
Showing 174 changed files with 97,288 additions and 1,801 deletions.
31 changes: 24 additions & 7 deletions SampleApp/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,28 @@ target 'Viafoura' do
end

post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end

# fix xcode 15 DT_TOOLCHAIN_DIR - remove after fix oficially - https://github.com/CocoaPods/CocoaPods/issues/12065
installer.aggregate_targets.each do |target|
target.xcconfigs.each do |variant, xcconfig|
xcconfig_path = target.client_root + target.xcconfig_relative_path(variant)
IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("DT_TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
end
end

installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.base_configuration_reference.is_a? Xcodeproj::Project::Object::PBXFileReference
xcconfig_path = config.base_configuration_reference.real_path
IO.write(xcconfig_path, IO.read(xcconfig_path).gsub("DT_TOOLCHAIN_DIR", "TOOLCHAIN_DIR"))
end
end
end
end
2 changes: 1 addition & 1 deletion SampleApp/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,6 @@ SPEC CHECKSUMS:
PromisesObjC: ab77feca74fa2823e7af4249b8326368e61014cb
SimpleKeychain: b50cef3b87939d480ea1143425c00f5b4b70fe21

PODFILE CHECKSUM: 20fbb42a49edd2e5748e5de5998ab8404cd93804
PODFILE CHECKSUM: e8b73b42bf97de71fee0c40c9b0d69cd78bf982a

COCOAPODS: 1.12.0
2 changes: 1 addition & 1 deletion SampleApp/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

10 changes: 5 additions & 5 deletions SampleApp/Viafoura.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -450,8 +450,8 @@
47B0096128179DF800EF93FD /* Resources */,
5AAEF5A1819B1F8289A16C03 /* [CP] Embed Pods Frameworks */,
47162763293FAA9400729F25 /* Embed Foundation Extensions */,
4710CE282A1689A900A4115D /* ShellScript */,
47E991D62A780D46006DE6F5 /* Embed Frameworks */,
4710CE282A1689A900A4115D /* ShellScript */,
);
buildRules = (
);
Expand Down Expand Up @@ -799,7 +799,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = Viafoura/Viafoura.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 65;
CURRENT_PROJECT_VERSION = 67;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = JJ3874BH56;
GENERATE_INFOPLIST_FILE = YES;
Expand All @@ -814,7 +814,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.64;
MARKETING_VERSION = 1.0.66;
PRODUCT_BUNDLE_IDENTIFIER = com.viafoura.sampleapp;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand All @@ -831,7 +831,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_ENTITLEMENTS = Viafoura/Viafoura.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 65;
CURRENT_PROJECT_VERSION = 67;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = JJ3874BH56;
GENERATE_INFOPLIST_FILE = YES;
Expand All @@ -846,7 +846,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.0.64;
MARKETING_VERSION = 1.0.66;
PRODUCT_BUNDLE_IDENTIFIER = com.viafoura.sampleapp;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_EMIT_LOC_STRINGS = YES;
Expand Down
2 changes: 1 addition & 1 deletion ViafouraCore.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'ViafouraCore'
s.version = '0.0.31'
s.version = '0.0.32'
s.swift_versions = ['5.0']
s.summary = 'Viafoura SDK'
s.description = 'This SDK allows you to integrate Viafoura tools into your iOS app.'
Expand Down
Loading

0 comments on commit 61e487b

Please sign in to comment.