Skip to content

Commit

Permalink
Merge branch 'release/5.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
defagos committed Oct 23, 2020
2 parents 10a9634 + d21f2bc commit 3d93045
Show file tree
Hide file tree
Showing 145 changed files with 2,013 additions and 3,376 deletions.
12 changes: 5 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
.DS_Store

/.build
/Packages
/*.xcodeproj
xcuserdata/

*.xcscmblueprint
xcuserdata

/archive
/build

/Carthage
/Cartfile.private
/Cartfile.resolved

/fastlane/*.xcresult
/fastlane/*.xml

Expand Down
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded</key>
<false/>
</dict>
</plist>
5 changes: 0 additions & 5 deletions Cartfile

This file was deleted.

1 change: 0 additions & 1 deletion Cartfile.private.common

This file was deleted.

1 change: 0 additions & 1 deletion Cartfile.private.proprietary

This file was deleted.

1 change: 0 additions & 1 deletion Cartfile.private.public

This file was deleted.

16 changes: 0 additions & 16 deletions Cartfile.resolved.proprietary

This file was deleted.

16 changes: 0 additions & 16 deletions Cartfile.resolved.public

This file was deleted.

25 changes: 0 additions & 25 deletions Common.xcconfig

This file was deleted.

23 changes: 22 additions & 1 deletion Demo/Demo.xcconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
#include "../Common.xcconfig"
// Version information
MARKETING_VERSION = 5.0.0

// Deployment targets
IPHONEOS_DEPLOYMENT_TARGET = 9.0
TVOS_DEPLOYMENT_TARGET = 12.0

// Configuration to have a single target built for all platforms
// See https://davedelong.com/blog/2018/11/15/building-a-crossplatform-framework/
SUPPORTED_PLATFORMS = iphoneos iphonesimulator appletvos appletvsimulator
TARGETED_DEVICE_FAMILY = 1,2,3

// Setup to enable plaform suffixes to enable sources or resources for a specific platform only
// See https://davedelong.com/blog/2018/07/25/conditional-compilation-in-swift-part-2/
IOS_FILES = *~ios.*
TVOS_FILES = *~tvos.*

EXCLUDED_SOURCE_FILE_NAMES = $(IOS_FILES) $(TVOS_FILES)

INCLUDED_SOURCE_FILE_NAMES =
INCLUDED_SOURCE_FILE_NAMES[sdk=iphone*] = $(IOS_FILES)
INCLUDED_SOURCE_FILE_NAMES[sdk=appletv*] = $(TVOS_FILES)

LAUNCH_SCREEN[sdk=iphone*] = LaunchScreen~ios
LAUNCH_SCREEN[sdk=appletv*] =
Expand Down
Loading

0 comments on commit 3d93045

Please sign in to comment.