From 2db965b63355f893740bc7245bd016c2c22f9c7e Mon Sep 17 00:00:00 2001 From: Ciprian Redinciuc Date: Tue, 20 Dec 2016 17:28:08 +0200 Subject: [PATCH 01/14] Update README.md Fix init call typo. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 736aaf6..6f8a988 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Simply set `UICollectionViewLeftAlignedLayout` as the layout object for your col ```objc CGRect frame = ... -UICollectionViewLeftAlignedLayout *layout = [UICollectionViewLeftAlignedLayout alloc] init]; +UICollectionViewLeftAlignedLayout *layout = [[UICollectionViewLeftAlignedLayout alloc] init]; UICollectionView *leftAlignedCollectionView = [[UICollectionView alloc] initWithFrame:frame collectionViewLayout:layout]; ``` From be49dd257a1f7fc72aafc0fbd7564f57e0fafc55 Mon Sep 17 00:00:00 2001 From: Ada Turner Date: Mon, 7 Aug 2017 14:48:23 -0600 Subject: [PATCH 02/14] fix typo --- .../UICollectionViewLeftAlignedLayout.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.m b/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.m index 5a859ec..c4bf2b6 100644 --- a/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.m +++ b/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.m @@ -77,7 +77,7 @@ - (UICollectionViewLayoutAttributes *)layoutAttributesForItemAtIndexPath:(NSInde layoutWidth, currentFrame.size.height); // if the current frame, once left aligned to the left and stretched to the full collection view - // widht intersects the previous frame then they are on the same line + // width intersects the previous frame then they are on the same line BOOL isFirstItemInRow = !CGRectIntersectsRect(previousFrame, strecthedCurrentFrame); if (isFirstItemInRow) { From 55ef741a80e9c7cb57e2de22ba9640d93a196a60 Mon Sep 17 00:00:00 2001 From: MussaCharles Date: Thu, 17 Nov 2022 23:11:41 +0900 Subject: [PATCH 03/14] Add Swift package manager support --- .../contents.xcworkspacedata | 7 ++++++ Package.swift | 24 +++++++++++++++++++ .../project.pbxproj | 21 ++++++++++++++-- .../xcshareddata/IDEWorkspaceChecks.plist | 8 +++++++ .../UICollectionViewLeftAlignedLayout.m | 0 .../UICollectionViewLeftAlignedLayout.h | 0 6 files changed, 58 insertions(+), 2 deletions(-) create mode 100644 .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata create mode 100644 Package.swift create mode 100644 UICollectionViewLeftAlignedLayout.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist rename UICollectionViewLeftAlignedLayout/{ => Sources}/UICollectionViewLeftAlignedLayout.m (100%) rename UICollectionViewLeftAlignedLayout/{ => include}/UICollectionViewLeftAlignedLayout.h (100%) diff --git a/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..04c2138 --- /dev/null +++ b/Package.swift @@ -0,0 +1,24 @@ +// swift-tools-version: 5.6 +// The swift-tools-version declares the minimum version of Swift required to build this package. + +import PackageDescription + +let package = Package( + name: "UICollectionViewLeftAlignedLayout", + platforms: [.iOS(.v13)], + products: [ + .library( + name: "UICollectionViewLeftAlignedLayout", + targets: ["UICollectionViewLeftAlignedLayout"]), + ], + dependencies: [], + targets: [ + .target( + name: "UICollectionViewLeftAlignedLayout", + dependencies: [], + path: "UICollectionViewLeftAlignedLayout", + exclude: ["Info.plist"], + publicHeadersPath: "include" + ) + ] +) diff --git a/UICollectionViewLeftAlignedLayout.xcodeproj/project.pbxproj b/UICollectionViewLeftAlignedLayout.xcodeproj/project.pbxproj index 939aa61..b6415b5 100644 --- a/UICollectionViewLeftAlignedLayout.xcodeproj/project.pbxproj +++ b/UICollectionViewLeftAlignedLayout.xcodeproj/project.pbxproj @@ -29,6 +29,22 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ + 63F15DE32926767F00D5FFA0 /* include */ = { + isa = PBXGroup; + children = ( + CE70D2CE1C5D982A00C57988 /* UICollectionViewLeftAlignedLayout.h */, + ); + path = include; + sourceTree = ""; + }; + 63F15DE42926778600D5FFA0 /* Sources */ = { + isa = PBXGroup; + children = ( + CE70D2D61C5D988900C57988 /* UICollectionViewLeftAlignedLayout.m */, + ); + path = Sources; + sourceTree = ""; + }; CE70D2C11C5D982A00C57988 = { isa = PBXGroup; children = ( @@ -48,8 +64,8 @@ CE70D2CD1C5D982A00C57988 /* UICollectionViewLeftAlignedLayout */ = { isa = PBXGroup; children = ( - CE70D2D61C5D988900C57988 /* UICollectionViewLeftAlignedLayout.m */, - CE70D2CE1C5D982A00C57988 /* UICollectionViewLeftAlignedLayout.h */, + 63F15DE32926767F00D5FFA0 /* include */, + 63F15DE42926778600D5FFA0 /* Sources */, CE70D2D01C5D982A00C57988 /* Info.plist */, ); path = UICollectionViewLeftAlignedLayout; @@ -105,6 +121,7 @@ developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( + English, en, ); mainGroup = CE70D2C11C5D982A00C57988; diff --git a/UICollectionViewLeftAlignedLayout.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/UICollectionViewLeftAlignedLayout.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/UICollectionViewLeftAlignedLayout.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.m b/UICollectionViewLeftAlignedLayout/Sources/UICollectionViewLeftAlignedLayout.m similarity index 100% rename from UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.m rename to UICollectionViewLeftAlignedLayout/Sources/UICollectionViewLeftAlignedLayout.m diff --git a/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h b/UICollectionViewLeftAlignedLayout/include/UICollectionViewLeftAlignedLayout.h similarity index 100% rename from UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h rename to UICollectionViewLeftAlignedLayout/include/UICollectionViewLeftAlignedLayout.h From d00ff3ef7dd30e4dfee8202b6f1007775819f892 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Wed, 18 Jan 2023 10:28:59 +1100 Subject: [PATCH 04/14] Update `.gitignore` --- .gitignore | 89 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 88 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6d4cc51..fe889c8 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,88 @@ -**/xcuserdata/** +# Taken from https://github.com/github/gitignore/blob/4488915eec0b3a45b5c63ead28f286819c0917de/Swift.gitignore + +## User settings +xcuserdata/ + +## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) +*.xcscmblueprint +*.xccheckout + +## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) +build/ +DerivedData/ +*.moved-aside +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 + +## Obj-C/Swift specific +*.hmap + +## App packaging +*.ipa +*.dSYM.zip +*.dSYM + +## Playgrounds +timeline.xctimeline +playground.xcworkspace + +# Swift Package Manager +# +# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. +# Packages/ +# Package.pins +# Package.resolved +# *.xcodeproj +# +# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata +# hence it is not needed unless you have added a package configuration file to your project +# .swiftpm + +.build/ + +# CocoaPods +# +# We recommend against adding the Pods directory to your .gitignore. However +# you should judge for yourself, the pros and cons are mentioned at: +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control +# +# Pods/ +# +# Add this line if you want to avoid checking in source code from the Xcode workspace +# *.xcworkspace + +# Carthage +# +# Add this line if you want to avoid checking in source code from Carthage dependencies. +# Carthage/Checkouts + +Carthage/Build/ + +# Accio dependency management +Dependencies/ +.accio/ + +# fastlane +# +# It is recommended to not store the screenshots in the git repo. +# Instead, use fastlane to re-generate the screenshots whenever they are needed. +# For more information about the recommended setup visit: +# https://docs.fastlane.tools/best-practices/source-control/#source-control + +fastlane/report.xml +fastlane/Preview.html +fastlane/screenshots/**/*.png +fastlane/test_output + +# Code Injection +# +# After new code Injection tools there's a generated folder /iOSInjectionProject +# https://github.com/johnno1962/injectionforxcode + +iOSInjectionProject/ From 486b882b7310cc50fc463b034b1c0e1292ce6236 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Wed, 18 Jan 2023 10:29:27 +1100 Subject: [PATCH 05/14] Move current example in a `CocoaPods/` subfolder --- .../UserInterfaceState.xcuserstate | Bin 8756 -> 0 bytes {Example => Examples}/.gitattributes | 0 {Example => Examples}/.gitignore | 0 .../CocoaPods}/Example.xcodeproj/project.pbxproj | 0 .../project.xcworkspace/contents.xcworkspacedata | 0 .../Example.xcworkspace/contents.xcworkspacedata | 0 .../CocoaPods}/Example/AppDelegate.h | 0 .../CocoaPods}/Example/AppDelegate.m | 0 .../CocoaPods}/Example/Example-Info.plist | 0 .../CocoaPods}/Example/Example-Prefix.pch | 0 .../CocoaPods}/Example/ExampleViewController.h | 0 .../CocoaPods}/Example/ExampleViewController.m | 0 .../Example/ExampleViewController~iphone.xib | 0 .../AppIcon.appiconset/Contents.json | 0 .../LaunchImage.launchimage/Contents.json | 0 .../Example/en.lproj/InfoPlist.strings | 0 {Example => Examples/CocoaPods}/Example/main.m | 0 .../ExampleTests/ExampleTests-Info.plist | 0 .../CocoaPods}/ExampleTests/ExampleTests.m | 0 .../ExampleTests/en.lproj/InfoPlist.strings | 0 {Example => Examples/CocoaPods}/Podfile | 2 +- {Example => Examples/CocoaPods}/Podfile.lock | 0 .../Headers/Private/OpenSans/UIFont+OpenSans.h | 0 .../UICollectionViewLeftAlignedLayout.h | 0 .../UIColor+FlatColors/UIColor+FlatColors.h | 0 .../Headers/Public/OpenSans/UIFont+OpenSans.h | 0 .../UICollectionViewLeftAlignedLayout.h | 0 .../UIColor+FlatColors/UIColor+FlatColors.h | 0 ...ICollectionViewLeftAlignedLayout.podspec.json | 0 .../CocoaPods}/Pods/Manifest.lock | 0 .../Pods/OpenSans/Fonts/OpenSans-Bold.ttf | Bin .../Pods/OpenSans/Fonts/OpenSans-BoldItalic.ttf | Bin .../Pods/OpenSans/Fonts/OpenSans-ExtraBold.ttf | Bin .../OpenSans/Fonts/OpenSans-ExtraBoldItalic.ttf | Bin .../Pods/OpenSans/Fonts/OpenSans-Italic.ttf | Bin .../Pods/OpenSans/Fonts/OpenSans-Light.ttf | Bin .../Pods/OpenSans/Fonts/OpenSans-LightItalic.ttf | Bin .../Pods/OpenSans/Fonts/OpenSans-Regular.ttf | Bin .../Pods/OpenSans/Fonts/OpenSans-Semibold.ttf | Bin .../OpenSans/Fonts/OpenSans-SemiboldItalic.ttf | Bin .../CocoaPods}/Pods/OpenSans/LICENSE.txt | 0 .../CocoaPods}/Pods/OpenSans/README.md | 0 .../CocoaPods}/Pods/OpenSans/UIFont+OpenSans.h | 0 .../CocoaPods}/Pods/OpenSans/UIFont+OpenSans.m | 0 .../Pods/Pods.xcodeproj/project.pbxproj | 0 ...le-UICollectionViewLeftAlignedLayout.xcscheme | 0 .../Pods-Example-OpenSans-Private.xcconfig | 0 .../Pods-Example-OpenSans-dummy.m | 0 .../Pods-Example-OpenSans-prefix.pch | 0 .../Pods-Example-OpenSans.xcconfig | 0 ...lectionViewLeftAlignedLayout-Private.xcconfig | 0 ...ple-UICollectionViewLeftAlignedLayout-dummy.m | 0 ...-UICollectionViewLeftAlignedLayout-prefix.pch | 0 ...le-UICollectionViewLeftAlignedLayout.xcconfig | 0 ...s-Example-UIColor+FlatColors-Private.xcconfig | 0 .../Pods-Example-UIColor+FlatColors-dummy.m | 0 .../Pods-Example-UIColor+FlatColors-prefix.pch | 0 .../Pods-Example-UIColor+FlatColors.xcconfig | 0 .../Pods-Example-acknowledgements.markdown | 0 .../Pods-Example-acknowledgements.plist | 0 .../Pods-Example/Pods-Example-dummy.m | 0 .../Pods-Example/Pods-Example-environment.h | 0 .../Pods-Example/Pods-Example-resources.sh | 0 .../Pods-Example/Pods-Example.debug.xcconfig | 0 .../Pods-Example/Pods-Example.release.xcconfig | 0 .../CocoaPods}/Pods/UIColor+FlatColors/LICENSE | 0 .../CocoaPods}/Pods/UIColor+FlatColors/README.md | 0 .../UIColor+FlatColors/UIColor+FlatColors.h | 0 .../UIColor+FlatColors/UIColor+FlatColors.m | 0 69 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 Example/Example.xcodeproj/project.xcworkspace/xcuserdata/gio.xcuserdatad/UserInterfaceState.xcuserstate rename {Example => Examples}/.gitattributes (100%) rename {Example => Examples}/.gitignore (100%) rename {Example => Examples/CocoaPods}/Example.xcodeproj/project.pbxproj (100%) rename {Example => Examples/CocoaPods}/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata (100%) rename {Example => Examples/CocoaPods}/Example.xcworkspace/contents.xcworkspacedata (100%) rename {Example => Examples/CocoaPods}/Example/AppDelegate.h (100%) rename {Example => Examples/CocoaPods}/Example/AppDelegate.m (100%) rename {Example => Examples/CocoaPods}/Example/Example-Info.plist (100%) rename {Example => Examples/CocoaPods}/Example/Example-Prefix.pch (100%) rename {Example => Examples/CocoaPods}/Example/ExampleViewController.h (100%) rename {Example => Examples/CocoaPods}/Example/ExampleViewController.m (100%) rename {Example => Examples/CocoaPods}/Example/ExampleViewController~iphone.xib (100%) rename {Example => Examples/CocoaPods}/Example/Images.xcassets/AppIcon.appiconset/Contents.json (100%) rename {Example => Examples/CocoaPods}/Example/Images.xcassets/LaunchImage.launchimage/Contents.json (100%) rename {Example => Examples/CocoaPods}/Example/en.lproj/InfoPlist.strings (100%) rename {Example => Examples/CocoaPods}/Example/main.m (100%) rename {Example => Examples/CocoaPods}/ExampleTests/ExampleTests-Info.plist (100%) rename {Example => Examples/CocoaPods}/ExampleTests/ExampleTests.m (100%) rename {Example => Examples/CocoaPods}/ExampleTests/en.lproj/InfoPlist.strings (100%) rename {Example => Examples/CocoaPods}/Podfile (59%) rename {Example => Examples/CocoaPods}/Podfile.lock (100%) rename {Example => Examples/CocoaPods}/Pods/Headers/Private/OpenSans/UIFont+OpenSans.h (100%) rename {Example => Examples/CocoaPods}/Pods/Headers/Private/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h (100%) rename {Example => Examples/CocoaPods}/Pods/Headers/Private/UIColor+FlatColors/UIColor+FlatColors.h (100%) rename {Example => Examples/CocoaPods}/Pods/Headers/Public/OpenSans/UIFont+OpenSans.h (100%) rename {Example => Examples/CocoaPods}/Pods/Headers/Public/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h (100%) rename {Example => Examples/CocoaPods}/Pods/Headers/Public/UIColor+FlatColors/UIColor+FlatColors.h (100%) rename {Example => Examples/CocoaPods}/Pods/Local Podspecs/UICollectionViewLeftAlignedLayout.podspec.json (100%) rename {Example => Examples/CocoaPods}/Pods/Manifest.lock (100%) rename {Example => Examples/CocoaPods}/Pods/OpenSans/Fonts/OpenSans-Bold.ttf (100%) rename {Example => Examples/CocoaPods}/Pods/OpenSans/Fonts/OpenSans-BoldItalic.ttf (100%) rename {Example => Examples/CocoaPods}/Pods/OpenSans/Fonts/OpenSans-ExtraBold.ttf (100%) rename {Example => Examples/CocoaPods}/Pods/OpenSans/Fonts/OpenSans-ExtraBoldItalic.ttf (100%) rename {Example => Examples/CocoaPods}/Pods/OpenSans/Fonts/OpenSans-Italic.ttf (100%) rename {Example => Examples/CocoaPods}/Pods/OpenSans/Fonts/OpenSans-Light.ttf (100%) rename {Example => Examples/CocoaPods}/Pods/OpenSans/Fonts/OpenSans-LightItalic.ttf (100%) rename {Example => Examples/CocoaPods}/Pods/OpenSans/Fonts/OpenSans-Regular.ttf (100%) rename {Example => Examples/CocoaPods}/Pods/OpenSans/Fonts/OpenSans-Semibold.ttf (100%) rename {Example => Examples/CocoaPods}/Pods/OpenSans/Fonts/OpenSans-SemiboldItalic.ttf (100%) rename {Example => Examples/CocoaPods}/Pods/OpenSans/LICENSE.txt (100%) rename {Example => Examples/CocoaPods}/Pods/OpenSans/README.md (100%) rename {Example => Examples/CocoaPods}/Pods/OpenSans/UIFont+OpenSans.h (100%) rename {Example => Examples/CocoaPods}/Pods/OpenSans/UIFont+OpenSans.m (100%) rename {Example => Examples/CocoaPods}/Pods/Pods.xcodeproj/project.pbxproj (100%) rename {Example => Examples/CocoaPods}/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-Example-UICollectionViewLeftAlignedLayout.xcscheme (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-Private.xcconfig (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-dummy.m (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-prefix.pch (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans.xcconfig (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-Private.xcconfig (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-dummy.m (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-prefix.pch (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout.xcconfig (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-Private.xcconfig (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-dummy.m (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-prefix.pch (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors.xcconfig (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example/Pods-Example-dummy.m (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example/Pods-Example-environment.h (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example/Pods-Example-resources.sh (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig (100%) rename {Example => Examples/CocoaPods}/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig (100%) rename {Example => Examples/CocoaPods}/Pods/UIColor+FlatColors/LICENSE (100%) rename {Example => Examples/CocoaPods}/Pods/UIColor+FlatColors/README.md (100%) rename {Example => Examples/CocoaPods}/Pods/UIColor+FlatColors/UIColor+FlatColors/UIColor+FlatColors.h (100%) rename {Example => Examples/CocoaPods}/Pods/UIColor+FlatColors/UIColor+FlatColors/UIColor+FlatColors.m (100%) diff --git a/Example/Example.xcodeproj/project.xcworkspace/xcuserdata/gio.xcuserdatad/UserInterfaceState.xcuserstate b/Example/Example.xcodeproj/project.xcworkspace/xcuserdata/gio.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index d077a22fc402c46add784dbc94d92db2f01fd3b7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8756 zcmcgxd3;k<_CNPFP1-ce%hqh5#Zs0+7iddc))v}Ifzm=3N?AhMyp~9t#4POK5doD& zL`6|#X;}n86cHCxL=XW{MgbK?T+va-Wposgaeni=FE1}`9GuVm{`gJ%Y4h^#x#!$_ z?m6G{J?}O8THS$QcJ?_SKp_rf5D#*CmHxfH=WN~|aC<%VJ-v-L@lCq!dfMf#B(l1qk?VWgClksHY*Qcot61~P?ACDTX~agm$IEYeE+WHy;Y7LnV? zon#GpfUGB5NITg@9wocU9&&^nC9jZU==C&(_Mv@g4$Y+nbSNE0i|I&OMsK8JX(g?qHME{i zraWz?Ep#Sz(-56a=g_%y9$iS6(A(%zx`M8u576~=3vH*{>2CT2eU?5)57Hy_D1C*# zPT!#)(2wb7^b-A?enr2dKhn#!Jw2h;*0YcZN=O0~XhA<|e0An5eqNw~eMSzwu4hxL zGZ5$iHE57xTnBKVLm8G~nu9Zzmy}NO`ey}v&L+OZ+Z1Z!JwXT8b7Wa=Nq)(|?2JJr zr8yb7CB?-Vh4}*qW|XkIB{?Ir^KwfENrsal1=4qc87yE08`z;6bcgHUdW=UoDlh>P zQHe>YLiH}_0XIM@^n^6%1-+pU^g#`3u@DF22pox{u$29#vt^C+^Uhg5uiFz06gLIk zvzFwY0cBEtA|Hmv_!cex`G_ z+v{iA!YcTQAx{Y(2)aGaAWMp=;?3%&nS2}X;Iz`_#mP*cWg_3ioFUqhMkA(*eZDg0 ztU$S^!tHTK4Kq_Q-$!{p0dFgxD0ylS6hL}AtJ&Sk56;TUstquh$ZBzWvr72ce5=>T`?K1-vz)>mcV%@}ZTTo~Yb#q9^IDyo zpEHhc4i>k%TRgmLoO7Nx6wE4}>umG2^3rGKTwzZ>wwbImFb2lLIH+h4qtN4Q#zUoeSwFtIGK^Hx?j}Gzr0;-@*v+9I1@%1FZesa z2RCC1_QJlBf*{NReFubKHuk_9I$$o$!&K~vY15dRau-V_ce9&k>BzC~g2oDGi^m-d zxmfn~=yY_9!Om%^MXnhj{D={SaO>3Z)g|t5P&)ndIsldPvb+g@6^*ThdmNl0D%fdtE36glIyn8m zdR$t}I=COww`{?5(RUBRhIV)eGco@hY=lj)nI-EMXon8iIyn$NW|n1>gYGtlR4l2c zxFVR$5(NifHfG_V|5ECv7C#r?Trz_GBJJc6cofn*U?=Rtftb?)yI~LJVjiZ~iD6eK z2HZ8hF*O1aHEdffiUd&D4^KI`?lDpM`}p1p2jFSJzyDs09S#er-%l2;tbu1cgcFrE zaS)ytkAnm0)=O|i*w&Hz>(87R6L21HWM!I`4>iUl$iWSJTA zvlxEVH9P1E%VxNJGrb-@;BE^s$o2XMXR&(G>W<`WR(Q*qPMKd{em5Tw!ir5RV}z*68JsC3fCy=# zdR-(1I(d!c#vUY9Dw?DxPK$s%>CFlx=|lSBbes__kfcA!iY-fI04qxlOiL}g^h+uvAs zFf%%k$x=NOhB0Ylqe&$rUZk9iA!ErnQbERJGq&JNbmL7pYX_-Mt0A@6$};n2 z_7}jQU{`12Z{q-MS0S~j+->2x1G#HAEry-SS2ZIBi^VoANny(8VHb}Sa+C%7A#=tnJr}M zz`Vl#Df#&Yixx?8bIJUuf(01rRIr#}tZiw=QnEZ6gSX=xDF#=7e=Au@R*}^>7w6-` z&N#fA+}ky}Sn{u9={`@0E?-ehbUjEOj*(Q7P1t}71j&^cBiTW=$4KrVkKiI)EI3n0 z|7fNO2^BTt;HLh6HXo9M9wW~PShtrvPM#q9$dhD0d5Rn$Pvfn)1aHHoxD1!$?RW>? zxr;^gbFA{DLMnNY93n4~!z`{>FpMi?zx(kxp1?PS80Q4|5ZgZ9FM>oe+olK_;mX2- z(&KXaT>_Q}!VzZ98SBJnGUE5@P-7dbLk(Rfat1ad(&vUPi0V@!x2lBc0f9A4WE~bC zU>8y=ppzC91X`=NAT>p^)$(v`%+k%2~xVoLZ zgLh$iO@-6#kw)JqAA)`>xj;T37jX^Vjcd1(kC-<k zKz_vga2?){58!%y5FdJk{6u~xm&q^W7sw}9aRWY#+wgJr%i$B4K2@j;CC;F;W}c6q zBCaXCT2_+7ByhF>V6g|n+9wgp*oXjw0;6JFL;}BSjM=5J(z)z>g$H+?%wdW&#`*x( z%Qbo11OnO0izO*j=(QQhMNWanQx)j{xNW9tXrNk{N_DJl-pJbKO{{I+%-UvlI)BtA zUX#^_9Zt>6;nad#y0kRZPP+*$4R&C=(6U5&iJ>ZKg*|A`uDt|JW4**yp_jO(owsQ^ z?FUJ;Kh2<-G>c}_0dyeCLdhu-IiKF?FrkizCE8eYcHS1)AS+CBE1RXconyEgci>*! zj*mLH2uWwD7;{i1UO`=El&(bUrs#=0!4re<5zIeB3)y-H(;*FA^zX!7Qo#r}Cv-R+ z;oyWS))_=1=?<^4%IWrZ&?2G#`L{BLTmC8joDFxAo9HOY9{=DTd<@~g)GLbH8BNQt z-HLV4F~TnXuuG%kXa#!$^LuZ1dL=fsIw*T$^nZ|-oZh8Hp`*er${z9DYK3#F!zYmu z`YzSEpg^F}0|!K_Gi{&_NZ&@M(5ZA9osLi80el*t*+yqjCvBun_$(g6!}v0$*9#BH zgohlHC%Ri^hOZh#fED`=p^1#bbQI>L?6`?~1v9f~D{Z45d=3xd^Z3Fx)*Gc#KlETV zsSsaeRf%Pbz0T=(3+ThT1b&WCX#x|Sb42pO9+<|CM)0$`i9O?EWH4qhJe@stWQ@7V z@Afg8&hR%mMkK6VfI!h}^I-$ad1=jy=q;=+(8c&tJEXGpv9;+U&p$RU~B6igwVQ(G~5&lhTUz2rGJw?#0*ejm{PAqfd3^JM;j38c*Ttm^PUm ztXLpYi`+9}EIv;U#msq$9>&x7Cy8)M)mx-UQxAvdo}+BBtvw%MTskmt27kb6P zrTzyNI_R&0_Wwkb^(o`4$MW-dmv{uc|1J6({YPz>nIK{B^sMY{OF#DhZZM1>SJ_)D zHG5l?LVL41n#o+BNAqbR9YQCvw@}Mj=4_xF>1Ou!X)AmG^a$O>-a#FrhuQn5S6Bp| zV6pc)J zrYd;F0>u)=1Bz{m?TQ_Wor-;mrxZ^so>iPwoK;*@e5Lq{;#b(R8CMjlr2i1GN248=O|Hmn{t`*cIAD_`<3gJ z4=Fb&cPgJ#KCgUH`I7Qw!U7s{0 zX<^dtq&JejQpr@^RlQVwRsB>Ms==xXRi$czs#;a6nxvYnnxdMfa;W^OplY^iu4=w& zp=z-TRZCP$Rm)YIRZpr8slHPab+&qxdZK!UI;g%?y;QwieW!Y*dbRp~^#=7u^=5Uu zdaruF`hfZw^$Y4l>ci?I>Qn0T>Wk`+)SsxoP=BfZTK$dsXARXTG>Mud4X4p-jGAOk zx~4+YplQ*#HM2Br8n5PNO+bU1C7Pw0<(fM*D>SP#cWJh3PHL`b&Dvht0&S^ww04ZP zLR+bwpl#Cnv;l2MJ6AhjyHLASyG(nJcAfSC?L*p!wVSlNwR^OWX&=|Vsy(ZHM|)m- zL3>gAk@g$y_u3z{KWQ&(uW<2P0;lBEoR-sZHm(Pk%B69=xxU;WZU{Gw8^M)uW!z|P z3|Gy~;CQZub8{Zf$N9M+w}@N8t>M;k_j2pGhq#BiP24{2pw6o6r7P48(GAm$&=u=O z=}L7s>dJLvb<=e-bd5Tfu30xzcayGF=h69ee%&(NCfy$0QQc|XCA~s#*Z0!r=m+Tw z^h5N+^ds~w`k;P}ex81zez6|)%k=l?AJlKqZ`5zr@6hkmKdRrO->ZLL|D!=^Fc^{z z7K6>u+c3ybU>Ix|Y8Y-PGK@5o7^)4mhDnCWhAD<=28Y3EXfpT=3k?q#b{mcxJ~#Ye zOfp)GX~y2hzQ%sW3}cpYfN{97$T-qiVk|R`HjXilGd3F+7?&DvH{NMnX?)nY$+*SX zVcceX%y`iFlJRBZQR4~YYsS}&r;VQ(ub7fdHdBVF+%(oyVX8DuFjbqDneH;JHQj4k zXWC@iW!i0e%yhtX$aK;4X);MxCYzJ3$@b*#$xD-0CvQ#OnS3buc=C_QznE_@r#7)_AMlYPMRfc590D25V1i zFKd={sCAfixV6YyVXd-GwANZDStnZ?tu0o!b(XcwI^TMW^;YX`);p{#tgEbdS=U?J zt$VHetp}{nSYNOnvL3b`v7WPDw0>ucvvs!>*aq8%+J@VTY?Ez`Hn%NgTW{ND+hN;j zd(^ha_Ok7$?U?Pj?WFCL?VRmh+k3VPwoA4zY+u^`YWvkLw '..' + pod 'UICollectionViewLeftAlignedLayout', :path => '../..' pod 'OpenSans' pod 'UIColor+FlatColors' end diff --git a/Example/Podfile.lock b/Examples/CocoaPods/Podfile.lock similarity index 100% rename from Example/Podfile.lock rename to Examples/CocoaPods/Podfile.lock diff --git a/Example/Pods/Headers/Private/OpenSans/UIFont+OpenSans.h b/Examples/CocoaPods/Pods/Headers/Private/OpenSans/UIFont+OpenSans.h similarity index 100% rename from Example/Pods/Headers/Private/OpenSans/UIFont+OpenSans.h rename to Examples/CocoaPods/Pods/Headers/Private/OpenSans/UIFont+OpenSans.h diff --git a/Example/Pods/Headers/Private/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h b/Examples/CocoaPods/Pods/Headers/Private/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h similarity index 100% rename from Example/Pods/Headers/Private/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h rename to Examples/CocoaPods/Pods/Headers/Private/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h diff --git a/Example/Pods/Headers/Private/UIColor+FlatColors/UIColor+FlatColors.h b/Examples/CocoaPods/Pods/Headers/Private/UIColor+FlatColors/UIColor+FlatColors.h similarity index 100% rename from Example/Pods/Headers/Private/UIColor+FlatColors/UIColor+FlatColors.h rename to Examples/CocoaPods/Pods/Headers/Private/UIColor+FlatColors/UIColor+FlatColors.h diff --git a/Example/Pods/Headers/Public/OpenSans/UIFont+OpenSans.h b/Examples/CocoaPods/Pods/Headers/Public/OpenSans/UIFont+OpenSans.h similarity index 100% rename from Example/Pods/Headers/Public/OpenSans/UIFont+OpenSans.h rename to Examples/CocoaPods/Pods/Headers/Public/OpenSans/UIFont+OpenSans.h diff --git a/Example/Pods/Headers/Public/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h b/Examples/CocoaPods/Pods/Headers/Public/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h similarity index 100% rename from Example/Pods/Headers/Public/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h rename to Examples/CocoaPods/Pods/Headers/Public/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h diff --git a/Example/Pods/Headers/Public/UIColor+FlatColors/UIColor+FlatColors.h b/Examples/CocoaPods/Pods/Headers/Public/UIColor+FlatColors/UIColor+FlatColors.h similarity index 100% rename from Example/Pods/Headers/Public/UIColor+FlatColors/UIColor+FlatColors.h rename to Examples/CocoaPods/Pods/Headers/Public/UIColor+FlatColors/UIColor+FlatColors.h diff --git a/Example/Pods/Local Podspecs/UICollectionViewLeftAlignedLayout.podspec.json b/Examples/CocoaPods/Pods/Local Podspecs/UICollectionViewLeftAlignedLayout.podspec.json similarity index 100% rename from Example/Pods/Local Podspecs/UICollectionViewLeftAlignedLayout.podspec.json rename to Examples/CocoaPods/Pods/Local Podspecs/UICollectionViewLeftAlignedLayout.podspec.json diff --git a/Example/Pods/Manifest.lock b/Examples/CocoaPods/Pods/Manifest.lock similarity index 100% rename from Example/Pods/Manifest.lock rename to Examples/CocoaPods/Pods/Manifest.lock diff --git a/Example/Pods/OpenSans/Fonts/OpenSans-Bold.ttf b/Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-Bold.ttf similarity index 100% rename from Example/Pods/OpenSans/Fonts/OpenSans-Bold.ttf rename to Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-Bold.ttf diff --git a/Example/Pods/OpenSans/Fonts/OpenSans-BoldItalic.ttf b/Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-BoldItalic.ttf similarity index 100% rename from Example/Pods/OpenSans/Fonts/OpenSans-BoldItalic.ttf rename to Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-BoldItalic.ttf diff --git a/Example/Pods/OpenSans/Fonts/OpenSans-ExtraBold.ttf b/Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-ExtraBold.ttf similarity index 100% rename from Example/Pods/OpenSans/Fonts/OpenSans-ExtraBold.ttf rename to Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-ExtraBold.ttf diff --git a/Example/Pods/OpenSans/Fonts/OpenSans-ExtraBoldItalic.ttf b/Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-ExtraBoldItalic.ttf similarity index 100% rename from Example/Pods/OpenSans/Fonts/OpenSans-ExtraBoldItalic.ttf rename to Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-ExtraBoldItalic.ttf diff --git a/Example/Pods/OpenSans/Fonts/OpenSans-Italic.ttf b/Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-Italic.ttf similarity index 100% rename from Example/Pods/OpenSans/Fonts/OpenSans-Italic.ttf rename to Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-Italic.ttf diff --git a/Example/Pods/OpenSans/Fonts/OpenSans-Light.ttf b/Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-Light.ttf similarity index 100% rename from Example/Pods/OpenSans/Fonts/OpenSans-Light.ttf rename to Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-Light.ttf diff --git a/Example/Pods/OpenSans/Fonts/OpenSans-LightItalic.ttf b/Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-LightItalic.ttf similarity index 100% rename from Example/Pods/OpenSans/Fonts/OpenSans-LightItalic.ttf rename to Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-LightItalic.ttf diff --git a/Example/Pods/OpenSans/Fonts/OpenSans-Regular.ttf b/Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-Regular.ttf similarity index 100% rename from Example/Pods/OpenSans/Fonts/OpenSans-Regular.ttf rename to Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-Regular.ttf diff --git a/Example/Pods/OpenSans/Fonts/OpenSans-Semibold.ttf b/Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-Semibold.ttf similarity index 100% rename from Example/Pods/OpenSans/Fonts/OpenSans-Semibold.ttf rename to Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-Semibold.ttf diff --git a/Example/Pods/OpenSans/Fonts/OpenSans-SemiboldItalic.ttf b/Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-SemiboldItalic.ttf similarity index 100% rename from Example/Pods/OpenSans/Fonts/OpenSans-SemiboldItalic.ttf rename to Examples/CocoaPods/Pods/OpenSans/Fonts/OpenSans-SemiboldItalic.ttf diff --git a/Example/Pods/OpenSans/LICENSE.txt b/Examples/CocoaPods/Pods/OpenSans/LICENSE.txt similarity index 100% rename from Example/Pods/OpenSans/LICENSE.txt rename to Examples/CocoaPods/Pods/OpenSans/LICENSE.txt diff --git a/Example/Pods/OpenSans/README.md b/Examples/CocoaPods/Pods/OpenSans/README.md similarity index 100% rename from Example/Pods/OpenSans/README.md rename to Examples/CocoaPods/Pods/OpenSans/README.md diff --git a/Example/Pods/OpenSans/UIFont+OpenSans.h b/Examples/CocoaPods/Pods/OpenSans/UIFont+OpenSans.h similarity index 100% rename from Example/Pods/OpenSans/UIFont+OpenSans.h rename to Examples/CocoaPods/Pods/OpenSans/UIFont+OpenSans.h diff --git a/Example/Pods/OpenSans/UIFont+OpenSans.m b/Examples/CocoaPods/Pods/OpenSans/UIFont+OpenSans.m similarity index 100% rename from Example/Pods/OpenSans/UIFont+OpenSans.m rename to Examples/CocoaPods/Pods/OpenSans/UIFont+OpenSans.m diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Examples/CocoaPods/Pods/Pods.xcodeproj/project.pbxproj similarity index 100% rename from Example/Pods/Pods.xcodeproj/project.pbxproj rename to Examples/CocoaPods/Pods/Pods.xcodeproj/project.pbxproj diff --git a/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-Example-UICollectionViewLeftAlignedLayout.xcscheme b/Examples/CocoaPods/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-Example-UICollectionViewLeftAlignedLayout.xcscheme similarity index 100% rename from Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-Example-UICollectionViewLeftAlignedLayout.xcscheme rename to Examples/CocoaPods/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-Example-UICollectionViewLeftAlignedLayout.xcscheme diff --git a/Example/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-Private.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-Private.xcconfig similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-Private.xcconfig rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-Private.xcconfig diff --git a/Example/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-dummy.m b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-dummy.m similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-dummy.m rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-dummy.m diff --git a/Example/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-prefix.pch b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-prefix.pch similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-prefix.pch rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-prefix.pch diff --git a/Example/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans.xcconfig similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans.xcconfig rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans.xcconfig diff --git a/Example/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-Private.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-Private.xcconfig similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-Private.xcconfig rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-Private.xcconfig diff --git a/Example/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-dummy.m b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-dummy.m similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-dummy.m rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-dummy.m diff --git a/Example/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-prefix.pch b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-prefix.pch similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-prefix.pch rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-prefix.pch diff --git a/Example/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout.xcconfig similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout.xcconfig rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout.xcconfig diff --git a/Example/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-Private.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-Private.xcconfig similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-Private.xcconfig rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-Private.xcconfig diff --git a/Example/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-dummy.m b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-dummy.m similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-dummy.m rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-dummy.m diff --git a/Example/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-prefix.pch b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-prefix.pch similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-prefix.pch rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-prefix.pch diff --git a/Example/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors.xcconfig similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors.xcconfig rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors.xcconfig diff --git a/Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown diff --git a/Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist diff --git a/Example/Pods/Target Support Files/Pods-Example/Pods-Example-dummy.m b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-dummy.m similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example/Pods-Example-dummy.m rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-dummy.m diff --git a/Example/Pods/Target Support Files/Pods-Example/Pods-Example-environment.h b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-environment.h similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example/Pods-Example-environment.h rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-environment.h diff --git a/Example/Pods/Target Support Files/Pods-Example/Pods-Example-resources.sh b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-resources.sh similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example/Pods-Example-resources.sh rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-resources.sh diff --git a/Example/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig diff --git a/Example/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig similarity index 100% rename from Example/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig rename to Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig diff --git a/Example/Pods/UIColor+FlatColors/LICENSE b/Examples/CocoaPods/Pods/UIColor+FlatColors/LICENSE similarity index 100% rename from Example/Pods/UIColor+FlatColors/LICENSE rename to Examples/CocoaPods/Pods/UIColor+FlatColors/LICENSE diff --git a/Example/Pods/UIColor+FlatColors/README.md b/Examples/CocoaPods/Pods/UIColor+FlatColors/README.md similarity index 100% rename from Example/Pods/UIColor+FlatColors/README.md rename to Examples/CocoaPods/Pods/UIColor+FlatColors/README.md diff --git a/Example/Pods/UIColor+FlatColors/UIColor+FlatColors/UIColor+FlatColors.h b/Examples/CocoaPods/Pods/UIColor+FlatColors/UIColor+FlatColors/UIColor+FlatColors.h similarity index 100% rename from Example/Pods/UIColor+FlatColors/UIColor+FlatColors/UIColor+FlatColors.h rename to Examples/CocoaPods/Pods/UIColor+FlatColors/UIColor+FlatColors/UIColor+FlatColors.h diff --git a/Example/Pods/UIColor+FlatColors/UIColor+FlatColors/UIColor+FlatColors.m b/Examples/CocoaPods/Pods/UIColor+FlatColors/UIColor+FlatColors/UIColor+FlatColors.m similarity index 100% rename from Example/Pods/UIColor+FlatColors/UIColor+FlatColors/UIColor+FlatColors.m rename to Examples/CocoaPods/Pods/UIColor+FlatColors/UIColor+FlatColors/UIColor+FlatColors.m From 8832fc4accaa868447e14c08f51540bc6a486509 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Wed, 18 Jan 2023 10:38:39 +1100 Subject: [PATCH 06/14] Update copyright dates --- .../Sources/UICollectionViewLeftAlignedLayout.m | 3 +-- .../include/UICollectionViewLeftAlignedLayout.h | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/UICollectionViewLeftAlignedLayout/Sources/UICollectionViewLeftAlignedLayout.m b/UICollectionViewLeftAlignedLayout/Sources/UICollectionViewLeftAlignedLayout.m index c4bf2b6..a234789 100644 --- a/UICollectionViewLeftAlignedLayout/Sources/UICollectionViewLeftAlignedLayout.m +++ b/UICollectionViewLeftAlignedLayout/Sources/UICollectionViewLeftAlignedLayout.m @@ -1,5 +1,4 @@ - -// Copyright (c) 2014 Giovanni Lodi +// Copyright (c) 2014-2023 Giovanni Lodi // // Permission is hereby granted, free of charge, to any person obtaining a copy of // this software and associated documentation files (the "Software"), to deal in diff --git a/UICollectionViewLeftAlignedLayout/include/UICollectionViewLeftAlignedLayout.h b/UICollectionViewLeftAlignedLayout/include/UICollectionViewLeftAlignedLayout.h index ed78010..b51c8d3 100644 --- a/UICollectionViewLeftAlignedLayout/include/UICollectionViewLeftAlignedLayout.h +++ b/UICollectionViewLeftAlignedLayout/include/UICollectionViewLeftAlignedLayout.h @@ -1,5 +1,4 @@ - -// Copyright (c) 2014 Giovanni Lodi +// Copyright (c) 2014-2023 Giovanni Lodi // // Permission is hereby granted, free of charge, to any person obtaining a copy of // this software and associated documentation files (the "Software"), to deal in From d23748eca28137179c646db9b6d6592d45eac677 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Fri, 20 Jan 2023 07:51:08 +1100 Subject: [PATCH 07/14] Update `podspec` after SPM changes --- UICollectionViewLeftAlignedLayout.podspec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/UICollectionViewLeftAlignedLayout.podspec b/UICollectionViewLeftAlignedLayout.podspec index 45b3628..dd7480b 100644 --- a/UICollectionViewLeftAlignedLayout.podspec +++ b/UICollectionViewLeftAlignedLayout.podspec @@ -16,6 +16,7 @@ Pod::Spec.new do |s| s.social_media_url = "http://twitter.com/mokagio" s.platform = :ios, "6.0" s.source = { :git => "https://github.com/mokagio/UICollectionViewLeftAlignedLayout.git", :tag => version } - s.source_files = "UICollectionViewLeftAlignedLayout" + s.source_files = 'UICollectionViewLeftAlignedLayout/**/*.{h,m}' + s.framework = 'UIKit' s.requires_arc = true end From 92b97ce44f6476567d030e5ac3df942fe75ff96e Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Wed, 18 Jan 2023 10:42:54 +1100 Subject: [PATCH 08/14] Bump deployment target to iOS 11 as per Xcode 14 suggestion --- Examples/CocoaPods/Podfile | 2 +- UICollectionViewLeftAlignedLayout.podspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Examples/CocoaPods/Podfile b/Examples/CocoaPods/Podfile index 2df8eac..2ce0638 100644 --- a/Examples/CocoaPods/Podfile +++ b/Examples/CocoaPods/Podfile @@ -1,4 +1,4 @@ -platform :ios, "6.0" +platform :ios, "11.0" target :Example do pod 'UICollectionViewLeftAlignedLayout', :path => '../..' diff --git a/UICollectionViewLeftAlignedLayout.podspec b/UICollectionViewLeftAlignedLayout.podspec index dd7480b..eb5ab01 100644 --- a/UICollectionViewLeftAlignedLayout.podspec +++ b/UICollectionViewLeftAlignedLayout.podspec @@ -14,7 +14,7 @@ Pod::Spec.new do |s| s.license = { :type => "MIT", :file => "LICENSE" } s.author = { "Giovanni Lodi" => "giovanni.lodi42@gmail.com" } s.social_media_url = "http://twitter.com/mokagio" - s.platform = :ios, "6.0" + s.platform = :ios, "11.0" s.source = { :git => "https://github.com/mokagio/UICollectionViewLeftAlignedLayout.git", :tag => version } s.source_files = 'UICollectionViewLeftAlignedLayout/**/*.{h,m}' s.framework = 'UIKit' From 16117b3adaecef06e3b11e77ec89312db76cd606 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Fri, 20 Jan 2023 07:09:39 +1100 Subject: [PATCH 09/14] Upgrade CocoaPods example to use launch storyboard as recommended --- .../AppIcon.appiconset/Contents.json | 82 ++++++++++++++----- .../Example/Images.xcassets/Contents.json | 6 ++ .../LaunchImage.launchimage/Contents.json | 51 ------------ .../CocoaPods/Example/LaunchScreen.storyboard | 48 +++++++++++ 4 files changed, 115 insertions(+), 72 deletions(-) create mode 100644 Examples/CocoaPods/Example/Images.xcassets/Contents.json delete mode 100644 Examples/CocoaPods/Example/Images.xcassets/LaunchImage.launchimage/Contents.json create mode 100644 Examples/CocoaPods/Example/LaunchScreen.storyboard diff --git a/Examples/CocoaPods/Example/Images.xcassets/AppIcon.appiconset/Contents.json b/Examples/CocoaPods/Example/Images.xcassets/AppIcon.appiconset/Contents.json index 91bf9c1..99174b9 100644 --- a/Examples/CocoaPods/Example/Images.xcassets/AppIcon.appiconset/Contents.json +++ b/Examples/CocoaPods/Example/Images.xcassets/AppIcon.appiconset/Contents.json @@ -2,52 +2,92 @@ "images" : [ { "idiom" : "iphone", - "size" : "29x29", - "scale" : "2x" + "scale" : "2x", + "size" : "20x20" }, { "idiom" : "iphone", - "size" : "40x40", - "scale" : "2x" + "scale" : "3x", + "size" : "20x20" }, { "idiom" : "iphone", - "size" : "60x60", - "scale" : "2x" + "scale" : "2x", + "size" : "29x29" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "29x29" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "40x40" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "40x40" + }, + { + "idiom" : "iphone", + "scale" : "2x", + "size" : "60x60" + }, + { + "idiom" : "iphone", + "scale" : "3x", + "size" : "60x60" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "20x20" }, { "idiom" : "ipad", - "size" : "29x29", - "scale" : "1x" + "scale" : "1x", + "size" : "29x29" }, { "idiom" : "ipad", - "size" : "29x29", - "scale" : "2x" + "scale" : "2x", + "size" : "29x29" }, { "idiom" : "ipad", - "size" : "40x40", - "scale" : "1x" + "scale" : "1x", + "size" : "40x40" }, { "idiom" : "ipad", - "size" : "40x40", - "scale" : "2x" + "scale" : "2x", + "size" : "40x40" }, { "idiom" : "ipad", - "size" : "76x76", - "scale" : "1x" + "scale" : "1x", + "size" : "76x76" }, { "idiom" : "ipad", - "size" : "76x76", - "scale" : "2x" + "scale" : "2x", + "size" : "76x76" + }, + { + "idiom" : "ipad", + "scale" : "2x", + "size" : "83.5x83.5" + }, + { + "idiom" : "ios-marketing", + "scale" : "1x", + "size" : "1024x1024" } ], "info" : { - "version" : 1, - "author" : "xcode" + "author" : "xcode", + "version" : 1 } -} \ No newline at end of file +} diff --git a/Examples/CocoaPods/Example/Images.xcassets/Contents.json b/Examples/CocoaPods/Example/Images.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Examples/CocoaPods/Example/Images.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Examples/CocoaPods/Example/Images.xcassets/LaunchImage.launchimage/Contents.json b/Examples/CocoaPods/Example/Images.xcassets/LaunchImage.launchimage/Contents.json deleted file mode 100644 index 6f870a4..0000000 --- a/Examples/CocoaPods/Example/Images.xcassets/LaunchImage.launchimage/Contents.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "images" : [ - { - "orientation" : "portrait", - "idiom" : "iphone", - "extent" : "full-screen", - "minimum-system-version" : "7.0", - "scale" : "2x" - }, - { - "orientation" : "portrait", - "idiom" : "iphone", - "subtype" : "retina4", - "extent" : "full-screen", - "minimum-system-version" : "7.0", - "scale" : "2x" - }, - { - "orientation" : "portrait", - "idiom" : "ipad", - "extent" : "full-screen", - "minimum-system-version" : "7.0", - "scale" : "1x" - }, - { - "orientation" : "landscape", - "idiom" : "ipad", - "extent" : "full-screen", - "minimum-system-version" : "7.0", - "scale" : "1x" - }, - { - "orientation" : "portrait", - "idiom" : "ipad", - "extent" : "full-screen", - "minimum-system-version" : "7.0", - "scale" : "2x" - }, - { - "orientation" : "landscape", - "idiom" : "ipad", - "extent" : "full-screen", - "minimum-system-version" : "7.0", - "scale" : "2x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/Examples/CocoaPods/Example/LaunchScreen.storyboard b/Examples/CocoaPods/Example/LaunchScreen.storyboard new file mode 100644 index 0000000..62e3d3f --- /dev/null +++ b/Examples/CocoaPods/Example/LaunchScreen.storyboard @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 6d9f6874f07fc4a2370694d94c350351e51e983c Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Fri, 20 Jan 2023 07:13:26 +1100 Subject: [PATCH 10/14] Disable call to OpenSans pod that crashes CocoaPods example app --- Examples/CocoaPods/Example/ExampleViewController.m | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Examples/CocoaPods/Example/ExampleViewController.m b/Examples/CocoaPods/Example/ExampleViewController.m index 9365116..a956baa 100644 --- a/Examples/CocoaPods/Example/ExampleViewController.m +++ b/Examples/CocoaPods/Example/ExampleViewController.m @@ -29,7 +29,13 @@ - (void)viewDidLoad self.view.backgroundColor = [UIColor whiteColor]; - self.titleLabel.font = [UIFont openSansFontOfSize:self.titleLabel.font.pointSize]; + // Getting + // + // > Terminating app due to uncaught exception 'NSInvalidArgumentException', + // > reason: '*** -[NSBundle initWithURL:]: nil URL argument' + // + // at some point when loading the font via the pod +// self.titleLabel.font = [UIFont openSansFontOfSize:self.titleLabel.font.pointSize]; self.titleLabel.lineBreakMode = NSLineBreakByWordWrapping; self.titleLabel.textColor = [UIColor flatBelizeHoleColor]; From 493b68efc91fb9d857751b53d4aa48c788cf0d76 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Fri, 20 Jan 2023 07:14:07 +1100 Subject: [PATCH 11/14] Upgrade CocoaPods setup in example app to compile Notably, `use_frameworks!` --- Examples/CocoaPods/.gitignore | 88 ++ .../Example.xcodeproj/project.pbxproj | 127 +- .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../CocoaPods/Example/ExampleViewController.m | 2 +- .../Example/ExampleViewController~iphone.xib | 16 +- Examples/CocoaPods/Gemfile | 5 + Examples/CocoaPods/Gemfile.lock | 97 ++ Examples/CocoaPods/Podfile | 2 + Examples/CocoaPods/Podfile.lock | 23 +- .../Private/OpenSans/UIFont+OpenSans.h | 1 - .../UICollectionViewLeftAlignedLayout.h | 1 - .../UIColor+FlatColors/UIColor+FlatColors.h | 1 - .../Headers/Public/OpenSans/UIFont+OpenSans.h | 1 - .../UICollectionViewLeftAlignedLayout.h | 1 - .../UIColor+FlatColors/UIColor+FlatColors.h | 1 - ...llectionViewLeftAlignedLayout.podspec.json | 13 +- Examples/CocoaPods/Pods/Manifest.lock | 23 +- .../Pods/Pods.xcodeproj/project.pbxproj | 1147 +++++++++++------ ...UICollectionViewLeftAlignedLayout.xcscheme | 71 - .../OpenSans/OpenSans-Info.plist | 26 + .../OpenSans/OpenSans-dummy.m | 5 + .../OpenSans/OpenSans-prefix.pch | 12 + .../OpenSans/OpenSans-umbrella.h | 17 + .../OpenSans/OpenSans.debug.xcconfig | 12 + .../OpenSans/OpenSans.modulemap | 6 + .../OpenSans/OpenSans.release.xcconfig | 12 + ...esourceBundle-OpenSans-OpenSans-Info.plist | 24 + .../Pods-Example-OpenSans-Private.xcconfig | 6 - .../Pods-Example-OpenSans-dummy.m | 5 - .../Pods-Example-OpenSans-prefix.pch | 5 - .../Pods-Example-OpenSans.xcconfig | 1 - ...tionViewLeftAlignedLayout-Private.xcconfig | 6 - ...-UICollectionViewLeftAlignedLayout-dummy.m | 5 - ...CollectionViewLeftAlignedLayout-prefix.pch | 5 - ...UICollectionViewLeftAlignedLayout.xcconfig | 0 ...xample-UIColor+FlatColors-Private.xcconfig | 6 - .../Pods-Example-UIColor+FlatColors-dummy.m | 5 - ...Pods-Example-UIColor+FlatColors-prefix.pch | 5 - .../Pods-Example-UIColor+FlatColors.xcconfig | 0 .../Pods-Example/Pods-Example-Info.plist | 26 + .../Pods-Example-acknowledgements.markdown | 2 +- .../Pods-Example-acknowledgements.plist | 8 +- .../Pods-Example/Pods-Example-environment.h | 26 - .../Pods-Example/Pods-Example-frameworks.sh | 190 +++ .../Pods-Example/Pods-Example-resources.sh | 132 +- .../Pods-Example/Pods-Example-umbrella.h | 16 + .../Pods-Example/Pods-Example.debug.xcconfig | 16 +- .../Pods-Example/Pods-Example.modulemap | 6 + .../Pods-Example.release.xcconfig | 16 +- ...CollectionViewLeftAlignedLayout-Info.plist | 26 + .../UICollectionViewLeftAlignedLayout-dummy.m | 5 + ...CollectionViewLeftAlignedLayout-prefix.pch | 12 + ...CollectionViewLeftAlignedLayout-umbrella.h | 17 + ...ectionViewLeftAlignedLayout.debug.xcconfig | 12 + ...ICollectionViewLeftAlignedLayout.modulemap | 6 + ...tionViewLeftAlignedLayout.release.xcconfig | 12 + .../UIColor+FlatColors-Info.plist | 26 + .../UIColor+FlatColors-dummy.m | 5 + .../UIColor+FlatColors-prefix.pch | 12 + .../UIColor+FlatColors-umbrella.h | 17 + .../UIColor+FlatColors.debug.xcconfig | 11 + .../UIColor+FlatColors.modulemap | 6 + .../UIColor+FlatColors.release.xcconfig | 11 + 63 files changed, 1701 insertions(+), 706 deletions(-) create mode 100644 Examples/CocoaPods/.gitignore create mode 100644 Examples/CocoaPods/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 Examples/CocoaPods/Gemfile create mode 100644 Examples/CocoaPods/Gemfile.lock delete mode 120000 Examples/CocoaPods/Pods/Headers/Private/OpenSans/UIFont+OpenSans.h delete mode 120000 Examples/CocoaPods/Pods/Headers/Private/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h delete mode 120000 Examples/CocoaPods/Pods/Headers/Private/UIColor+FlatColors/UIColor+FlatColors.h delete mode 120000 Examples/CocoaPods/Pods/Headers/Public/OpenSans/UIFont+OpenSans.h delete mode 120000 Examples/CocoaPods/Pods/Headers/Public/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h delete mode 120000 Examples/CocoaPods/Pods/Headers/Public/UIColor+FlatColors/UIColor+FlatColors.h delete mode 100644 Examples/CocoaPods/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-Example-UICollectionViewLeftAlignedLayout.xcscheme create mode 100644 Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans-Info.plist create mode 100644 Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans-dummy.m create mode 100644 Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans-prefix.pch create mode 100644 Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans-umbrella.h create mode 100644 Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans.debug.xcconfig create mode 100644 Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans.modulemap create mode 100644 Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans.release.xcconfig create mode 100644 Examples/CocoaPods/Pods/Target Support Files/OpenSans/ResourceBundle-OpenSans-OpenSans-Info.plist delete mode 100644 Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-Private.xcconfig delete mode 100644 Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-dummy.m delete mode 100644 Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-prefix.pch delete mode 100644 Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans.xcconfig delete mode 100644 Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-Private.xcconfig delete mode 100644 Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-dummy.m delete mode 100644 Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-prefix.pch delete mode 100644 Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout.xcconfig delete mode 100644 Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-Private.xcconfig delete mode 100644 Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-dummy.m delete mode 100644 Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-prefix.pch delete mode 100644 Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors.xcconfig create mode 100644 Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-Info.plist delete mode 100644 Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-environment.h create mode 100755 Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-frameworks.sh create mode 100644 Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-umbrella.h create mode 100644 Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example.modulemap create mode 100644 Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-Info.plist create mode 100644 Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-dummy.m create mode 100644 Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-prefix.pch create mode 100644 Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-umbrella.h create mode 100644 Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.debug.xcconfig create mode 100644 Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.modulemap create mode 100644 Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.release.xcconfig create mode 100644 Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-Info.plist create mode 100644 Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-dummy.m create mode 100644 Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-prefix.pch create mode 100644 Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-umbrella.h create mode 100644 Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors.debug.xcconfig create mode 100644 Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors.modulemap create mode 100644 Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors.release.xcconfig diff --git a/Examples/CocoaPods/.gitignore b/Examples/CocoaPods/.gitignore new file mode 100644 index 0000000..fe889c8 --- /dev/null +++ b/Examples/CocoaPods/.gitignore @@ -0,0 +1,88 @@ +# Taken from https://github.com/github/gitignore/blob/4488915eec0b3a45b5c63ead28f286819c0917de/Swift.gitignore + +## User settings +xcuserdata/ + +## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) +*.xcscmblueprint +*.xccheckout + +## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) +build/ +DerivedData/ +*.moved-aside +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 + +## Obj-C/Swift specific +*.hmap + +## App packaging +*.ipa +*.dSYM.zip +*.dSYM + +## Playgrounds +timeline.xctimeline +playground.xcworkspace + +# Swift Package Manager +# +# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. +# Packages/ +# Package.pins +# Package.resolved +# *.xcodeproj +# +# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata +# hence it is not needed unless you have added a package configuration file to your project +# .swiftpm + +.build/ + +# CocoaPods +# +# We recommend against adding the Pods directory to your .gitignore. However +# you should judge for yourself, the pros and cons are mentioned at: +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control +# +# Pods/ +# +# Add this line if you want to avoid checking in source code from the Xcode workspace +# *.xcworkspace + +# Carthage +# +# Add this line if you want to avoid checking in source code from Carthage dependencies. +# Carthage/Checkouts + +Carthage/Build/ + +# Accio dependency management +Dependencies/ +.accio/ + +# fastlane +# +# It is recommended to not store the screenshots in the git repo. +# Instead, use fastlane to re-generate the screenshots whenever they are needed. +# For more information about the recommended setup visit: +# https://docs.fastlane.tools/best-practices/source-control/#source-control + +fastlane/report.xml +fastlane/Preview.html +fastlane/screenshots/**/*.png +fastlane/test_output + +# Code Injection +# +# After new code Injection tools there's a generated folder /iOSInjectionProject +# https://github.com/johnno1962/injectionforxcode + +iOSInjectionProject/ diff --git a/Examples/CocoaPods/Example.xcodeproj/project.pbxproj b/Examples/CocoaPods/Example.xcodeproj/project.pbxproj index 29d538f..d5e91ca 100644 --- a/Examples/CocoaPods/Example.xcodeproj/project.pbxproj +++ b/Examples/CocoaPods/Example.xcodeproj/project.pbxproj @@ -7,7 +7,7 @@ objects = { /* Begin PBXBuildFile section */ - 21641B676BD44B76B5B333A6 /* libPods-Example.a in Frameworks */ = {isa = PBXBuildFile; fileRef = A6FE4E65791946C186EEB873 /* libPods-Example.a */; }; + 1186976DE4C07079C54E138C /* Pods_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E6A537EA87CB41029F992D0E /* Pods_Example.framework */; }; 3F5E30C21905663F00279D8B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F5E30C11905663F00279D8B /* Foundation.framework */; }; 3F5E30C41905663F00279D8B /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F5E30C31905663F00279D8B /* CoreGraphics.framework */; }; 3F5E30C61905663F00279D8B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F5E30C51905663F00279D8B /* UIKit.framework */; }; @@ -22,6 +22,7 @@ 3F5E30E71905664000279D8B /* ExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F5E30E61905664000279D8B /* ExampleTests.m */; }; 3F5E30F11905693C00279D8B /* ExampleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F5E30EF1905693C00279D8B /* ExampleViewController.m */; }; 3F5E30F619056DC200279D8B /* ExampleViewController~iphone.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3F5E30F519056DC200279D8B /* ExampleViewController~iphone.xib */; }; + 3FCF1A532979DA40002632D2 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3FCF1A522979DA40002632D2 /* LaunchScreen.storyboard */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -54,9 +55,10 @@ 3F5E30EE1905693C00279D8B /* ExampleViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExampleViewController.h; sourceTree = ""; }; 3F5E30EF1905693C00279D8B /* ExampleViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ExampleViewController.m; sourceTree = ""; }; 3F5E30F519056DC200279D8B /* ExampleViewController~iphone.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = "ExampleViewController~iphone.xib"; sourceTree = ""; }; - 58EFABF43E36836CB2B547B4 /* Pods-Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig"; sourceTree = ""; }; - A6FE4E65791946C186EEB873 /* libPods-Example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Example.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - B0C0CCA858ABA7ADBEDF4FD9 /* Pods-Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig"; sourceTree = ""; }; + 3FCF1A522979DA40002632D2 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = ""; }; + 5106335AA226054F49D1F2D9 /* Pods-Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.debug.xcconfig"; path = "Target Support Files/Pods-Example/Pods-Example.debug.xcconfig"; sourceTree = ""; }; + E6A537EA87CB41029F992D0E /* Pods_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + FFEAA9AED310EAB3BE3512C4 /* Pods-Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.release.xcconfig"; path = "Target Support Files/Pods-Example/Pods-Example.release.xcconfig"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -67,7 +69,7 @@ 3F5E30C41905663F00279D8B /* CoreGraphics.framework in Frameworks */, 3F5E30C61905663F00279D8B /* UIKit.framework in Frameworks */, 3F5E30C21905663F00279D8B /* Foundation.framework in Frameworks */, - 21641B676BD44B76B5B333A6 /* libPods-Example.a in Frameworks */, + 1186976DE4C07079C54E138C /* Pods_Example.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -91,7 +93,7 @@ 3F5E30E01905664000279D8B /* ExampleTests */, 3F5E30C01905663F00279D8B /* Frameworks */, 3F5E30BF1905663F00279D8B /* Products */, - 8260699C360EE79D6CAEF2DF /* Pods */, + CE88CFF1DDB032134505E9C5 /* Pods */, ); indentWidth = 4; sourceTree = ""; @@ -114,7 +116,7 @@ 3F5E30C31905663F00279D8B /* CoreGraphics.framework */, 3F5E30C51905663F00279D8B /* UIKit.framework */, 3F5E30DA1905663F00279D8B /* XCTest.framework */, - A6FE4E65791946C186EEB873 /* libPods-Example.a */, + E6A537EA87CB41029F992D0E /* Pods_Example.framework */, ); name = Frameworks; sourceTree = ""; @@ -129,6 +131,7 @@ 3F5E30EE1905693C00279D8B /* ExampleViewController.h */, 3F5E30EF1905693C00279D8B /* ExampleViewController.m */, 3F5E30F519056DC200279D8B /* ExampleViewController~iphone.xib */, + 3FCF1A522979DA40002632D2 /* LaunchScreen.storyboard */, ); path = Example; sourceTree = ""; @@ -162,13 +165,13 @@ name = "Supporting Files"; sourceTree = ""; }; - 8260699C360EE79D6CAEF2DF /* Pods */ = { + CE88CFF1DDB032134505E9C5 /* Pods */ = { isa = PBXGroup; children = ( - B0C0CCA858ABA7ADBEDF4FD9 /* Pods-Example.debug.xcconfig */, - 58EFABF43E36836CB2B547B4 /* Pods-Example.release.xcconfig */, + 5106335AA226054F49D1F2D9 /* Pods-Example.debug.xcconfig */, + FFEAA9AED310EAB3BE3512C4 /* Pods-Example.release.xcconfig */, ); - name = Pods; + path = Pods; sourceTree = ""; }; /* End PBXGroup section */ @@ -178,12 +181,12 @@ isa = PBXNativeTarget; buildConfigurationList = 3F5E30E81905664000279D8B /* Build configuration list for PBXNativeTarget "Example" */; buildPhases = ( - 235C6987406C4F5C8CF20B6B /* Check Pods Manifest.lock */, + 3CD7E6836E4D0B5BF4ED78A7 /* [CP] Check Pods Manifest.lock */, 3F5E30BA1905663F00279D8B /* Sources */, 3F5E30BB1905663F00279D8B /* Frameworks */, 3F5E30BC1905663F00279D8B /* Resources */, D946A24095DE41B68401F596 /* Warn for TODO and FIXME comments */, - 3A7059E5B87E4532B798803A /* Copy Pods Resources */, + E936520BE258FAB9E41A8714 /* [CP] Embed Pods Frameworks */, ); buildRules = ( ); @@ -218,7 +221,7 @@ 3F5E30B41905662300279D8B /* Project object */ = { isa = PBXProject; attributes = { - LastUpgradeCheck = 0710; + LastUpgradeCheck = 1410; TargetAttributes = { 3F5E30D81905663F00279D8B = { TestTargetID = 3F5E30BD1905663F00279D8B; @@ -230,6 +233,7 @@ developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( + English, en, ); mainGroup = 3F5E30B31905662300279D8B; @@ -249,6 +253,7 @@ buildActionMask = 2147483647; files = ( 3F5E30CC1905663F00279D8B /* InfoPlist.strings in Resources */, + 3FCF1A532979DA40002632D2 /* LaunchScreen.storyboard in Resources */, 3F5E30F619056DC200279D8B /* ExampleViewController~iphone.xib in Resources */, 3F5E30D41905663F00279D8B /* Images.xcassets in Resources */, ); @@ -265,49 +270,63 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ - 235C6987406C4F5C8CF20B6B /* Check Pods Manifest.lock */ = { + 3CD7E6836E4D0B5BF4ED78A7 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); + inputFileListPaths = ( + ); inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( ); - name = "Check Pods Manifest.lock"; outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-Example-checkManifestLockResult.txt", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; showEnvVarsInLog = 0; }; - 3A7059E5B87E4532B798803A /* Copy Pods Resources */ = { + D946A24095DE41B68401F596 /* Warn for TODO and FIXME comments */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputPaths = ( ); - name = "Copy Pods Resources"; + name = "Warn for TODO and FIXME comments"; outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Example/Pods-Example-resources.sh\"\n"; - showEnvVarsInLog = 0; + shellScript = "KEYWORDS=\"TODO:|FIXME:|\\?\\?\\?:|\\!\\!\\!:\"\nFILE_EXTENSIONS=\"h|m|mm|c|cpp\"\nfind -E \"${SRCROOT}\" -ipath \"${SRCROOT}/pods\" -prune -o \\( -regex \".*\\.($FILE_EXTENSIONS)$\" \\) -print0 | xargs -0 egrep --with-filename --line-number --only-matching \"($KEYWORDS).*\\$\" | perl -p -e \"s/($KEYWORDS)/ warning: \\$1/\"\n"; }; - D946A24095DE41B68401F596 /* Warn for TODO and FIXME comments */ = { + E936520BE258FAB9E41A8714 /* [CP] Embed Pods Frameworks */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( ); inputPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-frameworks.sh", + "${BUILT_PRODUCTS_DIR}/OpenSans/OpenSans.framework", + "${BUILT_PRODUCTS_DIR}/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.framework", + "${BUILT_PRODUCTS_DIR}/UIColor+FlatColors/UIColor_FlatColors.framework", ); - name = "Warn for TODO and FIXME comments"; + name = "[CP] Embed Pods Frameworks"; outputPaths = ( + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/OpenSans.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/UICollectionViewLeftAlignedLayout.framework", + "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/UIColor_FlatColors.framework", ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "KEYWORDS=\"TODO:|FIXME:|\\?\\?\\?:|\\!\\!\\!:\"\nFILE_EXTENSIONS=\"h|m|mm|c|cpp\"\nfind -E \"${SRCROOT}\" -ipath \"${SRCROOT}/pods\" -prune -o \\( -regex \".*\\.($FILE_EXTENSIONS)$\" \\) -print0 | xargs -0 egrep --with-filename --line-number --only-matching \"($KEYWORDS).*\\$\" | perl -p -e \"s/($KEYWORDS)/ warning: \\$1/\"\n"; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Example/Pods-Example-frameworks.sh\"\n"; + showEnvVarsInLog = 0; }; /* End PBXShellScriptBuildPhase section */ @@ -363,9 +382,29 @@ 3F5E30B81905662300279D8B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + DEAD_CODE_STRIPPING = YES; + ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; + GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES; GCC_WARN_ABOUT_MISSING_NEWLINE = YES; @@ -377,11 +416,12 @@ GCC_WARN_SIGN_COMPARE = YES; GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES; GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_LABEL = YES; GCC_WARN_UNUSED_VALUE = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.1; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; ONLY_ACTIVE_ARCH = YES; RUN_CLANG_STATIC_ANALYZER = YES; }; @@ -390,8 +430,28 @@ 3F5E30B91905662300279D8B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + DEAD_CODE_STRIPPING = YES; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_MISSING_FIELD_INITIALIZERS = YES; GCC_WARN_ABOUT_MISSING_NEWLINE = YES; @@ -403,22 +463,22 @@ GCC_WARN_SIGN_COMPARE = YES; GCC_WARN_TYPECHECK_CALLS_TO_PRINTF = YES; GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_LABEL = YES; GCC_WARN_UNUSED_VALUE = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.1; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; RUN_CLANG_STATIC_ANALYZER = YES; }; name = Release; }; 3F5E30E91905664000279D8B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B0C0CCA858ABA7ADBEDF4FD9 /* Pods-Example.debug.xcconfig */; + baseConfigurationReference = 5106335AA226054F49D1F2D9 /* Pods-Example.debug.xcconfig */; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; @@ -454,7 +514,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; INFOPLIST_FILE = "Example/Example-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.1; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; ONLY_ACTIVE_ARCH = YES; PRODUCT_BUNDLE_IDENTIFIER = "com.mokagio.ios.${PRODUCT_NAME:rfc1034identifier}"; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -466,11 +526,10 @@ }; 3F5E30EA1905664000279D8B /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 58EFABF43E36836CB2B547B4 /* Pods-Example.release.xcconfig */; + baseConfigurationReference = FFEAA9AED310EAB3BE3512C4 /* Pods-Example.release.xcconfig */; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; @@ -500,7 +559,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; INFOPLIST_FILE = "Example/Example-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.1; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; PRODUCT_BUNDLE_IDENTIFIER = "com.mokagio.ios.${PRODUCT_NAME:rfc1034identifier}"; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = iphoneos; @@ -550,7 +609,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; INFOPLIST_FILE = "ExampleTests/ExampleTests-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 7.1; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; ONLY_ACTIVE_ARCH = YES; PRODUCT_BUNDLE_IDENTIFIER = "com.mokagio.ios.${PRODUCT_NAME:rfc1034identifier}"; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -594,7 +653,7 @@ GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; INFOPLIST_FILE = "ExampleTests/ExampleTests-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 7.1; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; PRODUCT_BUNDLE_IDENTIFIER = "com.mokagio.ios.${PRODUCT_NAME:rfc1034identifier}"; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = iphoneos; diff --git a/Examples/CocoaPods/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Examples/CocoaPods/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/Examples/CocoaPods/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/Examples/CocoaPods/Example/ExampleViewController.m b/Examples/CocoaPods/Example/ExampleViewController.m index a956baa..9459a35 100644 --- a/Examples/CocoaPods/Example/ExampleViewController.m +++ b/Examples/CocoaPods/Example/ExampleViewController.m @@ -1,6 +1,6 @@ #import "ExampleViewController.h" -#import +@import UICollectionViewLeftAlignedLayout; #import #import diff --git a/Examples/CocoaPods/Example/ExampleViewController~iphone.xib b/Examples/CocoaPods/Example/ExampleViewController~iphone.xib index 7fbd238..78b1cfe 100644 --- a/Examples/CocoaPods/Example/ExampleViewController~iphone.xib +++ b/Examples/CocoaPods/Example/ExampleViewController~iphone.xib @@ -1,8 +1,10 @@ - - + + + - + + @@ -14,16 +16,16 @@ - + - + - + diff --git a/Examples/CocoaPods/Gemfile b/Examples/CocoaPods/Gemfile new file mode 100644 index 0000000..3bf1d14 --- /dev/null +++ b/Examples/CocoaPods/Gemfile @@ -0,0 +1,5 @@ +# frozen_string_literal: true + +source 'https://rubygems.org' + +gem 'cocoapods' diff --git a/Examples/CocoaPods/Gemfile.lock b/Examples/CocoaPods/Gemfile.lock new file mode 100644 index 0000000..b13c3ea --- /dev/null +++ b/Examples/CocoaPods/Gemfile.lock @@ -0,0 +1,97 @@ +GEM + remote: https://rubygems.org/ + specs: + CFPropertyList (3.0.5) + rexml + activesupport (6.1.7.1) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) + zeitwerk (~> 2.3) + addressable (2.8.1) + public_suffix (>= 2.0.2, < 6.0) + algoliasearch (1.27.5) + httpclient (~> 2.8, >= 2.8.3) + json (>= 1.5.1) + atomos (0.1.3) + claide (1.1.0) + cocoapods (1.11.3) + addressable (~> 2.8) + claide (>= 1.0.2, < 2.0) + cocoapods-core (= 1.11.3) + cocoapods-deintegrate (>= 1.0.3, < 2.0) + cocoapods-downloader (>= 1.4.0, < 2.0) + cocoapods-plugins (>= 1.0.0, < 2.0) + cocoapods-search (>= 1.0.0, < 2.0) + cocoapods-trunk (>= 1.4.0, < 2.0) + cocoapods-try (>= 1.1.0, < 2.0) + colored2 (~> 3.1) + escape (~> 0.0.4) + fourflusher (>= 2.3.0, < 3.0) + gh_inspector (~> 1.0) + molinillo (~> 0.8.0) + nap (~> 1.0) + ruby-macho (>= 1.0, < 3.0) + xcodeproj (>= 1.21.0, < 2.0) + cocoapods-core (1.11.3) + activesupport (>= 5.0, < 7) + addressable (~> 2.8) + algoliasearch (~> 1.0) + concurrent-ruby (~> 1.1) + fuzzy_match (~> 2.0.4) + nap (~> 1.0) + netrc (~> 0.11) + public_suffix (~> 4.0) + typhoeus (~> 1.0) + cocoapods-deintegrate (1.0.5) + cocoapods-downloader (1.6.3) + cocoapods-plugins (1.0.0) + nap + cocoapods-search (1.0.1) + cocoapods-trunk (1.6.0) + nap (>= 0.8, < 2.0) + netrc (~> 0.11) + cocoapods-try (1.2.0) + colored2 (3.1.2) + concurrent-ruby (1.1.10) + escape (0.0.4) + ethon (0.16.0) + ffi (>= 1.15.0) + ffi (1.15.5) + fourflusher (2.3.1) + fuzzy_match (2.0.4) + gh_inspector (1.1.3) + httpclient (2.8.3) + i18n (1.12.0) + concurrent-ruby (~> 1.0) + json (2.6.3) + minitest (5.17.0) + molinillo (0.8.0) + nanaimo (0.3.0) + nap (1.1.0) + netrc (0.11.0) + public_suffix (4.0.7) + rexml (3.2.5) + ruby-macho (2.5.1) + typhoeus (1.4.0) + ethon (>= 0.9.0) + tzinfo (2.0.5) + concurrent-ruby (~> 1.0) + xcodeproj (1.22.0) + CFPropertyList (>= 2.3.3, < 4.0) + atomos (~> 0.1.3) + claide (>= 1.0.2, < 2.0) + colored2 (~> 3.1) + nanaimo (~> 0.3.0) + rexml (~> 3.2.4) + zeitwerk (2.6.6) + +PLATFORMS + arm64-darwin-21 + +DEPENDENCIES + cocoapods + +BUNDLED WITH + 2.3.26 diff --git a/Examples/CocoaPods/Podfile b/Examples/CocoaPods/Podfile index 2ce0638..25daded 100644 --- a/Examples/CocoaPods/Podfile +++ b/Examples/CocoaPods/Podfile @@ -1,5 +1,7 @@ platform :ios, "11.0" +use_frameworks! + target :Example do pod 'UICollectionViewLeftAlignedLayout', :path => '../..' pod 'OpenSans' diff --git a/Examples/CocoaPods/Podfile.lock b/Examples/CocoaPods/Podfile.lock index c3a1133..9589cb6 100644 --- a/Examples/CocoaPods/Podfile.lock +++ b/Examples/CocoaPods/Podfile.lock @@ -1,20 +1,27 @@ PODS: - OpenSans (1.0.3) - - UICollectionViewLeftAlignedLayout (0.0.3) - - UIColor+FlatColors (0.0.2) + - UICollectionViewLeftAlignedLayout (1.0.2) + - "UIColor+FlatColors (0.0.2)" DEPENDENCIES: - OpenSans - - UICollectionViewLeftAlignedLayout (from `..`) - - UIColor+FlatColors + - UICollectionViewLeftAlignedLayout (from `../..`) + - "UIColor+FlatColors" + +SPEC REPOS: + trunk: + - OpenSans + - "UIColor+FlatColors" EXTERNAL SOURCES: UICollectionViewLeftAlignedLayout: - :path: ".." + :path: "../.." SPEC CHECKSUMS: OpenSans: 33078846463eae780aa5f82986b51cce085f970d - UICollectionViewLeftAlignedLayout: 46396e7c45573544981b9a04a2e25ecacba18774 - UIColor+FlatColors: 6c699df7a575281794c688c64cee6c44fd1f93b4 + UICollectionViewLeftAlignedLayout: 092b2601d7d8c1d9798f016d15f770b552fcef30 + "UIColor+FlatColors": 6c699df7a575281794c688c64cee6c44fd1f93b4 + +PODFILE CHECKSUM: b6c20cfa666cd965197aeb8df647bf0f76c57503 -COCOAPODS: 0.37.2 +COCOAPODS: 1.11.3 diff --git a/Examples/CocoaPods/Pods/Headers/Private/OpenSans/UIFont+OpenSans.h b/Examples/CocoaPods/Pods/Headers/Private/OpenSans/UIFont+OpenSans.h deleted file mode 120000 index 49655ab..0000000 --- a/Examples/CocoaPods/Pods/Headers/Private/OpenSans/UIFont+OpenSans.h +++ /dev/null @@ -1 +0,0 @@ -../../../OpenSans/UIFont+OpenSans.h \ No newline at end of file diff --git a/Examples/CocoaPods/Pods/Headers/Private/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h b/Examples/CocoaPods/Pods/Headers/Private/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h deleted file mode 120000 index 2fc78eb..0000000 --- a/Examples/CocoaPods/Pods/Headers/Private/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h \ No newline at end of file diff --git a/Examples/CocoaPods/Pods/Headers/Private/UIColor+FlatColors/UIColor+FlatColors.h b/Examples/CocoaPods/Pods/Headers/Private/UIColor+FlatColors/UIColor+FlatColors.h deleted file mode 120000 index 7866103..0000000 --- a/Examples/CocoaPods/Pods/Headers/Private/UIColor+FlatColors/UIColor+FlatColors.h +++ /dev/null @@ -1 +0,0 @@ -../../../UIColor+FlatColors/UIColor+FlatColors/UIColor+FlatColors.h \ No newline at end of file diff --git a/Examples/CocoaPods/Pods/Headers/Public/OpenSans/UIFont+OpenSans.h b/Examples/CocoaPods/Pods/Headers/Public/OpenSans/UIFont+OpenSans.h deleted file mode 120000 index 49655ab..0000000 --- a/Examples/CocoaPods/Pods/Headers/Public/OpenSans/UIFont+OpenSans.h +++ /dev/null @@ -1 +0,0 @@ -../../../OpenSans/UIFont+OpenSans.h \ No newline at end of file diff --git a/Examples/CocoaPods/Pods/Headers/Public/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h b/Examples/CocoaPods/Pods/Headers/Public/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h deleted file mode 120000 index 2fc78eb..0000000 --- a/Examples/CocoaPods/Pods/Headers/Public/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h +++ /dev/null @@ -1 +0,0 @@ -../../../../../UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.h \ No newline at end of file diff --git a/Examples/CocoaPods/Pods/Headers/Public/UIColor+FlatColors/UIColor+FlatColors.h b/Examples/CocoaPods/Pods/Headers/Public/UIColor+FlatColors/UIColor+FlatColors.h deleted file mode 120000 index 7866103..0000000 --- a/Examples/CocoaPods/Pods/Headers/Public/UIColor+FlatColors/UIColor+FlatColors.h +++ /dev/null @@ -1 +0,0 @@ -../../../UIColor+FlatColors/UIColor+FlatColors/UIColor+FlatColors.h \ No newline at end of file diff --git a/Examples/CocoaPods/Pods/Local Podspecs/UICollectionViewLeftAlignedLayout.podspec.json b/Examples/CocoaPods/Pods/Local Podspecs/UICollectionViewLeftAlignedLayout.podspec.json index 56a032e..f0f00d5 100644 --- a/Examples/CocoaPods/Pods/Local Podspecs/UICollectionViewLeftAlignedLayout.podspec.json +++ b/Examples/CocoaPods/Pods/Local Podspecs/UICollectionViewLeftAlignedLayout.podspec.json @@ -1,8 +1,8 @@ { "name": "UICollectionViewLeftAlignedLayout", - "version": "0.0.3", - "summary": "A layout for UICollectionView that aligns the cells to the left ", - "description": " A `UICollectionViewLayout` implementation that aligns the cells to the left.\n\n It uses `UICollectionViewFlowLayout` under the hood.\n", + "version": "1.0.2", + "summary": "A layout for UICollectionView that aligns the cells to the left", + "description": "A `UICollectionViewLayout` implementation that aligns the cells to the left.\n\nIt uses `UICollectionViewFlowLayout` under the hood.", "homepage": "https://github.com/mokagio/UICollectionViewLeftAlignedLayout", "screenshots": "https://raw.githubusercontent.com/mokagio/UICollectionViewLeftAlignedLayout/master/screenshot.png", "license": { @@ -14,12 +14,13 @@ }, "social_media_url": "http://twitter.com/mokagio", "platforms": { - "ios": "6.0" + "ios": "11.0" }, "source": { "git": "https://github.com/mokagio/UICollectionViewLeftAlignedLayout.git", - "tag": "0.0.3" + "tag": "1.0.2" }, - "source_files": "UICollectionViewLeftAlignedLayout", + "source_files": "UICollectionViewLeftAlignedLayout/**/*.{h,m}", + "frameworks": "UIKit", "requires_arc": true } diff --git a/Examples/CocoaPods/Pods/Manifest.lock b/Examples/CocoaPods/Pods/Manifest.lock index c3a1133..9589cb6 100644 --- a/Examples/CocoaPods/Pods/Manifest.lock +++ b/Examples/CocoaPods/Pods/Manifest.lock @@ -1,20 +1,27 @@ PODS: - OpenSans (1.0.3) - - UICollectionViewLeftAlignedLayout (0.0.3) - - UIColor+FlatColors (0.0.2) + - UICollectionViewLeftAlignedLayout (1.0.2) + - "UIColor+FlatColors (0.0.2)" DEPENDENCIES: - OpenSans - - UICollectionViewLeftAlignedLayout (from `..`) - - UIColor+FlatColors + - UICollectionViewLeftAlignedLayout (from `../..`) + - "UIColor+FlatColors" + +SPEC REPOS: + trunk: + - OpenSans + - "UIColor+FlatColors" EXTERNAL SOURCES: UICollectionViewLeftAlignedLayout: - :path: ".." + :path: "../.." SPEC CHECKSUMS: OpenSans: 33078846463eae780aa5f82986b51cce085f970d - UICollectionViewLeftAlignedLayout: 46396e7c45573544981b9a04a2e25ecacba18774 - UIColor+FlatColors: 6c699df7a575281794c688c64cee6c44fd1f93b4 + UICollectionViewLeftAlignedLayout: 092b2601d7d8c1d9798f016d15f770b552fcef30 + "UIColor+FlatColors": 6c699df7a575281794c688c64cee6c44fd1f93b4 + +PODFILE CHECKSUM: b6c20cfa666cd965197aeb8df647bf0f76c57503 -COCOAPODS: 0.37.2 +COCOAPODS: 1.11.3 diff --git a/Examples/CocoaPods/Pods/Pods.xcodeproj/project.pbxproj b/Examples/CocoaPods/Pods/Pods.xcodeproj/project.pbxproj index f88418d..ad709ef 100644 --- a/Examples/CocoaPods/Pods/Pods.xcodeproj/project.pbxproj +++ b/Examples/CocoaPods/Pods/Pods.xcodeproj/project.pbxproj @@ -7,855 +7,1148 @@ objects = { /* Begin PBXBuildFile section */ - 26CF72622BDEF57D8D5888F0 /* UIColor+FlatColors.m in Sources */ = {isa = PBXBuildFile; fileRef = AE0041671D65D41CFCC31469 /* UIColor+FlatColors.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 279EFF6CF29F3E3B2B7DD7B2 /* OpenSans-SemiboldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0CDAEB15663CF794360A5895 /* OpenSans-SemiboldItalic.ttf */; }; - 27E39DA5A415C6DFB0925316 /* OpenSans-Italic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = D9361BF7C6CE821259E93704 /* OpenSans-Italic.ttf */; }; - 3B774CAA30044B9DB1B95AC6 /* Pods-Example-UICollectionViewLeftAlignedLayout-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 071CC0E5F246C436FA182281 /* Pods-Example-UICollectionViewLeftAlignedLayout-dummy.m */; }; - 45D77568619608065130B6E0 /* UICollectionViewLeftAlignedLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = B303C206498D14EFB0A76244 /* UICollectionViewLeftAlignedLayout.h */; }; - 4B00B42F0ED9ABDE524E1F08 /* UIFont+OpenSans.m in Sources */ = {isa = PBXBuildFile; fileRef = 1A3B94A6F7AAE3B9D890A4AA /* UIFont+OpenSans.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 519DF5AD48D954336A99994D /* OpenSans-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 955B878CA27E5B7AFBFF2775 /* OpenSans-Bold.ttf */; }; - 56C1F62517504A540623368A /* UIFont+OpenSans.h in Headers */ = {isa = PBXBuildFile; fileRef = 091430CE0B89DBED8D47EBA8 /* UIFont+OpenSans.h */; }; - 737CD8B2ABC4C4057C2DB451 /* OpenSans-ExtraBoldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0DCA5863A59AB5815EF15DE0 /* OpenSans-ExtraBoldItalic.ttf */; }; - 75BE6AEB59EB840D3B7288E1 /* OpenSans-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 88E52EC0D072289762A16D4C /* OpenSans-Light.ttf */; }; - 7A7C66834BF036DB2B6B236F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33BFFD95235C1CAA24348A9F /* Foundation.framework */; }; - 7D05CF7B83E182DBA11E247E /* UICollectionViewLeftAlignedLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F14E6696410B38F315F82EA /* UICollectionViewLeftAlignedLayout.m */; }; - 7EE1C6DA1539721806CC3B62 /* OpenSans-BoldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B0FC3847694B4A0F3A255D8E /* OpenSans-BoldItalic.ttf */; }; - 83385EE1F82F73D282FF754E /* OpenSans-Semibold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 48B9E9461B39041B6C736F16 /* OpenSans-Semibold.ttf */; }; - 8A2A2F8E286D9F0813203711 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33BFFD95235C1CAA24348A9F /* Foundation.framework */; }; - 97040AEC92A6E5CBA760757A /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A8FDEA7F86663C94B2257857 /* CoreText.framework */; }; - 9B1B40992BB1E20B68C29C99 /* OpenSans-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 744CA8A2C61576C32158AA17 /* OpenSans-Regular.ttf */; }; - A0C0B35B03BBBF86D155859B /* OpenSans-ExtraBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 184E099EAC1F15EC9C2BA9D0 /* OpenSans-ExtraBold.ttf */; }; - A37CEF2A80588F5333ED93E6 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8E5FE9D5ECEEFA509A537744 /* UIKit.framework */; }; - A9885CD96E8BC441E8017651 /* Pods-Example-UIColor+FlatColors-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CABFCB9C9DB356F367F5ABE1 /* Pods-Example-UIColor+FlatColors-dummy.m */; }; - B22F85C267D9F703E4D9B844 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33BFFD95235C1CAA24348A9F /* Foundation.framework */; }; - B3176579F2FB14D76717FC94 /* Pods-Example-OpenSans-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1C7410C6BECFAD49D87FD424 /* Pods-Example-OpenSans-dummy.m */; }; - B5A66A3846B16E99D4ABC729 /* Pods-Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A94EADE4BE95EC4CB6A665E6 /* Pods-Example-dummy.m */; }; - C77C9B6F37B4A8D6AA53144B /* OpenSans-LightItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 80BFE2D09A79B61D22502278 /* OpenSans-LightItalic.ttf */; }; - EE9A470DD47FC5D8D7457795 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33BFFD95235C1CAA24348A9F /* Foundation.framework */; }; - F453A3107C15F8DF7B1ACAA1 /* UIColor+FlatColors.h in Headers */ = {isa = PBXBuildFile; fileRef = 48FAF0D7464A36306EB05191 /* UIColor+FlatColors.h */; }; + 071DDC73DF7F0B807ADA66F16F3A96B5 /* Pods-Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 7825A90E082A1582EB16256B0E722B3F /* Pods-Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2B8FD700DACE8AF6A3ED74717A78EEEC /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E74D207BDA239A25C1380A816F90FF59 /* UIKit.framework */; }; + 3484C679E38A7125DB3FF396245DCD02 /* OpenSans-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C5AFEE087580BE5FDBF29443C4B2F750 /* OpenSans-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3DAD0557DF8E0449EC779CBAC97B5BB9 /* UIColor+FlatColors.h in Headers */ = {isa = PBXBuildFile; fileRef = 3343193E1CCE05EE68EC191458664F7A /* UIColor+FlatColors.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 48A500991076F7B0821B11373024B7E3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2DF26CFF1E862548F8E456C64372DC06 /* Foundation.framework */; }; + 4C8B0624D371A190CE4B069C429C82EA /* UIFont+OpenSans.m in Sources */ = {isa = PBXBuildFile; fileRef = 07CD48FCE02E1BAEFB8FB04A2BA3EF4B /* UIFont+OpenSans.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 5795B28F12D016A68532DBDB74151894 /* UICollectionViewLeftAlignedLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = D6E7249CBD3D2ADE67D9D67B42DD2F3A /* UICollectionViewLeftAlignedLayout.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 623F0EEF6B493FA2CC3444C6757AE532 /* UIFont+OpenSans.h in Headers */ = {isa = PBXBuildFile; fileRef = 97B94EFC7123046E51EA97A4AE2AD366 /* UIFont+OpenSans.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 62C1B16E0E6DEF7B40381B26B01A70AC /* UIColor+FlatColors-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C0D616296BACC14817051AFCB14CE91 /* UIColor+FlatColors-dummy.m */; }; + 657E0BD0B34A889C34420FF45C6E1905 /* OpenSans-Italic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9DFADE8C42D6E3C19FE8FDF5908DFECF /* OpenSans-Italic.ttf */; }; + 6A3CE2308A6B5219DA2614184037E4BF /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CFA76860B506E69F08B0B154D70C038E /* CoreText.framework */; }; + 6B3EDFE1EF75734AB54463F6F91AEAE0 /* UIColor+FlatColors.m in Sources */ = {isa = PBXBuildFile; fileRef = C87FC81E91D191769493B4BB50509AC8 /* UIColor+FlatColors.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 6C05A63DB53A81BB8A2DB99F8DB77944 /* OpenSans-ExtraBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 571623CCF839D93A52DEB39450ABEE7E /* OpenSans-ExtraBold.ttf */; }; + 6D9927CB01717CBBD14892EE89F4DEC2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2DF26CFF1E862548F8E456C64372DC06 /* Foundation.framework */; }; + 7C0454C9C7A384C5F761961CD6C45827 /* OpenSans-BoldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = A89527F29A6A86C3969C63058CA99348 /* OpenSans-BoldItalic.ttf */; }; + 7FFB66B82589C1DD8AFAE0A3B2BCA90C /* OpenSans-LightItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FCBE029EAB0EF0B47A98A5F8FAB5132E /* OpenSans-LightItalic.ttf */; }; + 84CB1080B796EDCA15994078393E6BCC /* Pods-Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D6D7C498FA339E02BD53ECB8916CEA8E /* Pods-Example-dummy.m */; }; + 990BF31958AEDEF7089175C0E3354512 /* OpenSans-ExtraBoldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = B6298CFC8665A74BADA244ED9D759357 /* OpenSans-ExtraBoldItalic.ttf */; }; + 992BBE6C0A9B0E7F35F54B8A04F05B39 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2DF26CFF1E862548F8E456C64372DC06 /* Foundation.framework */; }; + 9A31BF7EB81151E0DC6A1372FC5FE4DE /* OpenSans-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = BB100F774B5E3D21D1C9E8B06B40DDD2 /* OpenSans-Regular.ttf */; }; + 9BD6DEB16AEBEB66FF8C154748A110E5 /* OpenSans-SemiboldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E4C1F3BD6105EEBA056FC7BD6C894DEB /* OpenSans-SemiboldItalic.ttf */; }; + B59893F6C67EE9CFA297B574041C37A6 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E74D207BDA239A25C1380A816F90FF59 /* UIKit.framework */; }; + B94C4D4853A8E91DC1A614BFD9BB7D4A /* UICollectionViewLeftAlignedLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A28300C99F9AC417D8EE632BE9E6C3A /* UICollectionViewLeftAlignedLayout.m */; }; + BB7541B9A900EDC6B2EE1EE7C6EB6BC6 /* UIColor+FlatColors-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D7EE31FB60C345C43E4F84F5E5D4097D /* UIColor+FlatColors-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C8DE09AAFC30F82063498CE0698F946F /* OpenSans-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 318B68AFC2527F596E00E04D01C089CA /* OpenSans-dummy.m */; }; + CE550D88EAC087B04AB7ED2429C9D367 /* OpenSans-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 6E979EB87466C60DEED35D88665D6B92 /* OpenSans-Bold.ttf */; }; + DBBEE0B0DC2AECE55F6AFF982B612E9D /* OpenSans-OpenSans in Resources */ = {isa = PBXBuildFile; fileRef = 95244E634CD25D6FAFBE86E6504426B3 /* OpenSans-OpenSans */; }; + DBEDA3C3FD72FD53C03F699D044F505E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2DF26CFF1E862548F8E456C64372DC06 /* Foundation.framework */; }; + DE71C22B3B77718A4FAC198B6E835E0E /* UICollectionViewLeftAlignedLayout-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 617C33C9228E0BB16E18587461DD10EF /* UICollectionViewLeftAlignedLayout-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E7F5191B7F7120FB3AF97B2E3471FC59 /* UICollectionViewLeftAlignedLayout-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9519BC21C948FBE1C4D6EFEE874DAA7F /* UICollectionViewLeftAlignedLayout-dummy.m */; }; + EE8A28C7B7C938A9B32072DB99925E7C /* OpenSans-Semibold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FCDC922C92457E10A8217F9CA7305660 /* OpenSans-Semibold.ttf */; }; + FB158041136A580A50F77F1ABC43EC52 /* OpenSans-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5F24DBDACB87DB6FA4A4456C3D89E340 /* OpenSans-Light.ttf */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 101CE45BED1FEF7F9C7369C6 /* PBXContainerItemProxy */ = { + 274FF763F1C0F55579A4501E0F96152A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 0FB622B518768A11A730688C /* Project object */; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 86020060F6B0CA56E1AD9B59; - remoteInfo = "Pods-Example-OpenSans-OpenSans"; + remoteGlobalIDString = 5D2C062A8FB1A5905A7A79E46FB5EC44; + remoteInfo = OpenSans; }; - 29337A2432417DCDCE50ACD9 /* PBXContainerItemProxy */ = { + 2EA216675343B90BE27458869A999E12 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 0FB622B518768A11A730688C /* Project object */; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B91EDE3BEF5062F460EE9623; - remoteInfo = "Pods-Example-UICollectionViewLeftAlignedLayout"; + remoteGlobalIDString = CC855F6CF68A0E53B44765DF68F5A1BB; + remoteInfo = UICollectionViewLeftAlignedLayout; }; - 3688A602259FA9EE9BAB969A /* PBXContainerItemProxy */ = { + 8CC546101A4E046CCB7B79E5039A0648 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 0FB622B518768A11A730688C /* Project object */; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F83C4F9865B48191AF666012; - remoteInfo = "Pods-Example-OpenSans"; + remoteGlobalIDString = DBF5D92DF7C222FC14A9F2D2E3A1FECB; + remoteInfo = "UIColor+FlatColors"; }; - 7C962514D4928FE78472B090 /* PBXContainerItemProxy */ = { + 95F090CBE402243A8D2C15FCD40CE307 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 0FB622B518768A11A730688C /* Project object */; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0E1EE87C44D5432C4FF11A8F; - remoteInfo = "Pods-Example-UIColor+FlatColors"; + remoteGlobalIDString = 866AA0434270D3C9C6572C4650E1A7A8; + remoteInfo = "OpenSans-OpenSans"; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 05E5F2945736E4AB42D6FE68 /* Pods-Example-UICollectionViewLeftAlignedLayout.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Example-UICollectionViewLeftAlignedLayout.xcconfig"; sourceTree = ""; }; - 071CC0E5F246C436FA182281 /* Pods-Example-UICollectionViewLeftAlignedLayout-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Example-UICollectionViewLeftAlignedLayout-dummy.m"; sourceTree = ""; }; - 091430CE0B89DBED8D47EBA8 /* UIFont+OpenSans.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIFont+OpenSans.h"; sourceTree = ""; }; - 0CDAEB15663CF794360A5895 /* OpenSans-SemiboldItalic.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = "OpenSans-SemiboldItalic.ttf"; path = "Fonts/OpenSans-SemiboldItalic.ttf"; sourceTree = ""; }; - 0DCA5863A59AB5815EF15DE0 /* OpenSans-ExtraBoldItalic.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = "OpenSans-ExtraBoldItalic.ttf"; path = "Fonts/OpenSans-ExtraBoldItalic.ttf"; sourceTree = ""; }; - 14CEBDAFE008202E0026AA06 /* Pods-Example-OpenSans.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Example-OpenSans.xcconfig"; sourceTree = ""; }; - 184E099EAC1F15EC9C2BA9D0 /* OpenSans-ExtraBold.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = "OpenSans-ExtraBold.ttf"; path = "Fonts/OpenSans-ExtraBold.ttf"; sourceTree = ""; }; - 1A3B94A6F7AAE3B9D890A4AA /* UIFont+OpenSans.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIFont+OpenSans.m"; sourceTree = ""; }; - 1C7410C6BECFAD49D87FD424 /* Pods-Example-OpenSans-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Example-OpenSans-dummy.m"; sourceTree = ""; }; - 24221610431C52C5D34D735E /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 250266F13CFD799052B21E41 /* Pods-Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Example-acknowledgements.plist"; sourceTree = ""; }; - 2A03C774769A123043FA70B0 /* Pods-Example-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Example-environment.h"; sourceTree = ""; }; - 2EA87AA08C6CEB7796EBA79A /* Pods-Example-UICollectionViewLeftAlignedLayout-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Example-UICollectionViewLeftAlignedLayout-Private.xcconfig"; sourceTree = ""; }; - 30F574709DF44948C8D026CF /* Pods-Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Example.debug.xcconfig"; sourceTree = ""; }; - 33BFFD95235C1CAA24348A9F /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - 3D96B8D7EA609E50501FF412 /* Pods-Example-UIColor+FlatColors.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Example-UIColor+FlatColors.xcconfig"; sourceTree = ""; }; - 48B9E9461B39041B6C736F16 /* OpenSans-Semibold.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = "OpenSans-Semibold.ttf"; path = "Fonts/OpenSans-Semibold.ttf"; sourceTree = ""; }; - 48FAF0D7464A36306EB05191 /* UIColor+FlatColors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+FlatColors.h"; path = "UIColor+FlatColors/UIColor+FlatColors.h"; sourceTree = ""; }; - 49737F6C7C9A1BF2F7DC8567 /* Pods-Example-OpenSans-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Example-OpenSans-Private.xcconfig"; sourceTree = ""; }; - 4F14E6696410B38F315F82EA /* UICollectionViewLeftAlignedLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UICollectionViewLeftAlignedLayout.m; sourceTree = ""; }; - 57457158E628F802A7B6395D /* libPods-Example-UICollectionViewLeftAlignedLayout.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Example-UICollectionViewLeftAlignedLayout.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 5FC2FB0CFDFC18166BE6670C /* libPods-Example-OpenSans.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Example-OpenSans.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 63BC9886F9994635A2AFC018 /* Pods-Example-UIColor+FlatColors-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Example-UIColor+FlatColors-Private.xcconfig"; sourceTree = ""; }; - 65A28F8FFADFBDF6E3FF7758 /* Pods-Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Example.release.xcconfig"; sourceTree = ""; }; - 744CA8A2C61576C32158AA17 /* OpenSans-Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = "OpenSans-Regular.ttf"; path = "Fonts/OpenSans-Regular.ttf"; sourceTree = ""; }; - 7AA5AF716002CDC5F6F0166A /* Pods-Example-OpenSans-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Example-OpenSans-prefix.pch"; sourceTree = ""; }; - 80BFE2D09A79B61D22502278 /* OpenSans-LightItalic.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = "OpenSans-LightItalic.ttf"; path = "Fonts/OpenSans-LightItalic.ttf"; sourceTree = ""; }; - 88E52EC0D072289762A16D4C /* OpenSans-Light.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = "OpenSans-Light.ttf"; path = "Fonts/OpenSans-Light.ttf"; sourceTree = ""; }; - 8E5FE9D5ECEEFA509A537744 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; - 955B878CA27E5B7AFBFF2775 /* OpenSans-Bold.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = "OpenSans-Bold.ttf"; path = "Fonts/OpenSans-Bold.ttf"; sourceTree = ""; }; - A30FB7FBD4EB83E4F0A0A174 /* libPods-Example-UIColor+FlatColors.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Example-UIColor+FlatColors.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - A48A85542C8B99F49298E193 /* Pods-Example-UICollectionViewLeftAlignedLayout-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Example-UICollectionViewLeftAlignedLayout-prefix.pch"; sourceTree = ""; }; - A8FDEA7F86663C94B2257857 /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS8.3.sdk/System/Library/Frameworks/CoreText.framework; sourceTree = DEVELOPER_DIR; }; - A94EADE4BE95EC4CB6A665E6 /* Pods-Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Example-dummy.m"; sourceTree = ""; }; - AD1D2EB8DE7ED02D08FEA000 /* libPods-Example.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Example.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - AE0041671D65D41CFCC31469 /* UIColor+FlatColors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+FlatColors.m"; path = "UIColor+FlatColors/UIColor+FlatColors.m"; sourceTree = ""; }; - B01C8437ABFC9B7946F6AC13 /* Pods-Example-UIColor+FlatColors-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Example-UIColor+FlatColors-prefix.pch"; sourceTree = ""; }; - B0FC3847694B4A0F3A255D8E /* OpenSans-BoldItalic.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = "OpenSans-BoldItalic.ttf"; path = "Fonts/OpenSans-BoldItalic.ttf"; sourceTree = ""; }; - B303C206498D14EFB0A76244 /* UICollectionViewLeftAlignedLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UICollectionViewLeftAlignedLayout.h; sourceTree = ""; }; - B755928D86124ACE87BF55C4 /* Pods-Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Example-acknowledgements.markdown"; sourceTree = ""; }; - B870BE2D818F1DE4D1E89142 /* OpenSans.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = OpenSans.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - CABFCB9C9DB356F367F5ABE1 /* Pods-Example-UIColor+FlatColors-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Example-UIColor+FlatColors-dummy.m"; sourceTree = ""; }; - D9361BF7C6CE821259E93704 /* OpenSans-Italic.ttf */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = "OpenSans-Italic.ttf"; path = "Fonts/OpenSans-Italic.ttf"; sourceTree = ""; }; - E58086F6FF7054AA900D42BB /* Pods-Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Example-resources.sh"; sourceTree = ""; }; + 028D42D8FF1F9BBE313F79950876A242 /* UIColor+FlatColors.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "UIColor+FlatColors.modulemap"; sourceTree = ""; }; + 079CF76BC5BED2A91C4668153D9447BC /* UICollectionViewLeftAlignedLayout.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UICollectionViewLeftAlignedLayout.release.xcconfig; sourceTree = ""; }; + 07CD48FCE02E1BAEFB8FB04A2BA3EF4B /* UIFont+OpenSans.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIFont+OpenSans.m"; sourceTree = ""; }; + 0A28300C99F9AC417D8EE632BE9E6C3A /* UICollectionViewLeftAlignedLayout.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = UICollectionViewLeftAlignedLayout.m; sourceTree = ""; }; + 150D15DADFFB2DDD2AAA62A205133DFC /* OpenSans */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = OpenSans; path = OpenSans.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 167A533EDA3D4225D2FF02EE2DC2432D /* OpenSans.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OpenSans.debug.xcconfig; sourceTree = ""; }; + 1F667CC0E19EAF34E5A4119E2121F585 /* Pods-Example */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-Example"; path = Pods_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 204756DB97637304E5F0FEA2A59CA9D8 /* UIColor+FlatColors */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "UIColor+FlatColors"; path = UIColor_FlatColors.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 243410B9535472556EA4BB6DBC133A0D /* Pods-Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Example.release.xcconfig"; sourceTree = ""; }; + 2DF26CFF1E862548F8E456C64372DC06 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + 318B68AFC2527F596E00E04D01C089CA /* OpenSans-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "OpenSans-dummy.m"; sourceTree = ""; }; + 31C1D37707DFAA5E6A164BCC07834264 /* Pods-Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Example-Info.plist"; sourceTree = ""; }; + 3343193E1CCE05EE68EC191458664F7A /* UIColor+FlatColors.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+FlatColors.h"; path = "UIColor+FlatColors/UIColor+FlatColors.h"; sourceTree = ""; }; + 35C305D3797C284E6F5BAA1D3E6F9BF8 /* Pods-Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Example.modulemap"; sourceTree = ""; }; + 441854E35F81731E63E53DC7E4EEAD9D /* Pods-Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-Example-acknowledgements.markdown"; sourceTree = ""; }; + 4479BEC900C16D8DA53CBA67852716EE /* OpenSans-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "OpenSans-Info.plist"; sourceTree = ""; }; + 45E8AE014EF2541AFBEF79944E6A9942 /* UIColor+FlatColors.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "UIColor+FlatColors.debug.xcconfig"; sourceTree = ""; }; + 4994F5FA05C6ABC79006F620B33FEEAA /* UICollectionViewLeftAlignedLayout-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "UICollectionViewLeftAlignedLayout-Info.plist"; sourceTree = ""; }; + 4A814427737E03EB24C323B10836E583 /* UICollectionViewLeftAlignedLayout */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = UICollectionViewLeftAlignedLayout; path = UICollectionViewLeftAlignedLayout.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 571623CCF839D93A52DEB39450ABEE7E /* OpenSans-ExtraBold.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = "OpenSans-ExtraBold.ttf"; path = "Fonts/OpenSans-ExtraBold.ttf"; sourceTree = ""; }; + 5BA17910AB55D5C494F126451142F52B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; + 5F24DBDACB87DB6FA4A4456C3D89E340 /* OpenSans-Light.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = "OpenSans-Light.ttf"; path = "Fonts/OpenSans-Light.ttf"; sourceTree = ""; }; + 6097E517FDB93C7919BAEED2EF4FA75C /* OpenSans.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = OpenSans.release.xcconfig; sourceTree = ""; }; + 617C33C9228E0BB16E18587461DD10EF /* UICollectionViewLeftAlignedLayout-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UICollectionViewLeftAlignedLayout-umbrella.h"; sourceTree = ""; }; + 66689B33AC591AAA4EC53B9B9330C22F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 6D67F592A69C5E39EA78F6292AE09A10 /* UICollectionViewLeftAlignedLayout.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = UICollectionViewLeftAlignedLayout.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6E979EB87466C60DEED35D88665D6B92 /* OpenSans-Bold.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = "OpenSans-Bold.ttf"; path = "Fonts/OpenSans-Bold.ttf"; sourceTree = ""; }; + 7771A7A7DF1569282F993E9884DD36D2 /* OpenSans-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OpenSans-prefix.pch"; sourceTree = ""; }; + 77BAB6169792F49FAF2FBC1E0B03CA15 /* ResourceBundle-OpenSans-OpenSans-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-OpenSans-OpenSans-Info.plist"; sourceTree = ""; }; + 7825A90E082A1582EB16256B0E722B3F /* Pods-Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Example-umbrella.h"; sourceTree = ""; }; + 79CD2AEDAF551BE46E321E4E305F811B /* UIColor+FlatColors-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "UIColor+FlatColors-Info.plist"; sourceTree = ""; }; + 8C0D616296BACC14817051AFCB14CE91 /* UIColor+FlatColors-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UIColor+FlatColors-dummy.m"; sourceTree = ""; }; + 9276E3F2A126FD37A541EA0057299335 /* UIColor+FlatColors.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "UIColor+FlatColors.release.xcconfig"; sourceTree = ""; }; + 9519BC21C948FBE1C4D6EFEE874DAA7F /* UICollectionViewLeftAlignedLayout-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "UICollectionViewLeftAlignedLayout-dummy.m"; sourceTree = ""; }; + 95244E634CD25D6FAFBE86E6504426B3 /* OpenSans-OpenSans */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "OpenSans-OpenSans"; path = OpenSans.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 97B94EFC7123046E51EA97A4AE2AD366 /* UIFont+OpenSans.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIFont+OpenSans.h"; sourceTree = ""; }; + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 9DFADE8C42D6E3C19FE8FDF5908DFECF /* OpenSans-Italic.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = "OpenSans-Italic.ttf"; path = "Fonts/OpenSans-Italic.ttf"; sourceTree = ""; }; + A5B0FE368A3C93C1388234B3067EE4B9 /* UICollectionViewLeftAlignedLayout-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UICollectionViewLeftAlignedLayout-prefix.pch"; sourceTree = ""; }; + A89527F29A6A86C3969C63058CA99348 /* OpenSans-BoldItalic.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = "OpenSans-BoldItalic.ttf"; path = "Fonts/OpenSans-BoldItalic.ttf"; sourceTree = ""; }; + ABBAF89B448506E62EF0CFF7B8C9220F /* UICollectionViewLeftAlignedLayout.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = UICollectionViewLeftAlignedLayout.modulemap; sourceTree = ""; }; + AFECBC24E09D0D25F822C27BD944AFD4 /* Pods-Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Example-frameworks.sh"; sourceTree = ""; }; + B45138496B85A072654D1D0F8EBBEDE5 /* Pods-Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Example.debug.xcconfig"; sourceTree = ""; }; + B6298CFC8665A74BADA244ED9D759357 /* OpenSans-ExtraBoldItalic.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = "OpenSans-ExtraBoldItalic.ttf"; path = "Fonts/OpenSans-ExtraBoldItalic.ttf"; sourceTree = ""; }; + BB100F774B5E3D21D1C9E8B06B40DDD2 /* OpenSans-Regular.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = "OpenSans-Regular.ttf"; path = "Fonts/OpenSans-Regular.ttf"; sourceTree = ""; }; + C5AFEE087580BE5FDBF29443C4B2F750 /* OpenSans-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "OpenSans-umbrella.h"; sourceTree = ""; }; + C7FE671522D93C89BA2600CE6AB0364A /* UICollectionViewLeftAlignedLayout.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = UICollectionViewLeftAlignedLayout.debug.xcconfig; sourceTree = ""; }; + C87FC81E91D191769493B4BB50509AC8 /* UIColor+FlatColors.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+FlatColors.m"; path = "UIColor+FlatColors/UIColor+FlatColors.m"; sourceTree = ""; }; + CC58FEE06CB416FA0D1EA3267F888EA3 /* OpenSans.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = OpenSans.modulemap; sourceTree = ""; }; + CFA76860B506E69F08B0B154D70C038E /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/CoreText.framework; sourceTree = DEVELOPER_DIR; }; + D6D7C498FA339E02BD53ECB8916CEA8E /* Pods-Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Example-dummy.m"; sourceTree = ""; }; + D6E7249CBD3D2ADE67D9D67B42DD2F3A /* UICollectionViewLeftAlignedLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = UICollectionViewLeftAlignedLayout.h; sourceTree = ""; }; + D7EE31FB60C345C43E4F84F5E5D4097D /* UIColor+FlatColors-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIColor+FlatColors-umbrella.h"; sourceTree = ""; }; + E4C1F3BD6105EEBA056FC7BD6C894DEB /* OpenSans-SemiboldItalic.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = "OpenSans-SemiboldItalic.ttf"; path = "Fonts/OpenSans-SemiboldItalic.ttf"; sourceTree = ""; }; + E74D207BDA239A25C1380A816F90FF59 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; + EA21B344259B58996DB73382B1B1521F /* Pods-Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Example-acknowledgements.plist"; sourceTree = ""; }; + F136BFE95CE3A9D3C49C590DA4EEC6C2 /* UIColor+FlatColors-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "UIColor+FlatColors-prefix.pch"; sourceTree = ""; }; + FCBE029EAB0EF0B47A98A5F8FAB5132E /* OpenSans-LightItalic.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = "OpenSans-LightItalic.ttf"; path = "Fonts/OpenSans-LightItalic.ttf"; sourceTree = ""; }; + FCDC922C92457E10A8217F9CA7305660 /* OpenSans-Semibold.ttf */ = {isa = PBXFileReference; includeInIndex = 1; name = "OpenSans-Semibold.ttf"; path = "Fonts/OpenSans-Semibold.ttf"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 7BA1F74BC886CA8EE1065429 /* Frameworks */ = { + 5C6BA0F05E0A493487A020728C4F2FAC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - B22F85C267D9F703E4D9B844 /* Foundation.framework in Frameworks */, + 6A3CE2308A6B5219DA2614184037E4BF /* CoreText.framework in Frameworks */, + 6D9927CB01717CBBD14892EE89F4DEC2 /* Foundation.framework in Frameworks */, + 2B8FD700DACE8AF6A3ED74717A78EEEC /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - CF01EC9E178BEDA3DE7434C0 /* Frameworks */ = { + 7C1A815BF4F110752F194ED38F652845 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E2AE15C33115A20838076366 /* Frameworks */ = { + 9A796E8EB73A6E879E57F7F52DB94172 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 97040AEC92A6E5CBA760757A /* CoreText.framework in Frameworks */, - EE9A470DD47FC5D8D7457795 /* Foundation.framework in Frameworks */, - A37CEF2A80588F5333ED93E6 /* UIKit.framework in Frameworks */, + 48A500991076F7B0821B11373024B7E3 /* Foundation.framework in Frameworks */, + B59893F6C67EE9CFA297B574041C37A6 /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - EC6E8EE9AECC534CCABCD17B /* Frameworks */ = { + A34470C37B1DE2284087CDD72A0B804E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 7A7C66834BF036DB2B6B236F /* Foundation.framework in Frameworks */, + 992BBE6C0A9B0E7F35F54B8A04F05B39 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F68DB8B6AFCCB36EA138F152 /* Frameworks */ = { + F06321D6EB9E3F22F34067431A99A500 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8A2A2F8E286D9F0813203711 /* Foundation.framework in Frameworks */, + DBEDA3C3FD72FD53C03F699D044F505E /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 1E97339F829CBE6E7B5DE139 /* UICollectionViewLeftAlignedLayout */ = { + 03C5C200A0787E300053CFA8F53CA094 /* Frameworks */ = { isa = PBXGroup; children = ( - 21E18B711A030DE8C5EA5D29 /* Support Files */, - 8AE8D6C26CE5D14566D31A19 /* UICollectionViewLeftAlignedLayout */, + 774DD89477A654AC8E4B43436316C693 /* iOS */, ); - name = UICollectionViewLeftAlignedLayout; - path = ../..; + name = Frameworks; sourceTree = ""; }; - 21C38D6DAB8A851595BB29BD /* Support Files */ = { + 0F2F100CA6BA1498B099511718650EC4 /* OpenSans */ = { isa = PBXGroup; children = ( - 14CEBDAFE008202E0026AA06 /* Pods-Example-OpenSans.xcconfig */, - 49737F6C7C9A1BF2F7DC8567 /* Pods-Example-OpenSans-Private.xcconfig */, - 1C7410C6BECFAD49D87FD424 /* Pods-Example-OpenSans-dummy.m */, - 7AA5AF716002CDC5F6F0166A /* Pods-Example-OpenSans-prefix.pch */, + 97B94EFC7123046E51EA97A4AE2AD366 /* UIFont+OpenSans.h */, + 07CD48FCE02E1BAEFB8FB04A2BA3EF4B /* UIFont+OpenSans.m */, + D42ECD689251114BA478A74879DD6F68 /* Resources */, + 180E6E0069CEE40A5D03B0C1A248CE29 /* Support Files */, + ); + name = OpenSans; + path = OpenSans; + sourceTree = ""; + }; + 180E6E0069CEE40A5D03B0C1A248CE29 /* Support Files */ = { + isa = PBXGroup; + children = ( + CC58FEE06CB416FA0D1EA3267F888EA3 /* OpenSans.modulemap */, + 318B68AFC2527F596E00E04D01C089CA /* OpenSans-dummy.m */, + 4479BEC900C16D8DA53CBA67852716EE /* OpenSans-Info.plist */, + 7771A7A7DF1569282F993E9884DD36D2 /* OpenSans-prefix.pch */, + C5AFEE087580BE5FDBF29443C4B2F750 /* OpenSans-umbrella.h */, + 167A533EDA3D4225D2FF02EE2DC2432D /* OpenSans.debug.xcconfig */, + 6097E517FDB93C7919BAEED2EF4FA75C /* OpenSans.release.xcconfig */, + 77BAB6169792F49FAF2FBC1E0B03CA15 /* ResourceBundle-OpenSans-OpenSans-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/Pods-Example-OpenSans"; + path = "../Target Support Files/OpenSans"; sourceTree = ""; }; - 21E18B711A030DE8C5EA5D29 /* Support Files */ = { + 1DB5740A9B90FD0207C3283BCFD42FDD /* Support Files */ = { isa = PBXGroup; children = ( - 05E5F2945736E4AB42D6FE68 /* Pods-Example-UICollectionViewLeftAlignedLayout.xcconfig */, - 2EA87AA08C6CEB7796EBA79A /* Pods-Example-UICollectionViewLeftAlignedLayout-Private.xcconfig */, - 071CC0E5F246C436FA182281 /* Pods-Example-UICollectionViewLeftAlignedLayout-dummy.m */, - A48A85542C8B99F49298E193 /* Pods-Example-UICollectionViewLeftAlignedLayout-prefix.pch */, + 028D42D8FF1F9BBE313F79950876A242 /* UIColor+FlatColors.modulemap */, + 8C0D616296BACC14817051AFCB14CE91 /* UIColor+FlatColors-dummy.m */, + 79CD2AEDAF551BE46E321E4E305F811B /* UIColor+FlatColors-Info.plist */, + F136BFE95CE3A9D3C49C590DA4EEC6C2 /* UIColor+FlatColors-prefix.pch */, + D7EE31FB60C345C43E4F84F5E5D4097D /* UIColor+FlatColors-umbrella.h */, + 45E8AE014EF2541AFBEF79944E6A9942 /* UIColor+FlatColors.debug.xcconfig */, + 9276E3F2A126FD37A541EA0057299335 /* UIColor+FlatColors.release.xcconfig */, ); name = "Support Files"; - path = "Example/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout"; + path = "../Target Support Files/UIColor+FlatColors"; sourceTree = ""; }; - 2767FFF4A0435755FB7023C9 /* iOS */ = { + 271317B707DF4AB1B6C75BEDD63277F5 /* Sources */ = { isa = PBXGroup; children = ( - A8FDEA7F86663C94B2257857 /* CoreText.framework */, - 33BFFD95235C1CAA24348A9F /* Foundation.framework */, - 8E5FE9D5ECEEFA509A537744 /* UIKit.framework */, + 0A28300C99F9AC417D8EE632BE9E6C3A /* UICollectionViewLeftAlignedLayout.m */, ); - name = iOS; + name = Sources; + path = UICollectionViewLeftAlignedLayout/Sources; sourceTree = ""; }; - 56732598337E1CCFC6EEC201 /* Resources */ = { + 491C5A56CCF59CA07A8D4E94687835F9 /* Pods */ = { isa = PBXGroup; children = ( - 955B878CA27E5B7AFBFF2775 /* OpenSans-Bold.ttf */, - B0FC3847694B4A0F3A255D8E /* OpenSans-BoldItalic.ttf */, - 184E099EAC1F15EC9C2BA9D0 /* OpenSans-ExtraBold.ttf */, - 0DCA5863A59AB5815EF15DE0 /* OpenSans-ExtraBoldItalic.ttf */, - D9361BF7C6CE821259E93704 /* OpenSans-Italic.ttf */, - 88E52EC0D072289762A16D4C /* OpenSans-Light.ttf */, - 80BFE2D09A79B61D22502278 /* OpenSans-LightItalic.ttf */, - 744CA8A2C61576C32158AA17 /* OpenSans-Regular.ttf */, - 48B9E9461B39041B6C736F16 /* OpenSans-Semibold.ttf */, - 0CDAEB15663CF794360A5895 /* OpenSans-SemiboldItalic.ttf */, + 0F2F100CA6BA1498B099511718650EC4 /* OpenSans */, + 9AFFACEB7DFC0E9A2E2EC15FFDD4BFF6 /* UIColor+FlatColors */, ); - name = Resources; + name = Pods; sourceTree = ""; }; - 75D5037C1AADB571600FBB67 /* Support Files */ = { + 73581073F11E328D54BC30916810FED7 /* include */ = { isa = PBXGroup; children = ( - 3D96B8D7EA609E50501FF412 /* Pods-Example-UIColor+FlatColors.xcconfig */, - 63BC9886F9994635A2AFC018 /* Pods-Example-UIColor+FlatColors-Private.xcconfig */, - CABFCB9C9DB356F367F5ABE1 /* Pods-Example-UIColor+FlatColors-dummy.m */, - B01C8437ABFC9B7946F6AC13 /* Pods-Example-UIColor+FlatColors-prefix.pch */, + D6E7249CBD3D2ADE67D9D67B42DD2F3A /* UICollectionViewLeftAlignedLayout.h */, ); - name = "Support Files"; - path = "../Target Support Files/Pods-Example-UIColor+FlatColors"; + name = include; + path = UICollectionViewLeftAlignedLayout/include; sourceTree = ""; }; - 7DD03320073CDEDFC0B944E4 /* OpenSans */ = { + 774DD89477A654AC8E4B43436316C693 /* iOS */ = { isa = PBXGroup; children = ( - 091430CE0B89DBED8D47EBA8 /* UIFont+OpenSans.h */, - 1A3B94A6F7AAE3B9D890A4AA /* UIFont+OpenSans.m */, - 56732598337E1CCFC6EEC201 /* Resources */, - 21C38D6DAB8A851595BB29BD /* Support Files */, + CFA76860B506E69F08B0B154D70C038E /* CoreText.framework */, + 2DF26CFF1E862548F8E456C64372DC06 /* Foundation.framework */, + E74D207BDA239A25C1380A816F90FF59 /* UIKit.framework */, ); - path = OpenSans; + name = iOS; sourceTree = ""; }; - 8408B15C73F2229E73C3E00C /* Products */ = { + 8A12327D38D5B3C5A350829C12255375 /* Products */ = { isa = PBXGroup; children = ( - B870BE2D818F1DE4D1E89142 /* OpenSans.bundle */, - AD1D2EB8DE7ED02D08FEA000 /* libPods-Example.a */, - 5FC2FB0CFDFC18166BE6670C /* libPods-Example-OpenSans.a */, - 57457158E628F802A7B6395D /* libPods-Example-UICollectionViewLeftAlignedLayout.a */, - A30FB7FBD4EB83E4F0A0A174 /* libPods-Example-UIColor+FlatColors.a */, + 150D15DADFFB2DDD2AAA62A205133DFC /* OpenSans */, + 95244E634CD25D6FAFBE86E6504426B3 /* OpenSans-OpenSans */, + 1F667CC0E19EAF34E5A4119E2121F585 /* Pods-Example */, + 4A814427737E03EB24C323B10836E583 /* UICollectionViewLeftAlignedLayout */, + 204756DB97637304E5F0FEA2A59CA9D8 /* UIColor+FlatColors */, ); name = Products; sourceTree = ""; }; - 8AE8D6C26CE5D14566D31A19 /* UICollectionViewLeftAlignedLayout */ = { + 9AFFACEB7DFC0E9A2E2EC15FFDD4BFF6 /* UIColor+FlatColors */ = { isa = PBXGroup; children = ( - B303C206498D14EFB0A76244 /* UICollectionViewLeftAlignedLayout.h */, - 4F14E6696410B38F315F82EA /* UICollectionViewLeftAlignedLayout.m */, + 3343193E1CCE05EE68EC191458664F7A /* UIColor+FlatColors.h */, + C87FC81E91D191769493B4BB50509AC8 /* UIColor+FlatColors.m */, + 1DB5740A9B90FD0207C3283BCFD42FDD /* Support Files */, ); - path = UICollectionViewLeftAlignedLayout; + name = "UIColor+FlatColors"; + path = "UIColor+FlatColors"; sourceTree = ""; }; - AA4EA91FEB91CCED97A07C5E = { + 9BDBD95ED116334D1B2835202D8D3060 /* Pods-Example */ = { isa = PBXGroup; children = ( - 24221610431C52C5D34D735E /* Podfile */, - DB953F4C1B987E21C36F4CB9 /* Development Pods */, - AE1DA2D8E2BD7079FA55E817 /* Frameworks */, - DF86003E4691F964EA42717D /* Pods */, - 8408B15C73F2229E73C3E00C /* Products */, - C396A0E5FB24907476B5B3A3 /* Targets Support Files */, + 35C305D3797C284E6F5BAA1D3E6F9BF8 /* Pods-Example.modulemap */, + 441854E35F81731E63E53DC7E4EEAD9D /* Pods-Example-acknowledgements.markdown */, + EA21B344259B58996DB73382B1B1521F /* Pods-Example-acknowledgements.plist */, + D6D7C498FA339E02BD53ECB8916CEA8E /* Pods-Example-dummy.m */, + AFECBC24E09D0D25F822C27BD944AFD4 /* Pods-Example-frameworks.sh */, + 31C1D37707DFAA5E6A164BCC07834264 /* Pods-Example-Info.plist */, + 7825A90E082A1582EB16256B0E722B3F /* Pods-Example-umbrella.h */, + B45138496B85A072654D1D0F8EBBEDE5 /* Pods-Example.debug.xcconfig */, + 243410B9535472556EA4BB6DBC133A0D /* Pods-Example.release.xcconfig */, ); + name = "Pods-Example"; + path = "Target Support Files/Pods-Example"; sourceTree = ""; }; - AE1DA2D8E2BD7079FA55E817 /* Frameworks */ = { + B459131B72E15E173805E69833CA77C5 /* Development Pods */ = { isa = PBXGroup; children = ( - 2767FFF4A0435755FB7023C9 /* iOS */, + C7699EC32BE707A0C1D7160423C8A3C9 /* UICollectionViewLeftAlignedLayout */, ); - name = Frameworks; + name = "Development Pods"; sourceTree = ""; }; - C396A0E5FB24907476B5B3A3 /* Targets Support Files */ = { + B7B2367CC59924DBF72B181228E88734 /* Support Files */ = { isa = PBXGroup; children = ( - D02835652CE2C241A3762762 /* Pods-Example */, + ABBAF89B448506E62EF0CFF7B8C9220F /* UICollectionViewLeftAlignedLayout.modulemap */, + 9519BC21C948FBE1C4D6EFEE874DAA7F /* UICollectionViewLeftAlignedLayout-dummy.m */, + 4994F5FA05C6ABC79006F620B33FEEAA /* UICollectionViewLeftAlignedLayout-Info.plist */, + A5B0FE368A3C93C1388234B3067EE4B9 /* UICollectionViewLeftAlignedLayout-prefix.pch */, + 617C33C9228E0BB16E18587461DD10EF /* UICollectionViewLeftAlignedLayout-umbrella.h */, + C7FE671522D93C89BA2600CE6AB0364A /* UICollectionViewLeftAlignedLayout.debug.xcconfig */, + 079CF76BC5BED2A91C4668153D9447BC /* UICollectionViewLeftAlignedLayout.release.xcconfig */, ); - name = "Targets Support Files"; + name = "Support Files"; + path = "Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout"; sourceTree = ""; }; - D02835652CE2C241A3762762 /* Pods-Example */ = { + C7699EC32BE707A0C1D7160423C8A3C9 /* UICollectionViewLeftAlignedLayout */ = { isa = PBXGroup; children = ( - B755928D86124ACE87BF55C4 /* Pods-Example-acknowledgements.markdown */, - 250266F13CFD799052B21E41 /* Pods-Example-acknowledgements.plist */, - A94EADE4BE95EC4CB6A665E6 /* Pods-Example-dummy.m */, - 2A03C774769A123043FA70B0 /* Pods-Example-environment.h */, - E58086F6FF7054AA900D42BB /* Pods-Example-resources.sh */, - 30F574709DF44948C8D026CF /* Pods-Example.debug.xcconfig */, - 65A28F8FFADFBDF6E3FF7758 /* Pods-Example.release.xcconfig */, + 73581073F11E328D54BC30916810FED7 /* include */, + DD0D88E5FA9D580DAD1C0B439607D5DC /* Pod */, + 271317B707DF4AB1B6C75BEDD63277F5 /* Sources */, + B7B2367CC59924DBF72B181228E88734 /* Support Files */, ); - name = "Pods-Example"; - path = "Target Support Files/Pods-Example"; + name = UICollectionViewLeftAlignedLayout; + path = ../../..; sourceTree = ""; }; - DB953F4C1B987E21C36F4CB9 /* Development Pods */ = { + CE2E825F08D3AD0FD76E6D78D7512ED0 /* Targets Support Files */ = { isa = PBXGroup; children = ( - 1E97339F829CBE6E7B5DE139 /* UICollectionViewLeftAlignedLayout */, + 9BDBD95ED116334D1B2835202D8D3060 /* Pods-Example */, ); - name = "Development Pods"; + name = "Targets Support Files"; sourceTree = ""; }; - DF86003E4691F964EA42717D /* Pods */ = { + CF1408CF629C7361332E53B88F7BD30C = { isa = PBXGroup; children = ( - 7DD03320073CDEDFC0B944E4 /* OpenSans */, - EC3B5C5035D5CA0F0F02545B /* UIColor+FlatColors */, + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, + B459131B72E15E173805E69833CA77C5 /* Development Pods */, + 03C5C200A0787E300053CFA8F53CA094 /* Frameworks */, + 491C5A56CCF59CA07A8D4E94687835F9 /* Pods */, + 8A12327D38D5B3C5A350829C12255375 /* Products */, + CE2E825F08D3AD0FD76E6D78D7512ED0 /* Targets Support Files */, ); - name = Pods; sourceTree = ""; }; - EC3B5C5035D5CA0F0F02545B /* UIColor+FlatColors */ = { + D42ECD689251114BA478A74879DD6F68 /* Resources */ = { isa = PBXGroup; children = ( - 48FAF0D7464A36306EB05191 /* UIColor+FlatColors.h */, - AE0041671D65D41CFCC31469 /* UIColor+FlatColors.m */, - 75D5037C1AADB571600FBB67 /* Support Files */, + 6E979EB87466C60DEED35D88665D6B92 /* OpenSans-Bold.ttf */, + A89527F29A6A86C3969C63058CA99348 /* OpenSans-BoldItalic.ttf */, + 571623CCF839D93A52DEB39450ABEE7E /* OpenSans-ExtraBold.ttf */, + B6298CFC8665A74BADA244ED9D759357 /* OpenSans-ExtraBoldItalic.ttf */, + 9DFADE8C42D6E3C19FE8FDF5908DFECF /* OpenSans-Italic.ttf */, + 5F24DBDACB87DB6FA4A4456C3D89E340 /* OpenSans-Light.ttf */, + FCBE029EAB0EF0B47A98A5F8FAB5132E /* OpenSans-LightItalic.ttf */, + BB100F774B5E3D21D1C9E8B06B40DDD2 /* OpenSans-Regular.ttf */, + FCDC922C92457E10A8217F9CA7305660 /* OpenSans-Semibold.ttf */, + E4C1F3BD6105EEBA056FC7BD6C894DEB /* OpenSans-SemiboldItalic.ttf */, ); - path = "UIColor+FlatColors"; + name = Resources; + sourceTree = ""; + }; + DD0D88E5FA9D580DAD1C0B439607D5DC /* Pod */ = { + isa = PBXGroup; + children = ( + 5BA17910AB55D5C494F126451142F52B /* LICENSE */, + 66689B33AC591AAA4EC53B9B9330C22F /* README.md */, + 6D67F592A69C5E39EA78F6292AE09A10 /* UICollectionViewLeftAlignedLayout.podspec */, + ); + name = Pod; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 35DD613E4394E77B8261C879 /* Headers */ = { + 1A6E66055869F9C8A76BAB3DF20AB262 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 3DAD0557DF8E0449EC779CBAC97B5BB9 /* UIColor+FlatColors.h in Headers */, + BB7541B9A900EDC6B2EE1EE7C6EB6BC6 /* UIColor+FlatColors-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2DD600ADA6D33196A9554D45766207C2 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 45D77568619608065130B6E0 /* UICollectionViewLeftAlignedLayout.h in Headers */, + 071DDC73DF7F0B807ADA66F16F3A96B5 /* Pods-Example-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4BC481EE9A8DA3122DEC4F94 /* Headers */ = { + B90E7228BDB58DC2CD0E47F0C7BB380F /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - F453A3107C15F8DF7B1ACAA1 /* UIColor+FlatColors.h in Headers */, + 5795B28F12D016A68532DBDB74151894 /* UICollectionViewLeftAlignedLayout.h in Headers */, + DE71C22B3B77718A4FAC198B6E835E0E /* UICollectionViewLeftAlignedLayout-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8F580D2F28D581445FA9CF76 /* Headers */ = { + E0DA3D67A063BFBDD04ED607613DBADD /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 56C1F62517504A540623368A /* UIFont+OpenSans.h in Headers */, + 3484C679E38A7125DB3FF396245DCD02 /* OpenSans-umbrella.h in Headers */, + 623F0EEF6B493FA2CC3444C6757AE532 /* UIFont+OpenSans.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - 0E1EE87C44D5432C4FF11A8F /* Pods-Example-UIColor+FlatColors */ = { + 0AEE99A309977BD12A049FF48AF9BA4B /* Pods-Example */ = { isa = PBXNativeTarget; - buildConfigurationList = 357D1D86EFCC9F52FE1D79FA /* Build configuration list for PBXNativeTarget "Pods-Example-UIColor+FlatColors" */; + buildConfigurationList = B09921880F42E4C0F5184DA13DBBE6A0 /* Build configuration list for PBXNativeTarget "Pods-Example" */; buildPhases = ( - 0A83109287AED48A5FA7AF44 /* Sources */, - F68DB8B6AFCCB36EA138F152 /* Frameworks */, - 4BC481EE9A8DA3122DEC4F94 /* Headers */, + 2DD600ADA6D33196A9554D45766207C2 /* Headers */, + 36C6D1E1A81EFB0F27E6074B37F5FD47 /* Sources */, + F06321D6EB9E3F22F34067431A99A500 /* Frameworks */, + D1697B0B40C3776000D4B1958FC02457 /* Resources */, ); buildRules = ( ); dependencies = ( + 5D3E63D590B99EDC7EDC642DB2574F49 /* PBXTargetDependency */, + 87F8ACB629A9F429803B1C137048C64E /* PBXTargetDependency */, + 39860CE0C32077677C925364A590F29B /* PBXTargetDependency */, ); - name = "Pods-Example-UIColor+FlatColors"; - productName = "Pods-Example-UIColor+FlatColors"; - productReference = A30FB7FBD4EB83E4F0A0A174 /* libPods-Example-UIColor+FlatColors.a */; - productType = "com.apple.product-type.library.static"; + name = "Pods-Example"; + productName = Pods_Example; + productReference = 1F667CC0E19EAF34E5A4119E2121F585 /* Pods-Example */; + productType = "com.apple.product-type.framework"; }; - 48565C0C88F272E02CEFDCED /* Pods-Example */ = { + 5D2C062A8FB1A5905A7A79E46FB5EC44 /* OpenSans */ = { isa = PBXNativeTarget; - buildConfigurationList = 198DDCCE7EEF3AE4B8CE4D36 /* Build configuration list for PBXNativeTarget "Pods-Example" */; + buildConfigurationList = A1BF3770FE4E048297B1BAFE4D05163B /* Build configuration list for PBXNativeTarget "OpenSans" */; buildPhases = ( - 121A2AAB653F4E4153AF3A9B /* Sources */, - EC6E8EE9AECC534CCABCD17B /* Frameworks */, + E0DA3D67A063BFBDD04ED607613DBADD /* Headers */, + 323B9CDB470A7664D33FFD33B9136B3A /* Sources */, + 5C6BA0F05E0A493487A020728C4F2FAC /* Frameworks */, + 51C7D37E6A440F03EBA0E607653833FE /* Resources */, ); buildRules = ( ); dependencies = ( - 4993C6FA9CBCB3ED220B2566 /* PBXTargetDependency */, - EF3E1A64A2FBEDCB6AED5778 /* PBXTargetDependency */, - 55F95E6864FDA793D01A1EF3 /* PBXTargetDependency */, + E69A05AC17A761DF9A74A832DBCF8936 /* PBXTargetDependency */, ); - name = "Pods-Example"; - productName = "Pods-Example"; - productReference = AD1D2EB8DE7ED02D08FEA000 /* libPods-Example.a */; - productType = "com.apple.product-type.library.static"; + name = OpenSans; + productName = OpenSans; + productReference = 150D15DADFFB2DDD2AAA62A205133DFC /* OpenSans */; + productType = "com.apple.product-type.framework"; }; - 86020060F6B0CA56E1AD9B59 /* Pods-Example-OpenSans-OpenSans */ = { + 866AA0434270D3C9C6572C4650E1A7A8 /* OpenSans-OpenSans */ = { isa = PBXNativeTarget; - buildConfigurationList = 5AFAF13DB54C8BB20553497F /* Build configuration list for PBXNativeTarget "Pods-Example-OpenSans-OpenSans" */; + buildConfigurationList = 04919AF9D61145CA67E372DF8D4DAC83 /* Build configuration list for PBXNativeTarget "OpenSans-OpenSans" */; buildPhases = ( - FCF64B8881FDB6DFFF22D8AD /* Sources */, - CF01EC9E178BEDA3DE7434C0 /* Frameworks */, - 08663F774D108D1523466464 /* Resources */, + 89CA562F52198377756EC52BBDD52753 /* Sources */, + 7C1A815BF4F110752F194ED38F652845 /* Frameworks */, + 6353AED1D578F3B54A6AF5707F00957F /* Resources */, ); buildRules = ( ); dependencies = ( ); - name = "Pods-Example-OpenSans-OpenSans"; - productName = "Pods-Example-OpenSans-OpenSans"; - productReference = B870BE2D818F1DE4D1E89142 /* OpenSans.bundle */; + name = "OpenSans-OpenSans"; + productName = OpenSans; + productReference = 95244E634CD25D6FAFBE86E6504426B3 /* OpenSans-OpenSans */; productType = "com.apple.product-type.bundle"; }; - B91EDE3BEF5062F460EE9623 /* Pods-Example-UICollectionViewLeftAlignedLayout */ = { + CC855F6CF68A0E53B44765DF68F5A1BB /* UICollectionViewLeftAlignedLayout */ = { isa = PBXNativeTarget; - buildConfigurationList = 4C3FDFF5015FC555B969F5DF /* Build configuration list for PBXNativeTarget "Pods-Example-UICollectionViewLeftAlignedLayout" */; + buildConfigurationList = 94CE3A8435DBC028DE42773A6CDC3557 /* Build configuration list for PBXNativeTarget "UICollectionViewLeftAlignedLayout" */; buildPhases = ( - 6F03E004F38575E52194F976 /* Sources */, - 7BA1F74BC886CA8EE1065429 /* Frameworks */, - 35DD613E4394E77B8261C879 /* Headers */, + B90E7228BDB58DC2CD0E47F0C7BB380F /* Headers */, + B9E555A78750B50428451BDE732FDA56 /* Sources */, + 9A796E8EB73A6E879E57F7F52DB94172 /* Frameworks */, + C7170B711A1E6AA769A5787A3E5BDDE3 /* Resources */, ); buildRules = ( ); dependencies = ( ); - name = "Pods-Example-UICollectionViewLeftAlignedLayout"; - productName = "Pods-Example-UICollectionViewLeftAlignedLayout"; - productReference = 57457158E628F802A7B6395D /* libPods-Example-UICollectionViewLeftAlignedLayout.a */; - productType = "com.apple.product-type.library.static"; + name = UICollectionViewLeftAlignedLayout; + productName = UICollectionViewLeftAlignedLayout; + productReference = 4A814427737E03EB24C323B10836E583 /* UICollectionViewLeftAlignedLayout */; + productType = "com.apple.product-type.framework"; }; - F83C4F9865B48191AF666012 /* Pods-Example-OpenSans */ = { + DBF5D92DF7C222FC14A9F2D2E3A1FECB /* UIColor+FlatColors */ = { isa = PBXNativeTarget; - buildConfigurationList = B29D553ACB5C89694412C45F /* Build configuration list for PBXNativeTarget "Pods-Example-OpenSans" */; + buildConfigurationList = D2783AA410F8481B3B026192697AC118 /* Build configuration list for PBXNativeTarget "UIColor+FlatColors" */; buildPhases = ( - 0876512D2716FC5B974773D1 /* Sources */, - E2AE15C33115A20838076366 /* Frameworks */, - 8F580D2F28D581445FA9CF76 /* Headers */, + 1A6E66055869F9C8A76BAB3DF20AB262 /* Headers */, + F98534A622AD1F8D6757869982C09BDA /* Sources */, + A34470C37B1DE2284087CDD72A0B804E /* Frameworks */, + 518E8D74E674CC8A1CFCFBFA6C6CD54C /* Resources */, ); buildRules = ( ); dependencies = ( - 81080E8AFF35BD04971B89F4 /* PBXTargetDependency */, ); - name = "Pods-Example-OpenSans"; - productName = "Pods-Example-OpenSans"; - productReference = 5FC2FB0CFDFC18166BE6670C /* libPods-Example-OpenSans.a */; - productType = "com.apple.product-type.library.static"; + name = "UIColor+FlatColors"; + productName = UIColor_FlatColors; + productReference = 204756DB97637304E5F0FEA2A59CA9D8 /* UIColor+FlatColors */; + productType = "com.apple.product-type.framework"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ - 0FB622B518768A11A730688C /* Project object */ = { + BFDFE7DC352907FC980B868725387E98 /* Project object */ = { isa = PBXProject; attributes = { - LastUpgradeCheck = 0640; + LastSwiftUpdateCheck = 1300; + LastUpgradeCheck = 1300; }; - buildConfigurationList = 087D8FC7A8DA5F95CDD47DD5 /* Build configuration list for PBXProject "Pods" */; + buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; + developmentRegion = en; hasScannedForEncodings = 0; knownRegions = ( + Base, en, ); - mainGroup = AA4EA91FEB91CCED97A07C5E; - productRefGroup = 8408B15C73F2229E73C3E00C /* Products */; + mainGroup = CF1408CF629C7361332E53B88F7BD30C; + productRefGroup = 8A12327D38D5B3C5A350829C12255375 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( - 48565C0C88F272E02CEFDCED /* Pods-Example */, - F83C4F9865B48191AF666012 /* Pods-Example-OpenSans */, - 86020060F6B0CA56E1AD9B59 /* Pods-Example-OpenSans-OpenSans */, - B91EDE3BEF5062F460EE9623 /* Pods-Example-UICollectionViewLeftAlignedLayout */, - 0E1EE87C44D5432C4FF11A8F /* Pods-Example-UIColor+FlatColors */, + 5D2C062A8FB1A5905A7A79E46FB5EC44 /* OpenSans */, + 866AA0434270D3C9C6572C4650E1A7A8 /* OpenSans-OpenSans */, + 0AEE99A309977BD12A049FF48AF9BA4B /* Pods-Example */, + CC855F6CF68A0E53B44765DF68F5A1BB /* UICollectionViewLeftAlignedLayout */, + DBF5D92DF7C222FC14A9F2D2E3A1FECB /* UIColor+FlatColors */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 08663F774D108D1523466464 /* Resources */ = { + 518E8D74E674CC8A1CFCFBFA6C6CD54C /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 51C7D37E6A440F03EBA0E607653833FE /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DBBEE0B0DC2AECE55F6AFF982B612E9D /* OpenSans-OpenSans in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6353AED1D578F3B54A6AF5707F00957F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + CE550D88EAC087B04AB7ED2429C9D367 /* OpenSans-Bold.ttf in Resources */, + 7C0454C9C7A384C5F761961CD6C45827 /* OpenSans-BoldItalic.ttf in Resources */, + 6C05A63DB53A81BB8A2DB99F8DB77944 /* OpenSans-ExtraBold.ttf in Resources */, + 990BF31958AEDEF7089175C0E3354512 /* OpenSans-ExtraBoldItalic.ttf in Resources */, + 657E0BD0B34A889C34420FF45C6E1905 /* OpenSans-Italic.ttf in Resources */, + FB158041136A580A50F77F1ABC43EC52 /* OpenSans-Light.ttf in Resources */, + 7FFB66B82589C1DD8AFAE0A3B2BCA90C /* OpenSans-LightItalic.ttf in Resources */, + 9A31BF7EB81151E0DC6A1372FC5FE4DE /* OpenSans-Regular.ttf in Resources */, + EE8A28C7B7C938A9B32072DB99925E7C /* OpenSans-Semibold.ttf in Resources */, + 9BD6DEB16AEBEB66FF8C154748A110E5 /* OpenSans-SemiboldItalic.ttf in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C7170B711A1E6AA769A5787A3E5BDDE3 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D1697B0B40C3776000D4B1958FC02457 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 519DF5AD48D954336A99994D /* OpenSans-Bold.ttf in Resources */, - 7EE1C6DA1539721806CC3B62 /* OpenSans-BoldItalic.ttf in Resources */, - A0C0B35B03BBBF86D155859B /* OpenSans-ExtraBold.ttf in Resources */, - 737CD8B2ABC4C4057C2DB451 /* OpenSans-ExtraBoldItalic.ttf in Resources */, - 27E39DA5A415C6DFB0925316 /* OpenSans-Italic.ttf in Resources */, - 75BE6AEB59EB840D3B7288E1 /* OpenSans-Light.ttf in Resources */, - C77C9B6F37B4A8D6AA53144B /* OpenSans-LightItalic.ttf in Resources */, - 9B1B40992BB1E20B68C29C99 /* OpenSans-Regular.ttf in Resources */, - 83385EE1F82F73D282FF754E /* OpenSans-Semibold.ttf in Resources */, - 279EFF6CF29F3E3B2B7DD7B2 /* OpenSans-SemiboldItalic.ttf in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 0876512D2716FC5B974773D1 /* Sources */ = { + 323B9CDB470A7664D33FFD33B9136B3A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B3176579F2FB14D76717FC94 /* Pods-Example-OpenSans-dummy.m in Sources */, - 4B00B42F0ED9ABDE524E1F08 /* UIFont+OpenSans.m in Sources */, + C8DE09AAFC30F82063498CE0698F946F /* OpenSans-dummy.m in Sources */, + 4C8B0624D371A190CE4B069C429C82EA /* UIFont+OpenSans.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0A83109287AED48A5FA7AF44 /* Sources */ = { + 36C6D1E1A81EFB0F27E6074B37F5FD47 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A9885CD96E8BC441E8017651 /* Pods-Example-UIColor+FlatColors-dummy.m in Sources */, - 26CF72622BDEF57D8D5888F0 /* UIColor+FlatColors.m in Sources */, + 84CB1080B796EDCA15994078393E6BCC /* Pods-Example-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 121A2AAB653F4E4153AF3A9B /* Sources */ = { + 89CA562F52198377756EC52BBDD52753 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B5A66A3846B16E99D4ABC729 /* Pods-Example-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6F03E004F38575E52194F976 /* Sources */ = { + B9E555A78750B50428451BDE732FDA56 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3B774CAA30044B9DB1B95AC6 /* Pods-Example-UICollectionViewLeftAlignedLayout-dummy.m in Sources */, - 7D05CF7B83E182DBA11E247E /* UICollectionViewLeftAlignedLayout.m in Sources */, + B94C4D4853A8E91DC1A614BFD9BB7D4A /* UICollectionViewLeftAlignedLayout.m in Sources */, + E7F5191B7F7120FB3AF97B2E3471FC59 /* UICollectionViewLeftAlignedLayout-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - FCF64B8881FDB6DFFF22D8AD /* Sources */ = { + F98534A622AD1F8D6757869982C09BDA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + 6B3EDFE1EF75734AB54463F6F91AEAE0 /* UIColor+FlatColors.m in Sources */, + 62C1B16E0E6DEF7B40381B26B01A70AC /* UIColor+FlatColors-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 4993C6FA9CBCB3ED220B2566 /* PBXTargetDependency */ = { + 39860CE0C32077677C925364A590F29B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Pods-Example-OpenSans"; - target = F83C4F9865B48191AF666012 /* Pods-Example-OpenSans */; - targetProxy = 3688A602259FA9EE9BAB969A /* PBXContainerItemProxy */; + name = "UIColor+FlatColors"; + target = DBF5D92DF7C222FC14A9F2D2E3A1FECB /* UIColor+FlatColors */; + targetProxy = 8CC546101A4E046CCB7B79E5039A0648 /* PBXContainerItemProxy */; }; - 55F95E6864FDA793D01A1EF3 /* PBXTargetDependency */ = { + 5D3E63D590B99EDC7EDC642DB2574F49 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Pods-Example-UIColor+FlatColors"; - target = 0E1EE87C44D5432C4FF11A8F /* Pods-Example-UIColor+FlatColors */; - targetProxy = 7C962514D4928FE78472B090 /* PBXContainerItemProxy */; + name = OpenSans; + target = 5D2C062A8FB1A5905A7A79E46FB5EC44 /* OpenSans */; + targetProxy = 274FF763F1C0F55579A4501E0F96152A /* PBXContainerItemProxy */; }; - 81080E8AFF35BD04971B89F4 /* PBXTargetDependency */ = { + 87F8ACB629A9F429803B1C137048C64E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Pods-Example-OpenSans-OpenSans"; - target = 86020060F6B0CA56E1AD9B59 /* Pods-Example-OpenSans-OpenSans */; - targetProxy = 101CE45BED1FEF7F9C7369C6 /* PBXContainerItemProxy */; + name = UICollectionViewLeftAlignedLayout; + target = CC855F6CF68A0E53B44765DF68F5A1BB /* UICollectionViewLeftAlignedLayout */; + targetProxy = 2EA216675343B90BE27458869A999E12 /* PBXContainerItemProxy */; }; - EF3E1A64A2FBEDCB6AED5778 /* PBXTargetDependency */ = { + E69A05AC17A761DF9A74A832DBCF8936 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Pods-Example-UICollectionViewLeftAlignedLayout"; - target = B91EDE3BEF5062F460EE9623 /* Pods-Example-UICollectionViewLeftAlignedLayout */; - targetProxy = 29337A2432417DCDCE50ACD9 /* PBXContainerItemProxy */; + name = "OpenSans-OpenSans"; + target = 866AA0434270D3C9C6572C4650E1A7A8 /* OpenSans-OpenSans */; + targetProxy = 95F090CBE402243A8D2C15FCD40CE307 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 260CC3A53236CFF3B70F3CD7 /* Release */ = { + 039262128712FDE174512FF917C86C94 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 65A28F8FFADFBDF6E3FF7758 /* Pods-Example.release.xcconfig */; + baseConfigurationReference = 079CF76BC5BED2A91C4668153D9447BC /* UICollectionViewLeftAlignedLayout.release.xcconfig */; buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_NAME = "$(TARGET_NAME)"; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.modulemap"; + PRODUCT_MODULE_NAME = UICollectionViewLeftAlignedLayout; + PRODUCT_NAME = UICollectionViewLeftAlignedLayout; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - 5159195409965D9D6EED5E24 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 49737F6C7C9A1BF2F7DC8567 /* Pods-Example-OpenSans-Private.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - PRODUCT_NAME = OpenSans; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 58F36FBE8038E99469C683B3 /* Debug */ = { + 13D282D32CA3FE73E2F93394A1DBAEC7 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 30F574709DF44948C8D026CF /* Pods-Example.debug.xcconfig */; + baseConfigurationReference = 243410B9535472556EA4BB6DBC133A0D /* Pods-Example.release.xcconfig */; buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = YES; + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-Example/Pods-Example-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Example/Pods-Example.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PODS_ROOT = "$(SRCROOT)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - }; - name = Debug; - }; - 6053B85613A223B38E68BBC8 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2EA87AA08C6CEB7796EBA79A /* Pods-Example-UICollectionViewLeftAlignedLayout-Private.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - 60E13DEEEBE5CCD7871160A7 /* Release */ = { + 75790C59CDE5C810CF73AB45081C4CD5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 49737F6C7C9A1BF2F7DC8567 /* Pods-Example-OpenSans-Private.xcconfig */; + baseConfigurationReference = 6097E517FDB93C7919BAEED2EF4FA75C /* OpenSans.release.xcconfig */; buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/OpenSans"; + IBSC_MODULE = OpenSans; + INFOPLIST_FILE = "Target Support Files/OpenSans/ResourceBundle-OpenSans-OpenSans-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; PRODUCT_NAME = OpenSans; SDKROOT = iphoneos; SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 6F3F3D292951A7CE7B9D96B3 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2EA87AA08C6CEB7796EBA79A /* Pods-Example-UICollectionViewLeftAlignedLayout-Private.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = YES; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - }; - name = Debug; - }; - 93F7958ABBA4926C9FE6FCF0 /* Release */ = { + 903A0004D3E6651EFD5D2E16214D101B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_NS_ASSERTIONS = NO; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_PREPROCESSOR_DEFINITIONS = "RELEASE=1"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; STRIP_INSTALLED_PRODUCT = NO; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_VERSION = 5.0; SYMROOT = "${SRCROOT}/../build"; + }; + name = Release; + }; + 9204118A1E5AF8937F45825047A39600 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6097E517FDB93C7919BAEED2EF4FA75C /* OpenSans.release.xcconfig */; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/OpenSans/OpenSans-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/OpenSans/OpenSans-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/OpenSans/OpenSans.modulemap"; + PRODUCT_MODULE_NAME = OpenSans; + PRODUCT_NAME = OpenSans; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - 95FF77D5755E1E376A848BF1 /* Debug */ = { + AB206E68CB14327BC58132A12AE7FF07 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 167A533EDA3D4225D2FF02EE2DC2432D /* OpenSans.debug.xcconfig */; + buildSettings = { + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/OpenSans"; + IBSC_MODULE = OpenSans; + INFOPLIST_FILE = "Target Support Files/OpenSans/ResourceBundle-OpenSans-OpenSans-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + PRODUCT_NAME = OpenSans; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + B4EFE046ACF8F37157F6E322C7FCFC28 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; - GCC_C_LANGUAGE_STANDARD = gnu99; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_DEBUG=1", "DEBUG=1", "$(inherited)", ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; STRIP_INSTALLED_PRODUCT = NO; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; SYMROOT = "${SRCROOT}/../build"; }; name = Debug; }; - AE95DF13C40B3E076C595484 /* Release */ = { + BAF55627BA9246AEE4D0160758381EA4 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 49737F6C7C9A1BF2F7DC8567 /* Pods-Example-OpenSans-Private.xcconfig */; + baseConfigurationReference = 167A533EDA3D4225D2FF02EE2DC2432D /* OpenSans.debug.xcconfig */; buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/OpenSans/OpenSans-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/OpenSans/OpenSans-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/OpenSans/OpenSans.modulemap"; + PRODUCT_MODULE_NAME = OpenSans; + PRODUCT_NAME = OpenSans; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - E8F9AD7A4336666FB9426483 /* Debug */ = { + C06A1D55DE240A2D2D816D6C357AFCE1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 49737F6C7C9A1BF2F7DC8567 /* Pods-Example-OpenSans-Private.xcconfig */; + baseConfigurationReference = C7FE671522D93C89BA2600CE6AB0364A /* UICollectionViewLeftAlignedLayout.debug.xcconfig */; buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = YES; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.modulemap"; + PRODUCT_MODULE_NAME = UICollectionViewLeftAlignedLayout; + PRODUCT_NAME = UICollectionViewLeftAlignedLayout; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - E958B6BD320F547FCBCA237B /* Debug */ = { + E8CCAA0FD978D84CAB7D1C3546B61286 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 63BC9886F9994635A2AFC018 /* Pods-Example-UIColor+FlatColors-Private.xcconfig */; + baseConfigurationReference = B45138496B85A072654D1D0F8EBBEDE5 /* Pods-Example.debug.xcconfig */; buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = YES; + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + CLANG_ENABLE_OBJC_WEAK = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-Example/Pods-Example-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-Example/Pods-Example.modulemap"; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - F6E1A2075D6143B8F52B6BF7 /* Release */ = { + ECEAA3D91F9118936BA13285EE0EF4B0 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 63BC9886F9994635A2AFC018 /* Pods-Example-UIColor+FlatColors-Private.xcconfig */; + baseConfigurationReference = 9276E3F2A126FD37A541EA0057299335 /* UIColor+FlatColors.release.xcconfig */; buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/UIColor+FlatColors/UIColor+FlatColors-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/UIColor+FlatColors/UIColor+FlatColors-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/UIColor+FlatColors/UIColor+FlatColors.modulemap"; + PRODUCT_MODULE_NAME = UIColor_FlatColors; + PRODUCT_NAME = UIColor_FlatColors; SDKROOT = iphoneos; SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; + FAD57CCFC4B3ABB727F9FCEB70A1C8E2 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 45E8AE014EF2541AFBEF79944E6A9942 /* UIColor+FlatColors.debug.xcconfig */; + buildSettings = { + ARCHS = "$(ARCHS_STANDARD_64_BIT)"; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/UIColor+FlatColors/UIColor+FlatColors-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/UIColor+FlatColors/UIColor+FlatColors-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/UIColor+FlatColors/UIColor+FlatColors.modulemap"; + PRODUCT_MODULE_NAME = UIColor_FlatColors; + PRODUCT_NAME = UIColor_FlatColors; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 087D8FC7A8DA5F95CDD47DD5 /* Build configuration list for PBXProject "Pods" */ = { + 04919AF9D61145CA67E372DF8D4DAC83 /* Build configuration list for PBXNativeTarget "OpenSans-OpenSans" */ = { isa = XCConfigurationList; buildConfigurations = ( - 95FF77D5755E1E376A848BF1 /* Debug */, - 93F7958ABBA4926C9FE6FCF0 /* Release */, + AB206E68CB14327BC58132A12AE7FF07 /* Debug */, + 75790C59CDE5C810CF73AB45081C4CD5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 198DDCCE7EEF3AE4B8CE4D36 /* Build configuration list for PBXNativeTarget "Pods-Example" */ = { + 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( - 58F36FBE8038E99469C683B3 /* Debug */, - 260CC3A53236CFF3B70F3CD7 /* Release */, + B4EFE046ACF8F37157F6E322C7FCFC28 /* Debug */, + 903A0004D3E6651EFD5D2E16214D101B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 357D1D86EFCC9F52FE1D79FA /* Build configuration list for PBXNativeTarget "Pods-Example-UIColor+FlatColors" */ = { + 94CE3A8435DBC028DE42773A6CDC3557 /* Build configuration list for PBXNativeTarget "UICollectionViewLeftAlignedLayout" */ = { isa = XCConfigurationList; buildConfigurations = ( - E958B6BD320F547FCBCA237B /* Debug */, - F6E1A2075D6143B8F52B6BF7 /* Release */, + C06A1D55DE240A2D2D816D6C357AFCE1 /* Debug */, + 039262128712FDE174512FF917C86C94 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4C3FDFF5015FC555B969F5DF /* Build configuration list for PBXNativeTarget "Pods-Example-UICollectionViewLeftAlignedLayout" */ = { + A1BF3770FE4E048297B1BAFE4D05163B /* Build configuration list for PBXNativeTarget "OpenSans" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6F3F3D292951A7CE7B9D96B3 /* Debug */, - 6053B85613A223B38E68BBC8 /* Release */, + BAF55627BA9246AEE4D0160758381EA4 /* Debug */, + 9204118A1E5AF8937F45825047A39600 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5AFAF13DB54C8BB20553497F /* Build configuration list for PBXNativeTarget "Pods-Example-OpenSans-OpenSans" */ = { + B09921880F42E4C0F5184DA13DBBE6A0 /* Build configuration list for PBXNativeTarget "Pods-Example" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5159195409965D9D6EED5E24 /* Debug */, - 60E13DEEEBE5CCD7871160A7 /* Release */, + E8CCAA0FD978D84CAB7D1C3546B61286 /* Debug */, + 13D282D32CA3FE73E2F93394A1DBAEC7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B29D553ACB5C89694412C45F /* Build configuration list for PBXNativeTarget "Pods-Example-OpenSans" */ = { + D2783AA410F8481B3B026192697AC118 /* Build configuration list for PBXNativeTarget "UIColor+FlatColors" */ = { isa = XCConfigurationList; buildConfigurations = ( - E8F9AD7A4336666FB9426483 /* Debug */, - AE95DF13C40B3E076C595484 /* Release */, + FAD57CCFC4B3ABB727F9FCEB70A1C8E2 /* Debug */, + ECEAA3D91F9118936BA13285EE0EF4B0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; - rootObject = 0FB622B518768A11A730688C /* Project object */; + rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; } diff --git a/Examples/CocoaPods/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-Example-UICollectionViewLeftAlignedLayout.xcscheme b/Examples/CocoaPods/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-Example-UICollectionViewLeftAlignedLayout.xcscheme deleted file mode 100644 index 938057e..0000000 --- a/Examples/CocoaPods/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-Example-UICollectionViewLeftAlignedLayout.xcscheme +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans-Info.plist b/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans-Info.plist new file mode 100644 index 0000000..10ad18b --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.3 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans-dummy.m b/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans-dummy.m new file mode 100644 index 0000000..003dc11 --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_OpenSans : NSObject +@end +@implementation PodsDummy_OpenSans +@end diff --git a/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans-prefix.pch b/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans-umbrella.h b/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans-umbrella.h new file mode 100644 index 0000000..caca515 --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans-umbrella.h @@ -0,0 +1,17 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "UIFont+OpenSans.h" + +FOUNDATION_EXPORT double OpenSansVersionNumber; +FOUNDATION_EXPORT const unsigned char OpenSansVersionString[]; + diff --git a/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans.debug.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans.debug.xcconfig new file mode 100644 index 0000000..6b0f9fb --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans.debug.xcconfig @@ -0,0 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/OpenSans +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_LDFLAGS = $(inherited) -framework "CoreText" -framework "UIKit" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/OpenSans +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans.modulemap b/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans.modulemap new file mode 100644 index 0000000..2cf260b --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans.modulemap @@ -0,0 +1,6 @@ +framework module OpenSans { + umbrella header "OpenSans-umbrella.h" + + export * + module * { export * } +} diff --git a/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans.release.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans.release.xcconfig new file mode 100644 index 0000000..6b0f9fb --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/OpenSans/OpenSans.release.xcconfig @@ -0,0 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/OpenSans +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_LDFLAGS = $(inherited) -framework "CoreText" -framework "UIKit" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/OpenSans +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Examples/CocoaPods/Pods/Target Support Files/OpenSans/ResourceBundle-OpenSans-OpenSans-Info.plist b/Examples/CocoaPods/Pods/Target Support Files/OpenSans/ResourceBundle-OpenSans-OpenSans-Info.plist new file mode 100644 index 0000000..c34f5f5 --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/OpenSans/ResourceBundle-OpenSans-OpenSans-Info.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0.3 + CFBundleSignature + ???? + CFBundleVersion + 1 + NSPrincipalClass + + + diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-Private.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-Private.xcconfig deleted file mode 100644 index 5091f43..0000000 --- a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-Private.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include "Pods-Example-OpenSans.xcconfig" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/OpenSans" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/OpenSans" "${PODS_ROOT}/Headers/Public/UICollectionViewLeftAlignedLayout" "${PODS_ROOT}/Headers/Public/UIColor+FlatColors" -OTHER_LDFLAGS = ${PODS_EXAMPLE_OPENSANS_OTHER_LDFLAGS} -ObjC -PODS_ROOT = ${SRCROOT} -SKIP_INSTALL = YES \ No newline at end of file diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-dummy.m b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-dummy.m deleted file mode 100644 index 4f9796b..0000000 --- a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_Example_OpenSans : NSObject -@end -@implementation PodsDummy_Pods_Example_OpenSans -@end diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-prefix.pch b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-prefix.pch deleted file mode 100644 index 1ebb8ef..0000000 --- a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans-prefix.pch +++ /dev/null @@ -1,5 +0,0 @@ -#ifdef __OBJC__ -#import -#endif - -#import "Pods-Example-environment.h" diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans.xcconfig deleted file mode 100644 index 5913a4c..0000000 --- a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-OpenSans/Pods-Example-OpenSans.xcconfig +++ /dev/null @@ -1 +0,0 @@ -PODS_EXAMPLE_OPENSANS_OTHER_LDFLAGS = -framework "CoreText" -framework "UIKit" \ No newline at end of file diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-Private.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-Private.xcconfig deleted file mode 100644 index b6411fc..0000000 --- a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-Private.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include "Pods-Example-UICollectionViewLeftAlignedLayout.xcconfig" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/UICollectionViewLeftAlignedLayout" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/OpenSans" "${PODS_ROOT}/Headers/Public/UICollectionViewLeftAlignedLayout" "${PODS_ROOT}/Headers/Public/UIColor+FlatColors" -OTHER_LDFLAGS = -ObjC -PODS_ROOT = ${SRCROOT} -SKIP_INSTALL = YES \ No newline at end of file diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-dummy.m b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-dummy.m deleted file mode 100644 index 2ca7fb9..0000000 --- a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_Example_UICollectionViewLeftAlignedLayout : NSObject -@end -@implementation PodsDummy_Pods_Example_UICollectionViewLeftAlignedLayout -@end diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-prefix.pch b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-prefix.pch deleted file mode 100644 index 1ebb8ef..0000000 --- a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout-prefix.pch +++ /dev/null @@ -1,5 +0,0 @@ -#ifdef __OBJC__ -#import -#endif - -#import "Pods-Example-environment.h" diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UICollectionViewLeftAlignedLayout/Pods-Example-UICollectionViewLeftAlignedLayout.xcconfig deleted file mode 100644 index e69de29..0000000 diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-Private.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-Private.xcconfig deleted file mode 100644 index 2785a85..0000000 --- a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-Private.xcconfig +++ /dev/null @@ -1,6 +0,0 @@ -#include "Pods-Example-UIColor+FlatColors.xcconfig" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/UIColor+FlatColors" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/OpenSans" "${PODS_ROOT}/Headers/Public/UICollectionViewLeftAlignedLayout" "${PODS_ROOT}/Headers/Public/UIColor+FlatColors" -OTHER_LDFLAGS = -ObjC -PODS_ROOT = ${SRCROOT} -SKIP_INSTALL = YES \ No newline at end of file diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-dummy.m b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-dummy.m deleted file mode 100644 index 35cf6b3..0000000 --- a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_Example_UIColor_FlatColors : NSObject -@end -@implementation PodsDummy_Pods_Example_UIColor_FlatColors -@end diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-prefix.pch b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-prefix.pch deleted file mode 100644 index 1ebb8ef..0000000 --- a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors-prefix.pch +++ /dev/null @@ -1,5 +0,0 @@ -#ifdef __OBJC__ -#import -#endif - -#import "Pods-Example-environment.h" diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example-UIColor+FlatColors/Pods-Example-UIColor+FlatColors.xcconfig deleted file mode 100644 index e69de29..0000000 diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-Info.plist b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-Info.plist new file mode 100644 index 0000000..2243fe6 --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown index 65666fd..34a0f7f 100644 --- a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown +++ b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.markdown @@ -254,4 +254,4 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -Generated by CocoaPods - http://cocoapods.org +Generated by CocoaPods - https://cocoapods.org diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist index 328b63d..dae4b2f 100644 --- a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist +++ b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-acknowledgements.plist @@ -217,6 +217,8 @@ See the License for the specific language governing permissions and limitations under the License. + License + Apache License, Version 2.0 Title OpenSans Type @@ -245,6 +247,8 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + License + MIT Title UICollectionViewLeftAlignedLayout Type @@ -273,6 +277,8 @@ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + License + MIT Title UIColor+FlatColors Type @@ -280,7 +286,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. FooterText - Generated by CocoaPods - http://cocoapods.org + Generated by CocoaPods - https://cocoapods.org Title Type diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-environment.h b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-environment.h deleted file mode 100644 index 428a177..0000000 --- a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-environment.h +++ /dev/null @@ -1,26 +0,0 @@ - -// To check if a library is compiled with CocoaPods you -// can use the `COCOAPODS` macro definition which is -// defined in the xcconfigs so it is available in -// headers also when they are imported in the client -// project. - - -// OpenSans -#define COCOAPODS_POD_AVAILABLE_OpenSans -#define COCOAPODS_VERSION_MAJOR_OpenSans 1 -#define COCOAPODS_VERSION_MINOR_OpenSans 0 -#define COCOAPODS_VERSION_PATCH_OpenSans 3 - -// UICollectionViewLeftAlignedLayout -#define COCOAPODS_POD_AVAILABLE_UICollectionViewLeftAlignedLayout -#define COCOAPODS_VERSION_MAJOR_UICollectionViewLeftAlignedLayout 0 -#define COCOAPODS_VERSION_MINOR_UICollectionViewLeftAlignedLayout 0 -#define COCOAPODS_VERSION_PATCH_UICollectionViewLeftAlignedLayout 3 - -// UIColor+FlatColors -#define COCOAPODS_POD_AVAILABLE_UIColor_FlatColors -#define COCOAPODS_VERSION_MAJOR_UIColor_FlatColors 0 -#define COCOAPODS_VERSION_MINOR_UIColor_FlatColors 0 -#define COCOAPODS_VERSION_PATCH_UIColor_FlatColors 2 - diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-frameworks.sh b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-frameworks.sh new file mode 100755 index 0000000..dc81d4b --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-frameworks.sh @@ -0,0 +1,190 @@ +#!/bin/sh +set -e +set -u +set -o pipefail + +function on_error { + echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" +} +trap 'on_error $LINENO' ERR + +if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then + # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy + # frameworks to, so exit 0 (signalling the script phase was successful). + exit 0 +fi + +echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" +mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + +COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" +SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" +BCSYMBOLMAP_DIR="BCSymbolMaps" + + +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + +# Copies and strips a vendored framework +install_framework() +{ + if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then + local source="${BUILT_PRODUCTS_DIR}/$1" + elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then + local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" + elif [ -r "$1" ]; then + local source="$1" + fi + + local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + + if [ -L "${source}" ]; then + echo "Symlinked..." + source="$(readlink "${source}")" + fi + + if [ -d "${source}/${BCSYMBOLMAP_DIR}" ]; then + # Locate and install any .bcsymbolmaps if present, and remove them from the .framework before the framework is copied + find "${source}/${BCSYMBOLMAP_DIR}" -name "*.bcsymbolmap"|while read f; do + echo "Installing $f" + install_bcsymbolmap "$f" "$destination" + rm "$f" + done + rmdir "${source}/${BCSYMBOLMAP_DIR}" + fi + + # Use filter instead of exclude so missing patterns don't throw errors. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" + + local basename + basename="$(basename -s .framework "$1")" + binary="${destination}/${basename}.framework/${basename}" + + if ! [ -r "$binary" ]; then + binary="${destination}/${basename}" + elif [ -L "${binary}" ]; then + echo "Destination binary is symlinked..." + dirname="$(dirname "${binary}")" + binary="${dirname}/$(readlink "${binary}")" + fi + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then + strip_invalid_archs "$binary" + fi + + # Resign the code if required by the build settings to avoid unstable apps + code_sign_if_enabled "${destination}/$(basename "$1")" + + # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. + if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then + local swift_runtime_libs + swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u) + for lib in $swift_runtime_libs; do + echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" + rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" + code_sign_if_enabled "${destination}/${lib}" + done + fi +} +# Copies and strips a vendored dSYM +install_dsym() { + local source="$1" + warn_missing_arch=${2:-true} + if [ -r "$source" ]; then + # Copy the dSYM into the targets temp dir. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" + + local basename + basename="$(basename -s .dSYM "$source")" + binary_name="$(ls "$source/Contents/Resources/DWARF")" + binary="${DERIVED_FILES_DIR}/${basename}.dSYM/Contents/Resources/DWARF/${binary_name}" + + # Strip invalid architectures from the dSYM. + if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then + strip_invalid_archs "$binary" "$warn_missing_arch" + fi + if [[ $STRIP_BINARY_RETVAL == 0 ]]; then + # Move the stripped file into its final destination. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.dSYM" "${DWARF_DSYM_FOLDER_PATH}" + else + # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. + mkdir -p "${DWARF_DSYM_FOLDER_PATH}" + touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.dSYM" + fi + fi +} + +# Used as a return value for each invocation of `strip_invalid_archs` function. +STRIP_BINARY_RETVAL=0 + +# Strip invalid architectures +strip_invalid_archs() { + binary="$1" + warn_missing_arch=${2:-true} + # Get architectures for current target binary + binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" + # Intersect them with the architectures we are building for + intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" + # If there are no archs supported by this binary then warn the user + if [[ -z "$intersected_archs" ]]; then + if [[ "$warn_missing_arch" == "true" ]]; then + echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." + fi + STRIP_BINARY_RETVAL=1 + return + fi + stripped="" + for arch in $binary_archs; do + if ! [[ "${ARCHS}" == *"$arch"* ]]; then + # Strip non-valid architectures in-place + lipo -remove "$arch" -output "$binary" "$binary" + stripped="$stripped $arch" + fi + done + if [[ "$stripped" ]]; then + echo "Stripped $binary of architectures:$stripped" + fi + STRIP_BINARY_RETVAL=0 +} + +# Copies the bcsymbolmap files of a vendored framework +install_bcsymbolmap() { + local bcsymbolmap_path="$1" + local destination="${BUILT_PRODUCTS_DIR}" + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}" +} + +# Signs a framework with the provided identity +code_sign_if_enabled() { + if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then + # Use the current code_sign_identity + echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" + local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" + + if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + code_sign_cmd="$code_sign_cmd &" + fi + echo "$code_sign_cmd" + eval "$code_sign_cmd" + fi +} + +if [[ "$CONFIGURATION" == "Debug" ]]; then + install_framework "${BUILT_PRODUCTS_DIR}/OpenSans/OpenSans.framework" + install_framework "${BUILT_PRODUCTS_DIR}/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.framework" + install_framework "${BUILT_PRODUCTS_DIR}/UIColor+FlatColors/UIColor_FlatColors.framework" +fi +if [[ "$CONFIGURATION" == "Release" ]]; then + install_framework "${BUILT_PRODUCTS_DIR}/OpenSans/OpenSans.framework" + install_framework "${BUILT_PRODUCTS_DIR}/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.framework" + install_framework "${BUILT_PRODUCTS_DIR}/UIColor+FlatColors/UIColor_FlatColors.framework" +fi +if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + wait +fi diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-resources.sh b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-resources.sh index e613b95..1a6cc31 100755 --- a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-resources.sh +++ b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-resources.sh @@ -1,99 +1,129 @@ #!/bin/sh set -e +set -u +set -o pipefail -mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +function on_error { + echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" +} +trap 'on_error $LINENO' ERR + +if [ -z ${UNLOCALIZED_RESOURCES_FOLDER_PATH+x} ]; then + # If UNLOCALIZED_RESOURCES_FOLDER_PATH is not set, then there's nowhere for us to copy + # resources to, so exit 0 (signalling the script phase was successful). + exit 0 +fi + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt > "$RESOURCES_TO_COPY" XCASSET_FILES=() -realpath() { - DIRECTORY=$(cd "${1%/*}" && pwd) - FILENAME="${1##*/}" - echo "$DIRECTORY/$FILENAME" -} +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + +case "${TARGETED_DEVICE_FAMILY:-}" in + 1,2) + TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" + ;; + 1) + TARGET_DEVICE_ARGS="--target-device iphone" + ;; + 2) + TARGET_DEVICE_ARGS="--target-device ipad" + ;; + 3) + TARGET_DEVICE_ARGS="--target-device tv" + ;; + 4) + TARGET_DEVICE_ARGS="--target-device watch" + ;; + *) + TARGET_DEVICE_ARGS="--target-device mac" + ;; +esac install_resource() { - case $1 in + if [[ "$1" = /* ]] ; then + RESOURCE_PATH="$1" + else + RESOURCE_PATH="${PODS_ROOT}/$1" + fi + if [[ ! -e "$RESOURCE_PATH" ]] ; then + cat << EOM +error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. +EOM + exit 1 + fi + case $RESOURCE_PATH in *.storyboard) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" - ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} ;; *.xib) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" - ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} ;; *.framework) - echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true + mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" ;; *.xcdatamodel) - echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" - xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" ;; *.xcdatamodeld) - echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" - xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" ;; *.xcmappingmodel) - echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" - xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" + echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true + xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" ;; *.xcassets) - ABSOLUTE_XCASSET_FILE=$(realpath "${PODS_ROOT}/$1") + ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") ;; - /*) - echo "$1" - echo "$1" >> "$RESOURCES_TO_COPY" - ;; *) - echo "${PODS_ROOT}/$1" - echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" + echo "$RESOURCE_PATH" || true + echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" ;; esac } if [[ "$CONFIGURATION" == "Debug" ]]; then - install_resource "${BUILT_PRODUCTS_DIR}/OpenSans.bundle" + install_resource "${PODS_CONFIGURATION_BUILD_DIR}/OpenSans/OpenSans.bundle" fi if [[ "$CONFIGURATION" == "Release" ]]; then - install_resource "${BUILT_PRODUCTS_DIR}/OpenSans.bundle" + install_resource "${PODS_CONFIGURATION_BUILD_DIR}/OpenSans/OpenSans.bundle" fi -rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -if [[ "${ACTION}" == "install" ]]; then +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then + mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" fi rm -f "$RESOURCES_TO_COPY" -if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] +if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "${XCASSET_FILES:-}" ] then - case "${TARGETED_DEVICE_FAMILY}" in - 1,2) - TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" - ;; - 1) - TARGET_DEVICE_ARGS="--target-device iphone" - ;; - 2) - TARGET_DEVICE_ARGS="--target-device ipad" - ;; - *) - TARGET_DEVICE_ARGS="--target-device mac" - ;; - esac - # Find all other xcassets (this unfortunately includes those of path pods and other targets). - OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) + OTHER_XCASSETS=$(find -L "$PWD" -iname "*.xcassets" -type d) while read line; do - if [[ $line != "`realpath $PODS_ROOT`*" ]]; then + if [[ $line != "${PODS_ROOT}*" ]]; then XCASSET_FILES+=("$line") fi done <<<"$OTHER_XCASSETS" - printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + if [ -z ${ASSETCATALOG_COMPILER_APPICON_NAME+x} ]; then + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + else + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" --app-icon "${ASSETCATALOG_COMPILER_APPICON_NAME}" --output-partial-info-plist "${TARGET_TEMP_DIR}/assetcatalog_generated_info_cocoapods.plist" + fi fi diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-umbrella.h b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-umbrella.h new file mode 100644 index 0000000..ecf498e --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_ExampleVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_ExampleVersionString[]; + diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig index bed0ce3..10555ef 100644 --- a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig +++ b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example.debug.xcconfig @@ -1,6 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/OpenSans" "${PODS_CONFIGURATION_BUILD_DIR}/UICollectionViewLeftAlignedLayout" "${PODS_CONFIGURATION_BUILD_DIR}/UIColor+FlatColors" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/OpenSans" "${PODS_ROOT}/Headers/Public/UICollectionViewLeftAlignedLayout" "${PODS_ROOT}/Headers/Public/UIColor+FlatColors" -OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/OpenSans" -isystem "${PODS_ROOT}/Headers/Public/UICollectionViewLeftAlignedLayout" -isystem "${PODS_ROOT}/Headers/Public/UIColor+FlatColors" -OTHER_LDFLAGS = $(inherited) -ObjC -l"Pods-Example-OpenSans" -l"Pods-Example-UICollectionViewLeftAlignedLayout" -l"Pods-Example-UIColor+FlatColors" -framework "CoreText" -framework "UIKit" -OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) -PODS_ROOT = ${SRCROOT}/Pods \ No newline at end of file +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/OpenSans/OpenSans.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/UIColor+FlatColors/UIColor_FlatColors.framework/Headers" +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_LDFLAGS = $(inherited) -framework "CoreText" -framework "OpenSans" -framework "UICollectionViewLeftAlignedLayout" -framework "UIColor_FlatColors" -framework "UIKit" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example.modulemap b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example.modulemap new file mode 100644 index 0000000..4b5189f --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example.modulemap @@ -0,0 +1,6 @@ +framework module Pods_Example { + umbrella header "Pods-Example-umbrella.h" + + export * + module * { export * } +} diff --git a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig index bed0ce3..10555ef 100644 --- a/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig +++ b/Examples/CocoaPods/Pods/Target Support Files/Pods-Example/Pods-Example.release.xcconfig @@ -1,6 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/OpenSans" "${PODS_CONFIGURATION_BUILD_DIR}/UICollectionViewLeftAlignedLayout" "${PODS_CONFIGURATION_BUILD_DIR}/UIColor+FlatColors" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/OpenSans" "${PODS_ROOT}/Headers/Public/UICollectionViewLeftAlignedLayout" "${PODS_ROOT}/Headers/Public/UIColor+FlatColors" -OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/OpenSans" -isystem "${PODS_ROOT}/Headers/Public/UICollectionViewLeftAlignedLayout" -isystem "${PODS_ROOT}/Headers/Public/UIColor+FlatColors" -OTHER_LDFLAGS = $(inherited) -ObjC -l"Pods-Example-OpenSans" -l"Pods-Example-UICollectionViewLeftAlignedLayout" -l"Pods-Example-UIColor+FlatColors" -framework "CoreText" -framework "UIKit" -OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) -PODS_ROOT = ${SRCROOT}/Pods \ No newline at end of file +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/OpenSans/OpenSans.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/UIColor+FlatColors/UIColor_FlatColors.framework/Headers" +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_LDFLAGS = $(inherited) -framework "CoreText" -framework "OpenSans" -framework "UICollectionViewLeftAlignedLayout" -framework "UIColor_FlatColors" -framework "UIKit" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-Info.plist b/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-Info.plist new file mode 100644 index 0000000..b35ab35 --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.2 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-dummy.m b/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-dummy.m new file mode 100644 index 0000000..193d014 --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_UICollectionViewLeftAlignedLayout : NSObject +@end +@implementation PodsDummy_UICollectionViewLeftAlignedLayout +@end diff --git a/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-prefix.pch b/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-umbrella.h b/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-umbrella.h new file mode 100644 index 0000000..617d4be --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout-umbrella.h @@ -0,0 +1,17 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "UICollectionViewLeftAlignedLayout.h" + +FOUNDATION_EXPORT double UICollectionViewLeftAlignedLayoutVersionNumber; +FOUNDATION_EXPORT const unsigned char UICollectionViewLeftAlignedLayoutVersionString[]; + diff --git a/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.debug.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.debug.xcconfig new file mode 100644 index 0000000..76cbe36 --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.debug.xcconfig @@ -0,0 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UICollectionViewLeftAlignedLayout +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_LDFLAGS = $(inherited) -framework "UIKit" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../.. +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.modulemap b/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.modulemap new file mode 100644 index 0000000..b6bc24f --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.modulemap @@ -0,0 +1,6 @@ +framework module UICollectionViewLeftAlignedLayout { + umbrella header "UICollectionViewLeftAlignedLayout-umbrella.h" + + export * + module * { export * } +} diff --git a/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.release.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.release.xcconfig new file mode 100644 index 0000000..76cbe36 --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/UICollectionViewLeftAlignedLayout/UICollectionViewLeftAlignedLayout.release.xcconfig @@ -0,0 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UICollectionViewLeftAlignedLayout +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_LDFLAGS = $(inherited) -framework "UIKit" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../.. +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-Info.plist b/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-Info.plist new file mode 100644 index 0000000..38ad71a --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 0.0.2 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-dummy.m b/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-dummy.m new file mode 100644 index 0000000..6eff933 --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_UIColor_FlatColors : NSObject +@end +@implementation PodsDummy_UIColor_FlatColors +@end diff --git a/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-prefix.pch b/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-umbrella.h b/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-umbrella.h new file mode 100644 index 0000000..74caac6 --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors-umbrella.h @@ -0,0 +1,17 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "UIColor+FlatColors.h" + +FOUNDATION_EXPORT double UIColor_FlatColorsVersionNumber; +FOUNDATION_EXPORT const unsigned char UIColor_FlatColorsVersionString[]; + diff --git a/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors.debug.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors.debug.xcconfig new file mode 100644 index 0000000..7c4ecbd --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors.debug.xcconfig @@ -0,0 +1,11 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UIColor+FlatColors +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/UIColor+FlatColors +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors.modulemap b/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors.modulemap new file mode 100644 index 0000000..2beaddb --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors.modulemap @@ -0,0 +1,6 @@ +framework module UIColor_FlatColors { + umbrella header "UIColor+FlatColors-umbrella.h" + + export * + module * { export * } +} diff --git a/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors.release.xcconfig b/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors.release.xcconfig new file mode 100644 index 0000000..7c4ecbd --- /dev/null +++ b/Examples/CocoaPods/Pods/Target Support Files/UIColor+FlatColors/UIColor+FlatColors.release.xcconfig @@ -0,0 +1,11 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/UIColor+FlatColors +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/UIColor+FlatColors +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES From b8de25424e665e61bfb3b7e6020f50ddcad654e3 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Fri, 20 Jan 2023 07:49:00 +1100 Subject: [PATCH 12/14] Add SPM example app to verify integration There might be a bug somewhere, but at least the collection view shows... --- Examples/SPM/.gitignore | 88 ++++ .../SPM/Example.xcodeproj/project.pbxproj | 391 ++++++++++++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + Examples/SPM/Example/AppDelegate.swift | 36 ++ .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 13 + .../SPM/Example/Assets.xcassets/Contents.json | 6 + .../Base.lproj/LaunchScreen.storyboard | 25 ++ .../SPM/Example/Base.lproj/Main.storyboard | 64 +++ Examples/SPM/Example/Info.plist | 25 ++ Examples/SPM/Example/SceneDelegate.swift | 52 +++ Examples/SPM/Example/ViewController.swift | 81 ++++ 13 files changed, 807 insertions(+) create mode 100644 Examples/SPM/.gitignore create mode 100644 Examples/SPM/Example.xcodeproj/project.pbxproj create mode 100644 Examples/SPM/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 Examples/SPM/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 Examples/SPM/Example/AppDelegate.swift create mode 100644 Examples/SPM/Example/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 Examples/SPM/Example/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 Examples/SPM/Example/Assets.xcassets/Contents.json create mode 100644 Examples/SPM/Example/Base.lproj/LaunchScreen.storyboard create mode 100644 Examples/SPM/Example/Base.lproj/Main.storyboard create mode 100644 Examples/SPM/Example/Info.plist create mode 100644 Examples/SPM/Example/SceneDelegate.swift create mode 100644 Examples/SPM/Example/ViewController.swift diff --git a/Examples/SPM/.gitignore b/Examples/SPM/.gitignore new file mode 100644 index 0000000..fe889c8 --- /dev/null +++ b/Examples/SPM/.gitignore @@ -0,0 +1,88 @@ +# Taken from https://github.com/github/gitignore/blob/4488915eec0b3a45b5c63ead28f286819c0917de/Swift.gitignore + +## User settings +xcuserdata/ + +## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) +*.xcscmblueprint +*.xccheckout + +## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) +build/ +DerivedData/ +*.moved-aside +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 + +## Obj-C/Swift specific +*.hmap + +## App packaging +*.ipa +*.dSYM.zip +*.dSYM + +## Playgrounds +timeline.xctimeline +playground.xcworkspace + +# Swift Package Manager +# +# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. +# Packages/ +# Package.pins +# Package.resolved +# *.xcodeproj +# +# Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata +# hence it is not needed unless you have added a package configuration file to your project +# .swiftpm + +.build/ + +# CocoaPods +# +# We recommend against adding the Pods directory to your .gitignore. However +# you should judge for yourself, the pros and cons are mentioned at: +# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control +# +# Pods/ +# +# Add this line if you want to avoid checking in source code from the Xcode workspace +# *.xcworkspace + +# Carthage +# +# Add this line if you want to avoid checking in source code from Carthage dependencies. +# Carthage/Checkouts + +Carthage/Build/ + +# Accio dependency management +Dependencies/ +.accio/ + +# fastlane +# +# It is recommended to not store the screenshots in the git repo. +# Instead, use fastlane to re-generate the screenshots whenever they are needed. +# For more information about the recommended setup visit: +# https://docs.fastlane.tools/best-practices/source-control/#source-control + +fastlane/report.xml +fastlane/Preview.html +fastlane/screenshots/**/*.png +fastlane/test_output + +# Code Injection +# +# After new code Injection tools there's a generated folder /iOSInjectionProject +# https://github.com/johnno1962/injectionforxcode + +iOSInjectionProject/ diff --git a/Examples/SPM/Example.xcodeproj/project.pbxproj b/Examples/SPM/Example.xcodeproj/project.pbxproj new file mode 100644 index 0000000..55fcff2 --- /dev/null +++ b/Examples/SPM/Example.xcodeproj/project.pbxproj @@ -0,0 +1,391 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 56; + objects = { + +/* Begin PBXBuildFile section */ + 3FCF1A3529776840002632D2 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FCF1A3429776840002632D2 /* AppDelegate.swift */; }; + 3FCF1A3729776840002632D2 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FCF1A3629776840002632D2 /* SceneDelegate.swift */; }; + 3FCF1A3929776840002632D2 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3FCF1A3829776840002632D2 /* ViewController.swift */; }; + 3FCF1A3C29776840002632D2 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3FCF1A3A29776840002632D2 /* Main.storyboard */; }; + 3FCF1A3E29776841002632D2 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3FCF1A3D29776841002632D2 /* Assets.xcassets */; }; + 3FCF1A4129776841002632D2 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3FCF1A3F29776841002632D2 /* LaunchScreen.storyboard */; }; + 3FCF1A582979DE47002632D2 /* UICollectionViewLeftAlignedLayout in Frameworks */ = {isa = PBXBuildFile; productRef = 3FCF1A572979DE47002632D2 /* UICollectionViewLeftAlignedLayout */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 3FCF1A3129776840002632D2 /* Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 3FCF1A3429776840002632D2 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 3FCF1A3629776840002632D2 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; + 3FCF1A3829776840002632D2 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; + 3FCF1A3B29776840002632D2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 3FCF1A3D29776841002632D2 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 3FCF1A4029776841002632D2 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 3FCF1A4229776841002632D2 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 3FCF1A552979DC9D002632D2 /* UICollectionViewLeftAlignedLayout */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = UICollectionViewLeftAlignedLayout; path = ../..; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 3FCF1A2E29776840002632D2 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 3FCF1A582979DE47002632D2 /* UICollectionViewLeftAlignedLayout in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 3FCF1A2829776840002632D2 = { + isa = PBXGroup; + children = ( + 3FCF1A542979DC9D002632D2 /* Packages */, + 3FCF1A3329776840002632D2 /* Example */, + 3FCF1A3229776840002632D2 /* Products */, + 3FCF1A562979DE47002632D2 /* Frameworks */, + ); + sourceTree = ""; + }; + 3FCF1A3229776840002632D2 /* Products */ = { + isa = PBXGroup; + children = ( + 3FCF1A3129776840002632D2 /* Example.app */, + ); + name = Products; + sourceTree = ""; + }; + 3FCF1A3329776840002632D2 /* Example */ = { + isa = PBXGroup; + children = ( + 3FCF1A3429776840002632D2 /* AppDelegate.swift */, + 3FCF1A3629776840002632D2 /* SceneDelegate.swift */, + 3FCF1A3829776840002632D2 /* ViewController.swift */, + 3FCF1A3A29776840002632D2 /* Main.storyboard */, + 3FCF1A3D29776841002632D2 /* Assets.xcassets */, + 3FCF1A3F29776841002632D2 /* LaunchScreen.storyboard */, + 3FCF1A4229776841002632D2 /* Info.plist */, + ); + path = Example; + sourceTree = ""; + }; + 3FCF1A542979DC9D002632D2 /* Packages */ = { + isa = PBXGroup; + children = ( + 3FCF1A552979DC9D002632D2 /* UICollectionViewLeftAlignedLayout */, + ); + name = Packages; + sourceTree = ""; + }; + 3FCF1A562979DE47002632D2 /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 3FCF1A3029776840002632D2 /* Example */ = { + isa = PBXNativeTarget; + buildConfigurationList = 3FCF1A4529776841002632D2 /* Build configuration list for PBXNativeTarget "Example" */; + buildPhases = ( + 3FCF1A2D29776840002632D2 /* Sources */, + 3FCF1A2E29776840002632D2 /* Frameworks */, + 3FCF1A2F29776840002632D2 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Example; + packageProductDependencies = ( + 3FCF1A572979DE47002632D2 /* UICollectionViewLeftAlignedLayout */, + ); + productName = Example; + productReference = 3FCF1A3129776840002632D2 /* Example.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 3FCF1A2929776840002632D2 /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1410; + LastUpgradeCheck = 1410; + TargetAttributes = { + 3FCF1A3029776840002632D2 = { + CreatedOnToolsVersion = 14.1; + }; + }; + }; + buildConfigurationList = 3FCF1A2C29776840002632D2 /* Build configuration list for PBXProject "Example" */; + compatibilityVersion = "Xcode 14.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 3FCF1A2829776840002632D2; + productRefGroup = 3FCF1A3229776840002632D2 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 3FCF1A3029776840002632D2 /* Example */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 3FCF1A2F29776840002632D2 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 3FCF1A4129776841002632D2 /* LaunchScreen.storyboard in Resources */, + 3FCF1A3E29776841002632D2 /* Assets.xcassets in Resources */, + 3FCF1A3C29776840002632D2 /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 3FCF1A2D29776840002632D2 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 3FCF1A3929776840002632D2 /* ViewController.swift in Sources */, + 3FCF1A3529776840002632D2 /* AppDelegate.swift in Sources */, + 3FCF1A3729776840002632D2 /* SceneDelegate.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 3FCF1A3A29776840002632D2 /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 3FCF1A3B29776840002632D2 /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 3FCF1A3F29776841002632D2 /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 3FCF1A4029776841002632D2 /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 3FCF1A4329776841002632D2 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.1; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 3FCF1A4429776841002632D2 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 16.1; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 3FCF1A4629776841002632D2 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = Example/Info.plist; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; + INFOPLIST_KEY_UIMainStoryboardFile = Main; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.mokagio.ios.SPMExample.Example; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 3FCF1A4729776841002632D2 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = Example/Info.plist; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; + INFOPLIST_KEY_UIMainStoryboardFile = Main; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.mokagio.ios.SPMExample.Example; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 3FCF1A2C29776840002632D2 /* Build configuration list for PBXProject "Example" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 3FCF1A4329776841002632D2 /* Debug */, + 3FCF1A4429776841002632D2 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 3FCF1A4529776841002632D2 /* Build configuration list for PBXNativeTarget "Example" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 3FCF1A4629776841002632D2 /* Debug */, + 3FCF1A4729776841002632D2 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + +/* Begin XCSwiftPackageProductDependency section */ + 3FCF1A572979DE47002632D2 /* UICollectionViewLeftAlignedLayout */ = { + isa = XCSwiftPackageProductDependency; + productName = UICollectionViewLeftAlignedLayout; + }; +/* End XCSwiftPackageProductDependency section */ + }; + rootObject = 3FCF1A2929776840002632D2 /* Project object */; +} diff --git a/Examples/SPM/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Examples/SPM/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/Examples/SPM/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Examples/SPM/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Examples/SPM/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/Examples/SPM/Example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/Examples/SPM/Example/AppDelegate.swift b/Examples/SPM/Example/AppDelegate.swift new file mode 100644 index 0000000..9557de8 --- /dev/null +++ b/Examples/SPM/Example/AppDelegate.swift @@ -0,0 +1,36 @@ +// +// AppDelegate.swift +// Example +// +// Created by Gio Lodi on 18/1/2023. +// + +import UIKit + +@main +class AppDelegate: UIResponder, UIApplicationDelegate { + + + + func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + // Override point for customization after application launch. + return true + } + + // MARK: UISceneSession Lifecycle + + func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { + // Called when a new scene session is being created. + // Use this method to select a configuration to create the new scene with. + return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) + } + + func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set) { + // Called when the user discards a scene session. + // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. + // Use this method to release any resources that were specific to the discarded scenes, as they will not return. + } + + +} + diff --git a/Examples/SPM/Example/Assets.xcassets/AccentColor.colorset/Contents.json b/Examples/SPM/Example/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 0000000..eb87897 --- /dev/null +++ b/Examples/SPM/Example/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Examples/SPM/Example/Assets.xcassets/AppIcon.appiconset/Contents.json b/Examples/SPM/Example/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..13613e3 --- /dev/null +++ b/Examples/SPM/Example/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,13 @@ +{ + "images" : [ + { + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Examples/SPM/Example/Assets.xcassets/Contents.json b/Examples/SPM/Example/Assets.xcassets/Contents.json new file mode 100644 index 0000000..73c0059 --- /dev/null +++ b/Examples/SPM/Example/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/Examples/SPM/Example/Base.lproj/LaunchScreen.storyboard b/Examples/SPM/Example/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..865e932 --- /dev/null +++ b/Examples/SPM/Example/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Examples/SPM/Example/Base.lproj/Main.storyboard b/Examples/SPM/Example/Base.lproj/Main.storyboard new file mode 100644 index 0000000..ccb16cc --- /dev/null +++ b/Examples/SPM/Example/Base.lproj/Main.storyboard @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Examples/SPM/Example/Info.plist b/Examples/SPM/Example/Info.plist new file mode 100644 index 0000000..dd3c9af --- /dev/null +++ b/Examples/SPM/Example/Info.plist @@ -0,0 +1,25 @@ + + + + + UIApplicationSceneManifest + + UIApplicationSupportsMultipleScenes + + UISceneConfigurations + + UIWindowSceneSessionRoleApplication + + + UISceneConfigurationName + Default Configuration + UISceneDelegateClassName + $(PRODUCT_MODULE_NAME).SceneDelegate + UISceneStoryboardFile + Main + + + + + + diff --git a/Examples/SPM/Example/SceneDelegate.swift b/Examples/SPM/Example/SceneDelegate.swift new file mode 100644 index 0000000..bb1de7b --- /dev/null +++ b/Examples/SPM/Example/SceneDelegate.swift @@ -0,0 +1,52 @@ +// +// SceneDelegate.swift +// Example +// +// Created by Gio Lodi on 18/1/2023. +// + +import UIKit + +class SceneDelegate: UIResponder, UIWindowSceneDelegate { + + var window: UIWindow? + + + func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { + // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. + // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. + // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). + guard let _ = (scene as? UIWindowScene) else { return } + } + + func sceneDidDisconnect(_ scene: UIScene) { + // Called as the scene is being released by the system. + // This occurs shortly after the scene enters the background, or when its session is discarded. + // Release any resources associated with this scene that can be re-created the next time the scene connects. + // The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead). + } + + func sceneDidBecomeActive(_ scene: UIScene) { + // Called when the scene has moved from an inactive state to an active state. + // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. + } + + func sceneWillResignActive(_ scene: UIScene) { + // Called when the scene will move from an active state to an inactive state. + // This may occur due to temporary interruptions (ex. an incoming phone call). + } + + func sceneWillEnterForeground(_ scene: UIScene) { + // Called as the scene transitions from the background to the foreground. + // Use this method to undo the changes made on entering the background. + } + + func sceneDidEnterBackground(_ scene: UIScene) { + // Called as the scene transitions from the foreground to the background. + // Use this method to save data, release shared resources, and store enough scene-specific state information + // to restore the scene back to its current state. + } + + +} + diff --git a/Examples/SPM/Example/ViewController.swift b/Examples/SPM/Example/ViewController.swift new file mode 100644 index 0000000..29a2f93 --- /dev/null +++ b/Examples/SPM/Example/ViewController.swift @@ -0,0 +1,81 @@ +import UICollectionViewLeftAlignedLayout +import UIKit + +class ViewController: UIViewController { + + @IBOutlet var collectionView: UICollectionView! + + private let reuseIdentifier = "reuseId" // Has to be different from the one in the storyboard + private let shouldRefresh = true + private lazy var timer: Timer = Timer( + timeInterval: 0.5, + target: self, + selector: #selector(reloadData), + userInfo: .none, + repeats: true + ) + + override func viewDidLoad() { + super.viewDidLoad() + + collectionView.dataSource = self + collectionView.setCollectionViewLayout(UICollectionViewLeftAlignedLayout(), animated: false) + collectionView.delegate = self + + collectionView.register(UICollectionViewCell.self, forCellWithReuseIdentifier: reuseIdentifier) + + guard shouldRefresh else { return } + + RunLoop.main.add(timer, forMode: .default) + } + + @objc func reloadData() { + collectionView.reloadData() + } +} + +extension ViewController: UICollectionViewDataSource { + + func numberOfSections(in collectionView: UICollectionView) -> Int { + 2 + } + + func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection index: Int) -> Int { + index == 0 ? 20 : 80 + } + + func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell { + let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath) + cell.contentView.layer.borderColor = UIColor.blue.cgColor + cell.contentView.layer.borderWidth = 2; + return cell + } +} + +extension ViewController: UICollectionViewDelegateLeftAlignedLayout { + + func collectionView( + _ collectionView: UICollectionView, + layout: UICollectionViewLayout, + sizeForItemAt indexPath: IndexPath + ) -> CGSize { + let randomWidth: CGFloat = CGFloat((arc4random() % 120) + 60) + return CGSize(width: randomWidth, height: 60) + } + + func collectionView( + _ collectionView: UICollectionView, + layout: UICollectionViewLayout, + minimumInteritemSpacingForSectionAt index: Int + ) -> CGFloat { + index == 0 ? 15 : 5 + } + + func collectionView( + _ collectionView: UICollectionView, + layout: UICollectionViewLayout, + insetForSectionAt index: Int + ) -> UIEdgeInsets { + UIEdgeInsets(top: 10, left: 10, bottom: 10, right: 10) + } +} From 2b9f7d6d8935d072c00ed8581121c1c1881b1ba0 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Fri, 20 Jan 2023 07:52:56 +1100 Subject: [PATCH 13/14] Upgrade minimum iOS deployment target to 11 as per Xcode 14 --- UICollectionViewLeftAlignedLayout.xcodeproj/project.pbxproj | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/UICollectionViewLeftAlignedLayout.xcodeproj/project.pbxproj b/UICollectionViewLeftAlignedLayout.xcodeproj/project.pbxproj index b6415b5..22dac54 100644 --- a/UICollectionViewLeftAlignedLayout.xcodeproj/project.pbxproj +++ b/UICollectionViewLeftAlignedLayout.xcodeproj/project.pbxproj @@ -193,7 +193,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.2; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; @@ -234,7 +234,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 9.2; + IPHONEOS_DEPLOYMENT_TARGET = 11.0; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; @@ -253,7 +253,6 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = UICollectionViewLeftAlignedLayout/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = com.mokagio.UICollectionViewLeftAlignedLayout; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -270,7 +269,6 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = UICollectionViewLeftAlignedLayout/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = com.mokagio.UICollectionViewLeftAlignedLayout; PRODUCT_NAME = "$(TARGET_NAME)"; From 00bc1a15988768b1f9fca6d696c96c715737da4a Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Fri, 20 Jan 2023 07:54:09 +1100 Subject: [PATCH 14/14] Upgrade project to recommended Xcode 14 settings --- .../project.pbxproj | 34 ++++++++++++++++--- ...UICollectionViewLeftAlignedLayout.xcscheme | 6 +--- 2 files changed, 30 insertions(+), 10 deletions(-) diff --git a/UICollectionViewLeftAlignedLayout.xcodeproj/project.pbxproj b/UICollectionViewLeftAlignedLayout.xcodeproj/project.pbxproj index 22dac54..5cc2bc4 100644 --- a/UICollectionViewLeftAlignedLayout.xcodeproj/project.pbxproj +++ b/UICollectionViewLeftAlignedLayout.xcodeproj/project.pbxproj @@ -109,7 +109,7 @@ CE70D2C21C5D982A00C57988 /* Project object */ = { isa = PBXProject; attributes = { - LastUpgradeCheck = 0720; + LastUpgradeCheck = 1410; TargetAttributes = { CE70D2CA1C5D982A00C57988 = { CreatedOnToolsVersion = 7.2; @@ -118,11 +118,11 @@ }; buildConfigurationList = CE70D2C51C5D982A00C57988 /* Build configuration list for PBXProject "UICollectionViewLeftAlignedLayout" */; compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; + developmentRegion = en; hasScannedForEncodings = 0; knownRegions = ( - English, en, + Base, ); mainGroup = CE70D2C11C5D982A00C57988; productRefGroup = CE70D2CC1C5D982A00C57988 /* Products */; @@ -160,17 +160,29 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; @@ -193,7 +205,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 = 12.0; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = iphoneos; @@ -207,17 +219,29 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; CLANG_CXX_LIBRARY = "libc++"; CLANG_ENABLE_MODULES = YES; CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; @@ -234,7 +258,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 = 12.0; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = iphoneos; TARGETED_DEVICE_FAMILY = "1,2"; diff --git a/UICollectionViewLeftAlignedLayout.xcodeproj/xcshareddata/xcschemes/UICollectionViewLeftAlignedLayout.xcscheme b/UICollectionViewLeftAlignedLayout.xcodeproj/xcshareddata/xcschemes/UICollectionViewLeftAlignedLayout.xcscheme index c291400..dea39a0 100644 --- a/UICollectionViewLeftAlignedLayout.xcodeproj/xcshareddata/xcschemes/UICollectionViewLeftAlignedLayout.xcscheme +++ b/UICollectionViewLeftAlignedLayout.xcodeproj/xcshareddata/xcschemes/UICollectionViewLeftAlignedLayout.xcscheme @@ -1,6 +1,6 @@ - - - -