├── .gitignore ├── .travis.yml ├── ConfettiKit.podspec ├── ConfettiKit ├── Assets │ └── .gitkeep └── Classes │ └── .gitkeep ├── Example ├── ConfettiKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── ConfettiKit-Example.xcscheme ├── ConfettiKit.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── ConfettiKit │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Confetti.imageset │ │ │ ├── Contents.json │ │ │ └── ok-4.png │ │ ├── Contents.json │ │ ├── Money.imageset │ │ │ ├── Contents.json │ │ │ └── ok-5.png │ │ ├── Party │ │ │ ├── Contents.json │ │ │ ├── Party1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ok-9.png │ │ │ ├── Party2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ok-10.png │ │ │ └── Party4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ok-9.png │ │ └── rain.imageset │ │ │ ├── Contents.json │ │ │ └── ok-10.png │ ├── Info.plist │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── ConfettiKit.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── ConfettiKit │ │ ├── ConfettiKit-Info.plist │ │ ├── ConfettiKit-dummy.m │ │ ├── ConfettiKit-prefix.pch │ │ ├── ConfettiKit-umbrella.h │ │ ├── ConfettiKit.debug.xcconfig │ │ ├── ConfettiKit.modulemap │ │ └── ConfettiKit.release.xcconfig │ │ ├── Pods-ConfettiKit_Example │ │ ├── Pods-ConfettiKit_Example-Info.plist │ │ ├── Pods-ConfettiKit_Example-acknowledgements.markdown │ │ ├── Pods-ConfettiKit_Example-acknowledgements.plist │ │ ├── Pods-ConfettiKit_Example-dummy.m │ │ ├── Pods-ConfettiKit_Example-frameworks.sh │ │ ├── Pods-ConfettiKit_Example-umbrella.h │ │ ├── Pods-ConfettiKit_Example.debug.xcconfig │ │ ├── Pods-ConfettiKit_Example.modulemap │ │ └── Pods-ConfettiKit_Example.release.xcconfig │ │ └── Pods-ConfettiKit_Tests │ │ ├── Pods-ConfettiKit_Tests-Info.plist │ │ ├── Pods-ConfettiKit_Tests-acknowledgements.markdown │ │ ├── Pods-ConfettiKit_Tests-acknowledgements.plist │ │ ├── Pods-ConfettiKit_Tests-dummy.m │ │ ├── Pods-ConfettiKit_Tests-umbrella.h │ │ ├── Pods-ConfettiKit_Tests.debug.xcconfig │ │ ├── Pods-ConfettiKit_Tests.modulemap │ │ └── Pods-ConfettiKit_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── README.md ├── Sources └── Confetti.swift ├── _Pods.xcodeproj └── _config.yml /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata/ 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 26 | # Carthage/Checkouts 27 | 28 | Carthage/Build 29 | 30 | # We recommend against adding the Pods directory to your .gitignore. However 31 | # you should judge for yourself, the pros and cons are mentioned at: 32 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 33 | # 34 | # Note: if you ignore the Pods directory, make sure to uncomment 35 | # `pod install` in .travis.yml 36 | # 37 | # Pods/ 38 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * https://www.objc.io/issues/6-build-tools/travis-ci/ 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode7.3 6 | language: objective-c 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/ConfettiKit.xcworkspace -scheme ConfettiKit-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /ConfettiKit.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint ConfettiKit.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'ConfettiKit' 11 | s.version = '1.0.0' 12 | s.summary = 'A custom framework used to add Confetti on your Swift projects.' 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | 20 | s.description = <<-DESC 21 | 'ConfettiKit is a custom framework used to add Confetti on your iOS/iPadOS projects. The kit provides variety of customisations in-order to design a confetti which matches your projects UI.' 22 | DESC 23 | 24 | s.homepage = 'https://github.com/gokulnair2001/ConfettiKit' 25 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 26 | s.license = { :type => 'MIT', :file => 'LICENSE' } 27 | s.author = { 'gokulnair2001' => 'gokulnair.2001@gmail.com' } 28 | s.source = { :git => 'https://github.com/gokulnair2001/ConfettiKit.git', :tag => s.version.to_s } 29 | s.social_media_url = 'https://github.com/gokulnair2001' 30 | 31 | s.ios.deployment_target = '12.1' 32 | s.swift_version = '5' 33 | s.source_files = 'Sources/**/*.swift' 34 | 35 | # s.resource_bundles = { 36 | # 'ConfettiKit' => ['ConfettiKit/Assets/*.png'] 37 | # } 38 | 39 | # s.public_header_files = 'Pod/Classes/**/*.h' 40 | # s.frameworks = 'UIKit', 'MapKit' 41 | # s.dependency 'AFNetworking', '~> 2.3' 42 | end 43 | -------------------------------------------------------------------------------- /ConfettiKit/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulnair2001/ConfettiKit/3d2f47923a44d0622ed73229893a71dda2066643/ConfettiKit/Assets/.gitkeep -------------------------------------------------------------------------------- /ConfettiKit/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulnair2001/ConfettiKit/3d2f47923a44d0622ed73229893a71dda2066643/ConfettiKit/Classes/.gitkeep -------------------------------------------------------------------------------- /Example/ConfettiKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 11 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 12 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 13 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 14 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 15 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 16 | C900632622DB6668FDEBFD97 /* Pods_ConfettiKit_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D056142B69B627D2743F820 /* Pods_ConfettiKit_Example.framework */; }; 17 | F068CA007950AD20A4BC08BD /* Pods_ConfettiKit_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2DC022D09A07CC3D44C7C436 /* Pods_ConfettiKit_Tests.framework */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 26 | remoteInfo = ConfettiKit; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 073E720C0BD626BEBC730C95 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 32 | 2DC022D09A07CC3D44C7C436 /* Pods_ConfettiKit_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ConfettiKit_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 33 | 3258872266A099A7C57EB5F8 /* Pods-ConfettiKit_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ConfettiKit_Tests.release.xcconfig"; path = "Target Support Files/Pods-ConfettiKit_Tests/Pods-ConfettiKit_Tests.release.xcconfig"; sourceTree = ""; }; 34 | 4D056142B69B627D2743F820 /* Pods_ConfettiKit_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ConfettiKit_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 35 | 5242994E3BB2F69E507BDC08 /* ConfettiKit.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = ConfettiKit.podspec; path = ../ConfettiKit.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 36 | 5314339DF61C6BA20257ACB4 /* Pods-ConfettiKit_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ConfettiKit_Tests.debug.xcconfig"; path = "Target Support Files/Pods-ConfettiKit_Tests/Pods-ConfettiKit_Tests.debug.xcconfig"; sourceTree = ""; }; 37 | 5607DE71049E08D6C642FEEB /* Pods-ConfettiKit_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ConfettiKit_Example.debug.xcconfig"; path = "Target Support Files/Pods-ConfettiKit_Example/Pods-ConfettiKit_Example.debug.xcconfig"; sourceTree = ""; }; 38 | 607FACD01AFB9204008FA782 /* ConfettiKit_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ConfettiKit_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 39 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 40 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 41 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 42 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 43 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 44 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 45 | 607FACE51AFB9204008FA782 /* ConfettiKit_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ConfettiKit_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 46 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 47 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 48 | 9234045A4D1237CACF453FBF /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 49 | C6BA5265013454E0A01CE2A8 /* Pods-ConfettiKit_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ConfettiKit_Example.release.xcconfig"; path = "Target Support Files/Pods-ConfettiKit_Example/Pods-ConfettiKit_Example.release.xcconfig"; sourceTree = ""; }; 50 | /* End PBXFileReference section */ 51 | 52 | /* Begin PBXFrameworksBuildPhase section */ 53 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | C900632622DB6668FDEBFD97 /* Pods_ConfettiKit_Example.framework in Frameworks */, 58 | ); 59 | runOnlyForDeploymentPostprocessing = 0; 60 | }; 61 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 62 | isa = PBXFrameworksBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | F068CA007950AD20A4BC08BD /* Pods_ConfettiKit_Tests.framework in Frameworks */, 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | /* End PBXFrameworksBuildPhase section */ 70 | 71 | /* Begin PBXGroup section */ 72 | 5B8123328052F163F862FFEF /* Frameworks */ = { 73 | isa = PBXGroup; 74 | children = ( 75 | 4D056142B69B627D2743F820 /* Pods_ConfettiKit_Example.framework */, 76 | 2DC022D09A07CC3D44C7C436 /* Pods_ConfettiKit_Tests.framework */, 77 | ); 78 | name = Frameworks; 79 | sourceTree = ""; 80 | }; 81 | 607FACC71AFB9204008FA782 = { 82 | isa = PBXGroup; 83 | children = ( 84 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 85 | 607FACD21AFB9204008FA782 /* Example for ConfettiKit */, 86 | 607FACE81AFB9204008FA782 /* Tests */, 87 | 607FACD11AFB9204008FA782 /* Products */, 88 | FF29348C6263198A135983B4 /* Pods */, 89 | 5B8123328052F163F862FFEF /* Frameworks */, 90 | ); 91 | sourceTree = ""; 92 | }; 93 | 607FACD11AFB9204008FA782 /* Products */ = { 94 | isa = PBXGroup; 95 | children = ( 96 | 607FACD01AFB9204008FA782 /* ConfettiKit_Example.app */, 97 | 607FACE51AFB9204008FA782 /* ConfettiKit_Tests.xctest */, 98 | ); 99 | name = Products; 100 | sourceTree = ""; 101 | }; 102 | 607FACD21AFB9204008FA782 /* Example for ConfettiKit */ = { 103 | isa = PBXGroup; 104 | children = ( 105 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 106 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 107 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 108 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 109 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 110 | 607FACD31AFB9204008FA782 /* Supporting Files */, 111 | ); 112 | name = "Example for ConfettiKit"; 113 | path = ConfettiKit; 114 | sourceTree = ""; 115 | }; 116 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 117 | isa = PBXGroup; 118 | children = ( 119 | 607FACD41AFB9204008FA782 /* Info.plist */, 120 | ); 121 | name = "Supporting Files"; 122 | sourceTree = ""; 123 | }; 124 | 607FACE81AFB9204008FA782 /* Tests */ = { 125 | isa = PBXGroup; 126 | children = ( 127 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 128 | 607FACE91AFB9204008FA782 /* Supporting Files */, 129 | ); 130 | path = Tests; 131 | sourceTree = ""; 132 | }; 133 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 134 | isa = PBXGroup; 135 | children = ( 136 | 607FACEA1AFB9204008FA782 /* Info.plist */, 137 | ); 138 | name = "Supporting Files"; 139 | sourceTree = ""; 140 | }; 141 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 142 | isa = PBXGroup; 143 | children = ( 144 | 5242994E3BB2F69E507BDC08 /* ConfettiKit.podspec */, 145 | 073E720C0BD626BEBC730C95 /* README.md */, 146 | 9234045A4D1237CACF453FBF /* LICENSE */, 147 | ); 148 | name = "Podspec Metadata"; 149 | sourceTree = ""; 150 | }; 151 | FF29348C6263198A135983B4 /* Pods */ = { 152 | isa = PBXGroup; 153 | children = ( 154 | 5607DE71049E08D6C642FEEB /* Pods-ConfettiKit_Example.debug.xcconfig */, 155 | C6BA5265013454E0A01CE2A8 /* Pods-ConfettiKit_Example.release.xcconfig */, 156 | 5314339DF61C6BA20257ACB4 /* Pods-ConfettiKit_Tests.debug.xcconfig */, 157 | 3258872266A099A7C57EB5F8 /* Pods-ConfettiKit_Tests.release.xcconfig */, 158 | ); 159 | path = Pods; 160 | sourceTree = ""; 161 | }; 162 | /* End PBXGroup section */ 163 | 164 | /* Begin PBXNativeTarget section */ 165 | 607FACCF1AFB9204008FA782 /* ConfettiKit_Example */ = { 166 | isa = PBXNativeTarget; 167 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "ConfettiKit_Example" */; 168 | buildPhases = ( 169 | 49D6E42770DE91E08875AF8F /* [CP] Check Pods Manifest.lock */, 170 | 607FACCC1AFB9204008FA782 /* Sources */, 171 | 607FACCD1AFB9204008FA782 /* Frameworks */, 172 | 607FACCE1AFB9204008FA782 /* Resources */, 173 | 463027CACADE3DAF665B765D /* [CP] Embed Pods Frameworks */, 174 | ); 175 | buildRules = ( 176 | ); 177 | dependencies = ( 178 | ); 179 | name = ConfettiKit_Example; 180 | productName = ConfettiKit; 181 | productReference = 607FACD01AFB9204008FA782 /* ConfettiKit_Example.app */; 182 | productType = "com.apple.product-type.application"; 183 | }; 184 | 607FACE41AFB9204008FA782 /* ConfettiKit_Tests */ = { 185 | isa = PBXNativeTarget; 186 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "ConfettiKit_Tests" */; 187 | buildPhases = ( 188 | DB564FD71DAF481E2CA67137 /* [CP] Check Pods Manifest.lock */, 189 | 607FACE11AFB9204008FA782 /* Sources */, 190 | 607FACE21AFB9204008FA782 /* Frameworks */, 191 | 607FACE31AFB9204008FA782 /* Resources */, 192 | ); 193 | buildRules = ( 194 | ); 195 | dependencies = ( 196 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 197 | ); 198 | name = ConfettiKit_Tests; 199 | productName = Tests; 200 | productReference = 607FACE51AFB9204008FA782 /* ConfettiKit_Tests.xctest */; 201 | productType = "com.apple.product-type.bundle.unit-test"; 202 | }; 203 | /* End PBXNativeTarget section */ 204 | 205 | /* Begin PBXProject section */ 206 | 607FACC81AFB9204008FA782 /* Project object */ = { 207 | isa = PBXProject; 208 | attributes = { 209 | LastSwiftUpdateCheck = 0830; 210 | LastUpgradeCheck = 0830; 211 | ORGANIZATIONNAME = CocoaPods; 212 | TargetAttributes = { 213 | 607FACCF1AFB9204008FA782 = { 214 | CreatedOnToolsVersion = 6.3.1; 215 | LastSwiftMigration = 0900; 216 | }; 217 | 607FACE41AFB9204008FA782 = { 218 | CreatedOnToolsVersion = 6.3.1; 219 | LastSwiftMigration = 0900; 220 | TestTargetID = 607FACCF1AFB9204008FA782; 221 | }; 222 | }; 223 | }; 224 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "ConfettiKit" */; 225 | compatibilityVersion = "Xcode 3.2"; 226 | developmentRegion = English; 227 | hasScannedForEncodings = 0; 228 | knownRegions = ( 229 | English, 230 | en, 231 | Base, 232 | ); 233 | mainGroup = 607FACC71AFB9204008FA782; 234 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 235 | projectDirPath = ""; 236 | projectRoot = ""; 237 | targets = ( 238 | 607FACCF1AFB9204008FA782 /* ConfettiKit_Example */, 239 | 607FACE41AFB9204008FA782 /* ConfettiKit_Tests */, 240 | ); 241 | }; 242 | /* End PBXProject section */ 243 | 244 | /* Begin PBXResourcesBuildPhase section */ 245 | 607FACCE1AFB9204008FA782 /* Resources */ = { 246 | isa = PBXResourcesBuildPhase; 247 | buildActionMask = 2147483647; 248 | files = ( 249 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 250 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 251 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 252 | ); 253 | runOnlyForDeploymentPostprocessing = 0; 254 | }; 255 | 607FACE31AFB9204008FA782 /* Resources */ = { 256 | isa = PBXResourcesBuildPhase; 257 | buildActionMask = 2147483647; 258 | files = ( 259 | ); 260 | runOnlyForDeploymentPostprocessing = 0; 261 | }; 262 | /* End PBXResourcesBuildPhase section */ 263 | 264 | /* Begin PBXShellScriptBuildPhase section */ 265 | 463027CACADE3DAF665B765D /* [CP] Embed Pods Frameworks */ = { 266 | isa = PBXShellScriptBuildPhase; 267 | buildActionMask = 2147483647; 268 | files = ( 269 | ); 270 | inputPaths = ( 271 | "${PODS_ROOT}/Target Support Files/Pods-ConfettiKit_Example/Pods-ConfettiKit_Example-frameworks.sh", 272 | "${BUILT_PRODUCTS_DIR}/ConfettiKit/ConfettiKit.framework", 273 | ); 274 | name = "[CP] Embed Pods Frameworks"; 275 | outputPaths = ( 276 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ConfettiKit.framework", 277 | ); 278 | runOnlyForDeploymentPostprocessing = 0; 279 | shellPath = /bin/sh; 280 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ConfettiKit_Example/Pods-ConfettiKit_Example-frameworks.sh\"\n"; 281 | showEnvVarsInLog = 0; 282 | }; 283 | 49D6E42770DE91E08875AF8F /* [CP] Check Pods Manifest.lock */ = { 284 | isa = PBXShellScriptBuildPhase; 285 | buildActionMask = 2147483647; 286 | files = ( 287 | ); 288 | inputFileListPaths = ( 289 | ); 290 | inputPaths = ( 291 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 292 | "${PODS_ROOT}/Manifest.lock", 293 | ); 294 | name = "[CP] Check Pods Manifest.lock"; 295 | outputFileListPaths = ( 296 | ); 297 | outputPaths = ( 298 | "$(DERIVED_FILE_DIR)/Pods-ConfettiKit_Example-checkManifestLockResult.txt", 299 | ); 300 | runOnlyForDeploymentPostprocessing = 0; 301 | shellPath = /bin/sh; 302 | 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"; 303 | showEnvVarsInLog = 0; 304 | }; 305 | DB564FD71DAF481E2CA67137 /* [CP] Check Pods Manifest.lock */ = { 306 | isa = PBXShellScriptBuildPhase; 307 | buildActionMask = 2147483647; 308 | files = ( 309 | ); 310 | inputFileListPaths = ( 311 | ); 312 | inputPaths = ( 313 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 314 | "${PODS_ROOT}/Manifest.lock", 315 | ); 316 | name = "[CP] Check Pods Manifest.lock"; 317 | outputFileListPaths = ( 318 | ); 319 | outputPaths = ( 320 | "$(DERIVED_FILE_DIR)/Pods-ConfettiKit_Tests-checkManifestLockResult.txt", 321 | ); 322 | runOnlyForDeploymentPostprocessing = 0; 323 | shellPath = /bin/sh; 324 | 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"; 325 | showEnvVarsInLog = 0; 326 | }; 327 | /* End PBXShellScriptBuildPhase section */ 328 | 329 | /* Begin PBXSourcesBuildPhase section */ 330 | 607FACCC1AFB9204008FA782 /* Sources */ = { 331 | isa = PBXSourcesBuildPhase; 332 | buildActionMask = 2147483647; 333 | files = ( 334 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 335 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 336 | ); 337 | runOnlyForDeploymentPostprocessing = 0; 338 | }; 339 | 607FACE11AFB9204008FA782 /* Sources */ = { 340 | isa = PBXSourcesBuildPhase; 341 | buildActionMask = 2147483647; 342 | files = ( 343 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 344 | ); 345 | runOnlyForDeploymentPostprocessing = 0; 346 | }; 347 | /* End PBXSourcesBuildPhase section */ 348 | 349 | /* Begin PBXTargetDependency section */ 350 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 351 | isa = PBXTargetDependency; 352 | target = 607FACCF1AFB9204008FA782 /* ConfettiKit_Example */; 353 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 354 | }; 355 | /* End PBXTargetDependency section */ 356 | 357 | /* Begin PBXVariantGroup section */ 358 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 359 | isa = PBXVariantGroup; 360 | children = ( 361 | 607FACDA1AFB9204008FA782 /* Base */, 362 | ); 363 | name = Main.storyboard; 364 | sourceTree = ""; 365 | }; 366 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 367 | isa = PBXVariantGroup; 368 | children = ( 369 | 607FACDF1AFB9204008FA782 /* Base */, 370 | ); 371 | name = LaunchScreen.xib; 372 | sourceTree = ""; 373 | }; 374 | /* End PBXVariantGroup section */ 375 | 376 | /* Begin XCBuildConfiguration section */ 377 | 607FACED1AFB9204008FA782 /* Debug */ = { 378 | isa = XCBuildConfiguration; 379 | buildSettings = { 380 | ALWAYS_SEARCH_USER_PATHS = NO; 381 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 382 | CLANG_CXX_LIBRARY = "libc++"; 383 | CLANG_ENABLE_MODULES = YES; 384 | CLANG_ENABLE_OBJC_ARC = YES; 385 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 386 | CLANG_WARN_BOOL_CONVERSION = YES; 387 | CLANG_WARN_COMMA = YES; 388 | CLANG_WARN_CONSTANT_CONVERSION = YES; 389 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 390 | CLANG_WARN_EMPTY_BODY = YES; 391 | CLANG_WARN_ENUM_CONVERSION = YES; 392 | CLANG_WARN_INFINITE_RECURSION = YES; 393 | CLANG_WARN_INT_CONVERSION = YES; 394 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 395 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 396 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 397 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 398 | CLANG_WARN_STRICT_PROTOTYPES = YES; 399 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 400 | CLANG_WARN_UNREACHABLE_CODE = YES; 401 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 402 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 403 | COPY_PHASE_STRIP = NO; 404 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 405 | ENABLE_STRICT_OBJC_MSGSEND = YES; 406 | ENABLE_TESTABILITY = YES; 407 | GCC_C_LANGUAGE_STANDARD = gnu99; 408 | GCC_DYNAMIC_NO_PIC = NO; 409 | GCC_NO_COMMON_BLOCKS = YES; 410 | GCC_OPTIMIZATION_LEVEL = 0; 411 | GCC_PREPROCESSOR_DEFINITIONS = ( 412 | "DEBUG=1", 413 | "$(inherited)", 414 | ); 415 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 416 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 417 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 418 | GCC_WARN_UNDECLARED_SELECTOR = YES; 419 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 420 | GCC_WARN_UNUSED_FUNCTION = YES; 421 | GCC_WARN_UNUSED_VARIABLE = YES; 422 | IPHONEOS_DEPLOYMENT_TARGET = 12.1; 423 | MTL_ENABLE_DEBUG_INFO = YES; 424 | ONLY_ACTIVE_ARCH = YES; 425 | SDKROOT = iphoneos; 426 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 427 | }; 428 | name = Debug; 429 | }; 430 | 607FACEE1AFB9204008FA782 /* Release */ = { 431 | isa = XCBuildConfiguration; 432 | buildSettings = { 433 | ALWAYS_SEARCH_USER_PATHS = NO; 434 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 435 | CLANG_CXX_LIBRARY = "libc++"; 436 | CLANG_ENABLE_MODULES = YES; 437 | CLANG_ENABLE_OBJC_ARC = YES; 438 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 439 | CLANG_WARN_BOOL_CONVERSION = YES; 440 | CLANG_WARN_COMMA = YES; 441 | CLANG_WARN_CONSTANT_CONVERSION = YES; 442 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 443 | CLANG_WARN_EMPTY_BODY = YES; 444 | CLANG_WARN_ENUM_CONVERSION = YES; 445 | CLANG_WARN_INFINITE_RECURSION = YES; 446 | CLANG_WARN_INT_CONVERSION = YES; 447 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 448 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 449 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 450 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 451 | CLANG_WARN_STRICT_PROTOTYPES = YES; 452 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 453 | CLANG_WARN_UNREACHABLE_CODE = YES; 454 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 455 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 456 | COPY_PHASE_STRIP = NO; 457 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 458 | ENABLE_NS_ASSERTIONS = NO; 459 | ENABLE_STRICT_OBJC_MSGSEND = YES; 460 | GCC_C_LANGUAGE_STANDARD = gnu99; 461 | GCC_NO_COMMON_BLOCKS = YES; 462 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 463 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 464 | GCC_WARN_UNDECLARED_SELECTOR = YES; 465 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 466 | GCC_WARN_UNUSED_FUNCTION = YES; 467 | GCC_WARN_UNUSED_VARIABLE = YES; 468 | IPHONEOS_DEPLOYMENT_TARGET = 12.1; 469 | MTL_ENABLE_DEBUG_INFO = NO; 470 | SDKROOT = iphoneos; 471 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 472 | VALIDATE_PRODUCT = YES; 473 | }; 474 | name = Release; 475 | }; 476 | 607FACF01AFB9204008FA782 /* Debug */ = { 477 | isa = XCBuildConfiguration; 478 | baseConfigurationReference = 5607DE71049E08D6C642FEEB /* Pods-ConfettiKit_Example.debug.xcconfig */; 479 | buildSettings = { 480 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 481 | INFOPLIST_FILE = ConfettiKit/Info.plist; 482 | IPHONEOS_DEPLOYMENT_TARGET = 12.1; 483 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 484 | MODULE_NAME = ExampleApp; 485 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 486 | PRODUCT_NAME = "$(TARGET_NAME)"; 487 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 488 | SWIFT_VERSION = 4.0; 489 | TARGETED_DEVICE_FAMILY = "1,2"; 490 | }; 491 | name = Debug; 492 | }; 493 | 607FACF11AFB9204008FA782 /* Release */ = { 494 | isa = XCBuildConfiguration; 495 | baseConfigurationReference = C6BA5265013454E0A01CE2A8 /* Pods-ConfettiKit_Example.release.xcconfig */; 496 | buildSettings = { 497 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 498 | INFOPLIST_FILE = ConfettiKit/Info.plist; 499 | IPHONEOS_DEPLOYMENT_TARGET = 12.1; 500 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 501 | MODULE_NAME = ExampleApp; 502 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 503 | PRODUCT_NAME = "$(TARGET_NAME)"; 504 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 505 | SWIFT_VERSION = 4.0; 506 | TARGETED_DEVICE_FAMILY = "1,2"; 507 | }; 508 | name = Release; 509 | }; 510 | 607FACF31AFB9204008FA782 /* Debug */ = { 511 | isa = XCBuildConfiguration; 512 | baseConfigurationReference = 5314339DF61C6BA20257ACB4 /* Pods-ConfettiKit_Tests.debug.xcconfig */; 513 | buildSettings = { 514 | FRAMEWORK_SEARCH_PATHS = ( 515 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 516 | "$(inherited)", 517 | ); 518 | GCC_PREPROCESSOR_DEFINITIONS = ( 519 | "DEBUG=1", 520 | "$(inherited)", 521 | ); 522 | INFOPLIST_FILE = Tests/Info.plist; 523 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 524 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 525 | PRODUCT_NAME = "$(TARGET_NAME)"; 526 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 527 | SWIFT_VERSION = 4.0; 528 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ConfettiKit_Example.app/ConfettiKit_Example"; 529 | }; 530 | name = Debug; 531 | }; 532 | 607FACF41AFB9204008FA782 /* Release */ = { 533 | isa = XCBuildConfiguration; 534 | baseConfigurationReference = 3258872266A099A7C57EB5F8 /* Pods-ConfettiKit_Tests.release.xcconfig */; 535 | buildSettings = { 536 | FRAMEWORK_SEARCH_PATHS = ( 537 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 538 | "$(inherited)", 539 | ); 540 | INFOPLIST_FILE = Tests/Info.plist; 541 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 542 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 543 | PRODUCT_NAME = "$(TARGET_NAME)"; 544 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 545 | SWIFT_VERSION = 4.0; 546 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ConfettiKit_Example.app/ConfettiKit_Example"; 547 | }; 548 | name = Release; 549 | }; 550 | /* End XCBuildConfiguration section */ 551 | 552 | /* Begin XCConfigurationList section */ 553 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "ConfettiKit" */ = { 554 | isa = XCConfigurationList; 555 | buildConfigurations = ( 556 | 607FACED1AFB9204008FA782 /* Debug */, 557 | 607FACEE1AFB9204008FA782 /* Release */, 558 | ); 559 | defaultConfigurationIsVisible = 0; 560 | defaultConfigurationName = Release; 561 | }; 562 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "ConfettiKit_Example" */ = { 563 | isa = XCConfigurationList; 564 | buildConfigurations = ( 565 | 607FACF01AFB9204008FA782 /* Debug */, 566 | 607FACF11AFB9204008FA782 /* Release */, 567 | ); 568 | defaultConfigurationIsVisible = 0; 569 | defaultConfigurationName = Release; 570 | }; 571 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "ConfettiKit_Tests" */ = { 572 | isa = XCConfigurationList; 573 | buildConfigurations = ( 574 | 607FACF31AFB9204008FA782 /* Debug */, 575 | 607FACF41AFB9204008FA782 /* Release */, 576 | ); 577 | defaultConfigurationIsVisible = 0; 578 | defaultConfigurationName = Release; 579 | }; 580 | /* End XCConfigurationList section */ 581 | }; 582 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 583 | } 584 | -------------------------------------------------------------------------------- /Example/ConfettiKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/ConfettiKit.xcodeproj/xcshareddata/xcschemes/ConfettiKit-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 45 | 46 | 48 | 54 | 55 | 56 | 57 | 58 | 64 | 65 | 66 | 67 | 68 | 69 | 80 | 82 | 88 | 89 | 90 | 91 | 92 | 93 | 99 | 101 | 107 | 108 | 109 | 110 | 112 | 113 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /Example/ConfettiKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/ConfettiKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/ConfettiKit/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // ConfettiKit 4 | // 5 | // Created by gokulnair2001 on 07/10/2021. 6 | // Copyright (c) 2021 gokulnair2001. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example/ConfettiKit/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /Example/ConfettiKit/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | -------------------------------------------------------------------------------- /Example/ConfettiKit/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ios-marketing", 45 | "size" : "1024x1024", 46 | "scale" : "1x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /Example/ConfettiKit/Images.xcassets/Confetti.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ok-4.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Example/ConfettiKit/Images.xcassets/Confetti.imageset/ok-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulnair2001/ConfettiKit/3d2f47923a44d0622ed73229893a71dda2066643/Example/ConfettiKit/Images.xcassets/Confetti.imageset/ok-4.png -------------------------------------------------------------------------------- /Example/ConfettiKit/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Example/ConfettiKit/Images.xcassets/Money.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ok-5.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Example/ConfettiKit/Images.xcassets/Money.imageset/ok-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulnair2001/ConfettiKit/3d2f47923a44d0622ed73229893a71dda2066643/Example/ConfettiKit/Images.xcassets/Money.imageset/ok-5.png -------------------------------------------------------------------------------- /Example/ConfettiKit/Images.xcassets/Party/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Example/ConfettiKit/Images.xcassets/Party/Party1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ok-9.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Example/ConfettiKit/Images.xcassets/Party/Party1.imageset/ok-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulnair2001/ConfettiKit/3d2f47923a44d0622ed73229893a71dda2066643/Example/ConfettiKit/Images.xcassets/Party/Party1.imageset/ok-9.png -------------------------------------------------------------------------------- /Example/ConfettiKit/Images.xcassets/Party/Party2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ok-10.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Example/ConfettiKit/Images.xcassets/Party/Party2.imageset/ok-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulnair2001/ConfettiKit/3d2f47923a44d0622ed73229893a71dda2066643/Example/ConfettiKit/Images.xcassets/Party/Party2.imageset/ok-10.png -------------------------------------------------------------------------------- /Example/ConfettiKit/Images.xcassets/Party/Party4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ok-9.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Example/ConfettiKit/Images.xcassets/Party/Party4.imageset/ok-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulnair2001/ConfettiKit/3d2f47923a44d0622ed73229893a71dda2066643/Example/ConfettiKit/Images.xcassets/Party/Party4.imageset/ok-9.png -------------------------------------------------------------------------------- /Example/ConfettiKit/Images.xcassets/rain.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "ok-10.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | }, 21 | "properties" : { 22 | "template-rendering-intent" : "template" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Example/ConfettiKit/Images.xcassets/rain.imageset/ok-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokulnair2001/ConfettiKit/3d2f47923a44d0622ed73229893a71dda2066643/Example/ConfettiKit/Images.xcassets/rain.imageset/ok-10.png -------------------------------------------------------------------------------- /Example/ConfettiKit/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /Example/ConfettiKit/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // ConfettiKit 4 | // 5 | // Created by gokulnair2001 on 07/10/2021. 6 | // Copyright (c) 2021 gokulnair2001. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import ConfettiKit 11 | 12 | class ViewController: UIViewController { 13 | 14 | @IBOutlet weak var tableView: UITableView! 15 | 16 | private var confettiTypes = ["Popper","Money","Party","Rain"] 17 | override func viewDidLoad() { 18 | super.viewDidLoad() 19 | 20 | } 21 | } 22 | 23 | extension ViewController: UITableViewDelegate, UITableViewDataSource { 24 | func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 25 | return 4 26 | } 27 | 28 | func numberOfSections(in tableView: UITableView) -> Int { 29 | return 1 30 | } 31 | 32 | func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 33 | let cell = tableView.dequeueReusableCell(withIdentifier: "cell")! 34 | cell.textLabel?.text = confettiTypes[indexPath.row] 35 | cell.selectionStyle = .none 36 | 37 | return cell 38 | } 39 | 40 | func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? { 41 | return "" 42 | } 43 | 44 | func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat { 45 | return 50 46 | } 47 | 48 | func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { 49 | let cellNo = Int("\(indexPath.section)\(indexPath.row)") 50 | performAction(cellNo!) 51 | } 52 | 53 | func performAction(_ cellNo: Int) { 54 | switch cellNo { 55 | case 0: 56 | Confetti.generateConfetti(ConfettiPosition: .top, ConfettiCells: 4, ConfettiImage: ["Confetti","Confetti","Confetti","Confetti"], Colours: [.systemRed, .systemTeal, .systemYellow, .systemGreen], Scale: 0.05, BirthRate: 4, LifeTime: 14, Velocity: CGFloat(Int.random(in: 100...400)), Spin: 3.5, EmissionLongitude: -CGFloat(Double.pi),EmissionRange: 0.5, View: view) 57 | 58 | case 01: 59 | Confetti.generateConfetti(ConfettiPosition: .topRight, ConfettiCells: 4, ConfettiImage: ["Money","Money","Money","Money"], Colours: [.systemRed, .systemTeal, .systemYellow, .systemGreen], Scale: 0.05, BirthRate: 3, LifeTime: 14, Velocity: CGFloat(Int.random(in: 100...400)), Spin: 1, EmissionLongitude: -CGFloat(Double.pi),EmissionRange: 0.5, View: view) 60 | 61 | case 02: 62 | Confetti.generateConfetti(ConfettiPosition: .top, ConfettiCells: 4, ConfettiImage: ["Party1","Party2","Party1","Party4"], Colours: [.systemRed, .systemTeal, .systemYellow, .systemGreen], Scale: 0.05, BirthRate: 4, LifeTime: 14, Velocity: CGFloat(Int.random(in: 100...400)), Spin: 3.5, EmissionLongitude: -CGFloat(Double.pi),EmissionRange: 0.5, View: view) 63 | case 03: 64 | Confetti.generateConfetti(ConfettiPosition: .topLeft, ConfettiCells: 3, ConfettiImage: ["rain","rain","rain"], Colours: [.systemBlue, .systemGray, .systemTeal], Scale: 0.05, BirthRate: 4, LifeTime: 14, Velocity: CGFloat(Int.random(in: 100...400)), Spin: 0, EmissionLongitude: -CGFloat(Double.pi), EmissionRange: 0.4, View: view) 65 | default: 66 | break 67 | } 68 | DispatchQueue.main.asyncAfter(deadline: .now() + 5) { 69 | Confetti.stopConfetti() 70 | } 71 | } 72 | } 73 | 74 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | platform :ios, '9.0' 4 | 5 | target 'ConfettiKit_Example' do 6 | pod 'ConfettiKit', :path => '../' 7 | 8 | target 'ConfettiKit_Tests' do 9 | inherit! :search_paths 10 | 11 | 12 | end 13 | end 14 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - ConfettiKit (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - ConfettiKit (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | ConfettiKit: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | ConfettiKit: 5f52799d5e87bf79c12861e9bed2081043ec7fb1 13 | 14 | PODFILE CHECKSUM: 4596e6dcf734fbd960e0111c103f56034f50e18f 15 | 16 | COCOAPODS: 1.10.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/ConfettiKit.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ConfettiKit", 3 | "version": "0.1.0", 4 | "summary": "A short description of ConfettiKit.", 5 | "description": "TODO: Add long description of the pod here.", 6 | "homepage": "https://github.com/gokulnair2001/ConfettiKit", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "gokulnair2001": "gokulnair.2001@gmail.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/gokulnair2001/ConfettiKit.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "9.0" 20 | }, 21 | "source_files": "ConfettiKit/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - ConfettiKit (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - ConfettiKit (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | ConfettiKit: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | ConfettiKit: 5f52799d5e87bf79c12861e9bed2081043ec7fb1 13 | 14 | PODFILE CHECKSUM: 4596e6dcf734fbd960e0111c103f56034f50e18f 15 | 16 | COCOAPODS: 1.10.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0768ADCE716E2D95F4EFB2CCCF7609C6 /* Pods-ConfettiKit_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FEF06EB72ABE353EB22338583667DEC /* Pods-ConfettiKit_Tests-dummy.m */; }; 11 | 0EEDB1C53E9C777FA8DDA08C4192BA9A /* ConfettiKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E048BB9BF6C9BFB8B93D8570C0867E28 /* ConfettiKit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 12 | 22403BC1F342D9D978714E4170091C91 /* ConfettiKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE38615CF7F3A1CB837A4DBB6540DF47 /* ConfettiKit-dummy.m */; }; 13 | 2380A1E9EDB341374D476220990E4268 /* Pods-ConfettiKit_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 712F06D97EC687F658BF00C392468F6C /* Pods-ConfettiKit_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | 23CFE08D64ED6B7522E4B14C33A6C356 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; 15 | 4DB0CB795BA4EB3061F49786426DE0DD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; 16 | 55CF11692699E77500682883 /* Confetti.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55CF11682699E77500682883 /* Confetti.swift */; }; 17 | BDABCAC2794DEFB66C89894E7797EF35 /* Pods-ConfettiKit_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EAB256716768556D2FD4CB030D5FA01E /* Pods-ConfettiKit_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 18 | C03C34736E47A86CDF23EB1A2E14924B /* Pods-ConfettiKit_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A0807846A52F97018C55DFB6AF5F2672 /* Pods-ConfettiKit_Example-dummy.m */; }; 19 | C6C18ACC8C81BFE4B9F9C8112873F69C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */; }; 20 | /* End PBXBuildFile section */ 21 | 22 | /* Begin PBXContainerItemProxy section */ 23 | BF9CE4DD77E3ECD92E07775CB81351CB /* PBXContainerItemProxy */ = { 24 | isa = PBXContainerItemProxy; 25 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 26 | proxyType = 1; 27 | remoteGlobalIDString = 502C5181DA33141A10C83B494AD18E48; 28 | remoteInfo = "Pods-ConfettiKit_Example"; 29 | }; 30 | F9550778D40B346BB169364FF7DCE346 /* PBXContainerItemProxy */ = { 31 | isa = PBXContainerItemProxy; 32 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 33 | proxyType = 1; 34 | remoteGlobalIDString = B3610EA005A655E470773C541BA909ED; 35 | remoteInfo = ConfettiKit; 36 | }; 37 | /* End PBXContainerItemProxy section */ 38 | 39 | /* Begin PBXFileReference section */ 40 | 0010882FAA837A06A195D1C45CFF596C /* Pods-ConfettiKit_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ConfettiKit_Tests.modulemap"; sourceTree = ""; }; 41 | 0044A745A0D6193CA351AD3DE6858CAF /* ConfettiKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ConfettiKit-prefix.pch"; sourceTree = ""; }; 42 | 02F7120B148DC6951188F015F85E6490 /* Pods-ConfettiKit_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ConfettiKit_Tests-Info.plist"; sourceTree = ""; }; 43 | 0B665133DD3A3E0ACAEE5603266206A3 /* Pods-ConfettiKit_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ConfettiKit_Example.debug.xcconfig"; sourceTree = ""; }; 44 | 245831C130F84C94EFF07C0CD47A6969 /* Pods-ConfettiKit_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ConfettiKit_Example.modulemap"; sourceTree = ""; }; 45 | 3D45FED365F46CB74C34E94F2DEDFD08 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; 46 | 3FEF06EB72ABE353EB22338583667DEC /* Pods-ConfettiKit_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ConfettiKit_Tests-dummy.m"; sourceTree = ""; }; 47 | 4EFFA1B09A4934F30047084FCC3F9E77 /* Pods-ConfettiKit_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ConfettiKit_Tests-acknowledgements.markdown"; sourceTree = ""; }; 48 | 55CF11682699E77500682883 /* Confetti.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Confetti.swift; sourceTree = ""; }; 49 | 5C91AF28CEFD86D2D709595D7F96FB79 /* Pods-ConfettiKit_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ConfettiKit_Tests.release.xcconfig"; sourceTree = ""; }; 50 | 5D571B9D17DAF2B44940A5C84413FD9A /* Pods_ConfettiKit_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ConfettiKit_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 51 | 62AC27197B0634038BD0E504CAB278A8 /* ConfettiKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ConfettiKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 52 | 6D7473992A145FE704F5823457C057F0 /* ConfettiKit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ConfettiKit-Info.plist"; sourceTree = ""; }; 53 | 7000FAD03380AFB432FA3D37FC697116 /* Pods_ConfettiKit_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ConfettiKit_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 54 | 712F06D97EC687F658BF00C392468F6C /* Pods-ConfettiKit_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ConfettiKit_Tests-umbrella.h"; sourceTree = ""; }; 55 | 713E0638FA2AFD95A70C0767CB8AB6A3 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 56 | 73010CC983E3809BECEE5348DA1BB8C6 /* 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; }; 57 | 748CADF2BF369978592B10EC02116705 /* ConfettiKit.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ConfettiKit.release.xcconfig; sourceTree = ""; }; 58 | 7AB2D97831971FB9347179DCE1140CA3 /* ConfettiKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ConfettiKit.modulemap; sourceTree = ""; }; 59 | 7D2827D6F4048F212D955D3925EB5C01 /* Pods-ConfettiKit_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ConfettiKit_Tests.debug.xcconfig"; sourceTree = ""; }; 60 | 7E18984C2DB381F006A54DE42956AA07 /* ConfettiKit.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ConfettiKit.debug.xcconfig; sourceTree = ""; }; 61 | 82F7577161C368FFCD55376E03DE8ADF /* ConfettiKit.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = ConfettiKit.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 62 | 8798E4F09C4DB24E46BE2515F78ED06C /* Pods-ConfettiKit_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ConfettiKit_Example-Info.plist"; sourceTree = ""; }; 63 | 91583F1DE73D3E65A2A00AF5D972AFE0 /* Pods-ConfettiKit_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-ConfettiKit_Example-frameworks.sh"; sourceTree = ""; }; 64 | 9466D2B89D27DC7A42AE6FC9EF773DEA /* Pods-ConfettiKit_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ConfettiKit_Tests-acknowledgements.plist"; sourceTree = ""; }; 65 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 66 | A0807846A52F97018C55DFB6AF5F2672 /* Pods-ConfettiKit_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ConfettiKit_Example-dummy.m"; sourceTree = ""; }; 67 | A262E4F022307AD11BA5503AD3C50E89 /* Pods-ConfettiKit_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ConfettiKit_Example-acknowledgements.markdown"; sourceTree = ""; }; 68 | AE38615CF7F3A1CB837A4DBB6540DF47 /* ConfettiKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ConfettiKit-dummy.m"; sourceTree = ""; }; 69 | D6872DE0C3FC9C0A7536DC078C0DE660 /* Pods-ConfettiKit_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ConfettiKit_Example.release.xcconfig"; sourceTree = ""; }; 70 | E048BB9BF6C9BFB8B93D8570C0867E28 /* ConfettiKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ConfettiKit-umbrella.h"; sourceTree = ""; }; 71 | EAB256716768556D2FD4CB030D5FA01E /* Pods-ConfettiKit_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ConfettiKit_Example-umbrella.h"; sourceTree = ""; }; 72 | EB51D3F48DD01F556F8AFDC4AADC2054 /* Pods-ConfettiKit_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ConfettiKit_Example-acknowledgements.plist"; sourceTree = ""; }; 73 | /* End PBXFileReference section */ 74 | 75 | /* Begin PBXFrameworksBuildPhase section */ 76 | 753FD620D3A542741EF3D0F8D97CF9BC /* Frameworks */ = { 77 | isa = PBXFrameworksBuildPhase; 78 | buildActionMask = 2147483647; 79 | files = ( 80 | 23CFE08D64ED6B7522E4B14C33A6C356 /* Foundation.framework in Frameworks */, 81 | ); 82 | runOnlyForDeploymentPostprocessing = 0; 83 | }; 84 | B003D325FC719835F8589370FE2AD38E /* Frameworks */ = { 85 | isa = PBXFrameworksBuildPhase; 86 | buildActionMask = 2147483647; 87 | files = ( 88 | C6C18ACC8C81BFE4B9F9C8112873F69C /* Foundation.framework in Frameworks */, 89 | ); 90 | runOnlyForDeploymentPostprocessing = 0; 91 | }; 92 | DA4BC97F29221CA01D4D2C11D24A71B9 /* Frameworks */ = { 93 | isa = PBXFrameworksBuildPhase; 94 | buildActionMask = 2147483647; 95 | files = ( 96 | 4DB0CB795BA4EB3061F49786426DE0DD /* Foundation.framework in Frameworks */, 97 | ); 98 | runOnlyForDeploymentPostprocessing = 0; 99 | }; 100 | /* End PBXFrameworksBuildPhase section */ 101 | 102 | /* Begin PBXGroup section */ 103 | 0D458AC7C90276DE5E21693B0DD19FB8 /* Support Files */ = { 104 | isa = PBXGroup; 105 | children = ( 106 | 7AB2D97831971FB9347179DCE1140CA3 /* ConfettiKit.modulemap */, 107 | AE38615CF7F3A1CB837A4DBB6540DF47 /* ConfettiKit-dummy.m */, 108 | 6D7473992A145FE704F5823457C057F0 /* ConfettiKit-Info.plist */, 109 | 0044A745A0D6193CA351AD3DE6858CAF /* ConfettiKit-prefix.pch */, 110 | E048BB9BF6C9BFB8B93D8570C0867E28 /* ConfettiKit-umbrella.h */, 111 | 7E18984C2DB381F006A54DE42956AA07 /* ConfettiKit.debug.xcconfig */, 112 | 748CADF2BF369978592B10EC02116705 /* ConfettiKit.release.xcconfig */, 113 | ); 114 | name = "Support Files"; 115 | path = "Example/Pods/Target Support Files/ConfettiKit"; 116 | sourceTree = ""; 117 | }; 118 | 21303856543B3C96C1F5A9FCBC4093DB /* Development Pods */ = { 119 | isa = PBXGroup; 120 | children = ( 121 | 7F1986D4BF3591EC1313D0B210AFAF3A /* ConfettiKit */, 122 | ); 123 | name = "Development Pods"; 124 | sourceTree = ""; 125 | }; 126 | 4E42A7349D6E41E37CD8A4EA5F1AC7C5 /* Pod */ = { 127 | isa = PBXGroup; 128 | children = ( 129 | 82F7577161C368FFCD55376E03DE8ADF /* ConfettiKit.podspec */, 130 | 3D45FED365F46CB74C34E94F2DEDFD08 /* LICENSE */, 131 | 713E0638FA2AFD95A70C0767CB8AB6A3 /* README.md */, 132 | ); 133 | name = Pod; 134 | sourceTree = ""; 135 | }; 136 | 55CCD1CC269C3203007B1344 /* Sources */ = { 137 | isa = PBXGroup; 138 | children = ( 139 | 55CF11682699E77500682883 /* Confetti.swift */, 140 | ); 141 | path = Sources; 142 | sourceTree = ""; 143 | }; 144 | 578452D2E740E91742655AC8F1636D1F /* iOS */ = { 145 | isa = PBXGroup; 146 | children = ( 147 | 73010CC983E3809BECEE5348DA1BB8C6 /* Foundation.framework */, 148 | ); 149 | name = iOS; 150 | sourceTree = ""; 151 | }; 152 | 7F1986D4BF3591EC1313D0B210AFAF3A /* ConfettiKit */ = { 153 | isa = PBXGroup; 154 | children = ( 155 | 55CCD1CC269C3203007B1344 /* Sources */, 156 | 4E42A7349D6E41E37CD8A4EA5F1AC7C5 /* Pod */, 157 | 0D458AC7C90276DE5E21693B0DD19FB8 /* Support Files */, 158 | ); 159 | name = ConfettiKit; 160 | path = ../..; 161 | sourceTree = ""; 162 | }; 163 | 9F034101E5339F9074DA35C7D950C905 /* Products */ = { 164 | isa = PBXGroup; 165 | children = ( 166 | 62AC27197B0634038BD0E504CAB278A8 /* ConfettiKit.framework */, 167 | 7000FAD03380AFB432FA3D37FC697116 /* Pods_ConfettiKit_Example.framework */, 168 | 5D571B9D17DAF2B44940A5C84413FD9A /* Pods_ConfettiKit_Tests.framework */, 169 | ); 170 | name = Products; 171 | sourceTree = ""; 172 | }; 173 | A082F1C1025F2521DF17B58E9E80909A /* Targets Support Files */ = { 174 | isa = PBXGroup; 175 | children = ( 176 | DE9F1AF7D16295D3ABFF8F34F7703575 /* Pods-ConfettiKit_Example */, 177 | A7E9CFDF2860A04DF2050BFCDBE1FA2F /* Pods-ConfettiKit_Tests */, 178 | ); 179 | name = "Targets Support Files"; 180 | sourceTree = ""; 181 | }; 182 | A7E9CFDF2860A04DF2050BFCDBE1FA2F /* Pods-ConfettiKit_Tests */ = { 183 | isa = PBXGroup; 184 | children = ( 185 | 0010882FAA837A06A195D1C45CFF596C /* Pods-ConfettiKit_Tests.modulemap */, 186 | 4EFFA1B09A4934F30047084FCC3F9E77 /* Pods-ConfettiKit_Tests-acknowledgements.markdown */, 187 | 9466D2B89D27DC7A42AE6FC9EF773DEA /* Pods-ConfettiKit_Tests-acknowledgements.plist */, 188 | 3FEF06EB72ABE353EB22338583667DEC /* Pods-ConfettiKit_Tests-dummy.m */, 189 | 02F7120B148DC6951188F015F85E6490 /* Pods-ConfettiKit_Tests-Info.plist */, 190 | 712F06D97EC687F658BF00C392468F6C /* Pods-ConfettiKit_Tests-umbrella.h */, 191 | 7D2827D6F4048F212D955D3925EB5C01 /* Pods-ConfettiKit_Tests.debug.xcconfig */, 192 | 5C91AF28CEFD86D2D709595D7F96FB79 /* Pods-ConfettiKit_Tests.release.xcconfig */, 193 | ); 194 | name = "Pods-ConfettiKit_Tests"; 195 | path = "Target Support Files/Pods-ConfettiKit_Tests"; 196 | sourceTree = ""; 197 | }; 198 | CF1408CF629C7361332E53B88F7BD30C = { 199 | isa = PBXGroup; 200 | children = ( 201 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 202 | 21303856543B3C96C1F5A9FCBC4093DB /* Development Pods */, 203 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, 204 | 9F034101E5339F9074DA35C7D950C905 /* Products */, 205 | A082F1C1025F2521DF17B58E9E80909A /* Targets Support Files */, 206 | ); 207 | sourceTree = ""; 208 | }; 209 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { 210 | isa = PBXGroup; 211 | children = ( 212 | 578452D2E740E91742655AC8F1636D1F /* iOS */, 213 | ); 214 | name = Frameworks; 215 | sourceTree = ""; 216 | }; 217 | DE9F1AF7D16295D3ABFF8F34F7703575 /* Pods-ConfettiKit_Example */ = { 218 | isa = PBXGroup; 219 | children = ( 220 | 245831C130F84C94EFF07C0CD47A6969 /* Pods-ConfettiKit_Example.modulemap */, 221 | A262E4F022307AD11BA5503AD3C50E89 /* Pods-ConfettiKit_Example-acknowledgements.markdown */, 222 | EB51D3F48DD01F556F8AFDC4AADC2054 /* Pods-ConfettiKit_Example-acknowledgements.plist */, 223 | A0807846A52F97018C55DFB6AF5F2672 /* Pods-ConfettiKit_Example-dummy.m */, 224 | 91583F1DE73D3E65A2A00AF5D972AFE0 /* Pods-ConfettiKit_Example-frameworks.sh */, 225 | 8798E4F09C4DB24E46BE2515F78ED06C /* Pods-ConfettiKit_Example-Info.plist */, 226 | EAB256716768556D2FD4CB030D5FA01E /* Pods-ConfettiKit_Example-umbrella.h */, 227 | 0B665133DD3A3E0ACAEE5603266206A3 /* Pods-ConfettiKit_Example.debug.xcconfig */, 228 | D6872DE0C3FC9C0A7536DC078C0DE660 /* Pods-ConfettiKit_Example.release.xcconfig */, 229 | ); 230 | name = "Pods-ConfettiKit_Example"; 231 | path = "Target Support Files/Pods-ConfettiKit_Example"; 232 | sourceTree = ""; 233 | }; 234 | /* End PBXGroup section */ 235 | 236 | /* Begin PBXHeadersBuildPhase section */ 237 | 06B8CAAA87A534D3A6D3725E16BCABAF /* Headers */ = { 238 | isa = PBXHeadersBuildPhase; 239 | buildActionMask = 2147483647; 240 | files = ( 241 | 0EEDB1C53E9C777FA8DDA08C4192BA9A /* ConfettiKit-umbrella.h in Headers */, 242 | ); 243 | runOnlyForDeploymentPostprocessing = 0; 244 | }; 245 | B64A64F2E7D62D6E842E87105774E70E /* Headers */ = { 246 | isa = PBXHeadersBuildPhase; 247 | buildActionMask = 2147483647; 248 | files = ( 249 | BDABCAC2794DEFB66C89894E7797EF35 /* Pods-ConfettiKit_Example-umbrella.h in Headers */, 250 | ); 251 | runOnlyForDeploymentPostprocessing = 0; 252 | }; 253 | CFCD1726C1346AF12337DCF9C4347286 /* Headers */ = { 254 | isa = PBXHeadersBuildPhase; 255 | buildActionMask = 2147483647; 256 | files = ( 257 | 2380A1E9EDB341374D476220990E4268 /* Pods-ConfettiKit_Tests-umbrella.h in Headers */, 258 | ); 259 | runOnlyForDeploymentPostprocessing = 0; 260 | }; 261 | /* End PBXHeadersBuildPhase section */ 262 | 263 | /* Begin PBXNativeTarget section */ 264 | 36AF51AA462AFD3E3BC6E908BF224F73 /* Pods-ConfettiKit_Tests */ = { 265 | isa = PBXNativeTarget; 266 | buildConfigurationList = 0476CFCD0F5DEA0C025F46F90BC3ABED /* Build configuration list for PBXNativeTarget "Pods-ConfettiKit_Tests" */; 267 | buildPhases = ( 268 | CFCD1726C1346AF12337DCF9C4347286 /* Headers */, 269 | 2E1099919611B86323FACBE0336F26CA /* Sources */, 270 | DA4BC97F29221CA01D4D2C11D24A71B9 /* Frameworks */, 271 | 5D67DF1B948EABEF61855716DE7AEE34 /* Resources */, 272 | ); 273 | buildRules = ( 274 | ); 275 | dependencies = ( 276 | 1336AC2463358E35CDA843CEC6D469A2 /* PBXTargetDependency */, 277 | ); 278 | name = "Pods-ConfettiKit_Tests"; 279 | productName = "Pods-ConfettiKit_Tests"; 280 | productReference = 5D571B9D17DAF2B44940A5C84413FD9A /* Pods_ConfettiKit_Tests.framework */; 281 | productType = "com.apple.product-type.framework"; 282 | }; 283 | 502C5181DA33141A10C83B494AD18E48 /* Pods-ConfettiKit_Example */ = { 284 | isa = PBXNativeTarget; 285 | buildConfigurationList = 66D7D7699D405F9C416123E17AE801B5 /* Build configuration list for PBXNativeTarget "Pods-ConfettiKit_Example" */; 286 | buildPhases = ( 287 | B64A64F2E7D62D6E842E87105774E70E /* Headers */, 288 | A7FC87A192E0400284424CD902226063 /* Sources */, 289 | B003D325FC719835F8589370FE2AD38E /* Frameworks */, 290 | 29B6D8D19BFCC2F0BAEBE973A30324D8 /* Resources */, 291 | ); 292 | buildRules = ( 293 | ); 294 | dependencies = ( 295 | DC632547B789A0F4DFBB81E750C0082A /* PBXTargetDependency */, 296 | ); 297 | name = "Pods-ConfettiKit_Example"; 298 | productName = "Pods-ConfettiKit_Example"; 299 | productReference = 7000FAD03380AFB432FA3D37FC697116 /* Pods_ConfettiKit_Example.framework */; 300 | productType = "com.apple.product-type.framework"; 301 | }; 302 | B3610EA005A655E470773C541BA909ED /* ConfettiKit */ = { 303 | isa = PBXNativeTarget; 304 | buildConfigurationList = 901B3FC3BF5A7EC740073A6D6B098344 /* Build configuration list for PBXNativeTarget "ConfettiKit" */; 305 | buildPhases = ( 306 | 06B8CAAA87A534D3A6D3725E16BCABAF /* Headers */, 307 | D842496E847C0C28300CD266931D61B0 /* Sources */, 308 | 753FD620D3A542741EF3D0F8D97CF9BC /* Frameworks */, 309 | 4BAD4BEA06623E5335E0617837AAAE5B /* Resources */, 310 | ); 311 | buildRules = ( 312 | ); 313 | dependencies = ( 314 | ); 315 | name = ConfettiKit; 316 | productName = ConfettiKit; 317 | productReference = 62AC27197B0634038BD0E504CAB278A8 /* ConfettiKit.framework */; 318 | productType = "com.apple.product-type.framework"; 319 | }; 320 | /* End PBXNativeTarget section */ 321 | 322 | /* Begin PBXProject section */ 323 | BFDFE7DC352907FC980B868725387E98 /* Project object */ = { 324 | isa = PBXProject; 325 | attributes = { 326 | LastSwiftUpdateCheck = 1100; 327 | LastUpgradeCheck = 1100; 328 | TargetAttributes = { 329 | B3610EA005A655E470773C541BA909ED = { 330 | LastSwiftMigration = 1250; 331 | }; 332 | }; 333 | }; 334 | buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; 335 | compatibilityVersion = "Xcode 3.2"; 336 | developmentRegion = en; 337 | hasScannedForEncodings = 0; 338 | knownRegions = ( 339 | en, 340 | Base, 341 | ); 342 | mainGroup = CF1408CF629C7361332E53B88F7BD30C; 343 | productRefGroup = 9F034101E5339F9074DA35C7D950C905 /* Products */; 344 | projectDirPath = ""; 345 | projectRoot = ""; 346 | targets = ( 347 | B3610EA005A655E470773C541BA909ED /* ConfettiKit */, 348 | 502C5181DA33141A10C83B494AD18E48 /* Pods-ConfettiKit_Example */, 349 | 36AF51AA462AFD3E3BC6E908BF224F73 /* Pods-ConfettiKit_Tests */, 350 | ); 351 | }; 352 | /* End PBXProject section */ 353 | 354 | /* Begin PBXResourcesBuildPhase section */ 355 | 29B6D8D19BFCC2F0BAEBE973A30324D8 /* Resources */ = { 356 | isa = PBXResourcesBuildPhase; 357 | buildActionMask = 2147483647; 358 | files = ( 359 | ); 360 | runOnlyForDeploymentPostprocessing = 0; 361 | }; 362 | 4BAD4BEA06623E5335E0617837AAAE5B /* Resources */ = { 363 | isa = PBXResourcesBuildPhase; 364 | buildActionMask = 2147483647; 365 | files = ( 366 | ); 367 | runOnlyForDeploymentPostprocessing = 0; 368 | }; 369 | 5D67DF1B948EABEF61855716DE7AEE34 /* Resources */ = { 370 | isa = PBXResourcesBuildPhase; 371 | buildActionMask = 2147483647; 372 | files = ( 373 | ); 374 | runOnlyForDeploymentPostprocessing = 0; 375 | }; 376 | /* End PBXResourcesBuildPhase section */ 377 | 378 | /* Begin PBXSourcesBuildPhase section */ 379 | 2E1099919611B86323FACBE0336F26CA /* Sources */ = { 380 | isa = PBXSourcesBuildPhase; 381 | buildActionMask = 2147483647; 382 | files = ( 383 | 0768ADCE716E2D95F4EFB2CCCF7609C6 /* Pods-ConfettiKit_Tests-dummy.m in Sources */, 384 | ); 385 | runOnlyForDeploymentPostprocessing = 0; 386 | }; 387 | A7FC87A192E0400284424CD902226063 /* Sources */ = { 388 | isa = PBXSourcesBuildPhase; 389 | buildActionMask = 2147483647; 390 | files = ( 391 | C03C34736E47A86CDF23EB1A2E14924B /* Pods-ConfettiKit_Example-dummy.m in Sources */, 392 | ); 393 | runOnlyForDeploymentPostprocessing = 0; 394 | }; 395 | D842496E847C0C28300CD266931D61B0 /* Sources */ = { 396 | isa = PBXSourcesBuildPhase; 397 | buildActionMask = 2147483647; 398 | files = ( 399 | 22403BC1F342D9D978714E4170091C91 /* ConfettiKit-dummy.m in Sources */, 400 | 55CF11692699E77500682883 /* Confetti.swift in Sources */, 401 | ); 402 | runOnlyForDeploymentPostprocessing = 0; 403 | }; 404 | /* End PBXSourcesBuildPhase section */ 405 | 406 | /* Begin PBXTargetDependency section */ 407 | 1336AC2463358E35CDA843CEC6D469A2 /* PBXTargetDependency */ = { 408 | isa = PBXTargetDependency; 409 | name = "Pods-ConfettiKit_Example"; 410 | target = 502C5181DA33141A10C83B494AD18E48 /* Pods-ConfettiKit_Example */; 411 | targetProxy = BF9CE4DD77E3ECD92E07775CB81351CB /* PBXContainerItemProxy */; 412 | }; 413 | DC632547B789A0F4DFBB81E750C0082A /* PBXTargetDependency */ = { 414 | isa = PBXTargetDependency; 415 | name = ConfettiKit; 416 | target = B3610EA005A655E470773C541BA909ED /* ConfettiKit */; 417 | targetProxy = F9550778D40B346BB169364FF7DCE346 /* PBXContainerItemProxy */; 418 | }; 419 | /* End PBXTargetDependency section */ 420 | 421 | /* Begin XCBuildConfiguration section */ 422 | 25AD9454612BF454A1E3DC4CD4FA8C6D /* Debug */ = { 423 | isa = XCBuildConfiguration; 424 | buildSettings = { 425 | ALWAYS_SEARCH_USER_PATHS = NO; 426 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 427 | CLANG_ANALYZER_NONNULL = YES; 428 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 429 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 430 | CLANG_CXX_LIBRARY = "libc++"; 431 | CLANG_ENABLE_MODULES = YES; 432 | CLANG_ENABLE_OBJC_ARC = YES; 433 | CLANG_ENABLE_OBJC_WEAK = YES; 434 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 435 | CLANG_WARN_BOOL_CONVERSION = YES; 436 | CLANG_WARN_COMMA = YES; 437 | CLANG_WARN_CONSTANT_CONVERSION = YES; 438 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 439 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 440 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 441 | CLANG_WARN_EMPTY_BODY = YES; 442 | CLANG_WARN_ENUM_CONVERSION = YES; 443 | CLANG_WARN_INFINITE_RECURSION = YES; 444 | CLANG_WARN_INT_CONVERSION = YES; 445 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 446 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 447 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 448 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 449 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 450 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 451 | CLANG_WARN_STRICT_PROTOTYPES = YES; 452 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 453 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 454 | CLANG_WARN_UNREACHABLE_CODE = YES; 455 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 456 | COPY_PHASE_STRIP = NO; 457 | DEBUG_INFORMATION_FORMAT = dwarf; 458 | ENABLE_STRICT_OBJC_MSGSEND = YES; 459 | ENABLE_TESTABILITY = YES; 460 | GCC_C_LANGUAGE_STANDARD = gnu11; 461 | GCC_DYNAMIC_NO_PIC = NO; 462 | GCC_NO_COMMON_BLOCKS = YES; 463 | GCC_OPTIMIZATION_LEVEL = 0; 464 | GCC_PREPROCESSOR_DEFINITIONS = ( 465 | "POD_CONFIGURATION_DEBUG=1", 466 | "DEBUG=1", 467 | "$(inherited)", 468 | ); 469 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 470 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 471 | GCC_WARN_UNDECLARED_SELECTOR = YES; 472 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 473 | GCC_WARN_UNUSED_FUNCTION = YES; 474 | GCC_WARN_UNUSED_VARIABLE = YES; 475 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 476 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 477 | MTL_FAST_MATH = YES; 478 | ONLY_ACTIVE_ARCH = YES; 479 | PRODUCT_NAME = "$(TARGET_NAME)"; 480 | STRIP_INSTALLED_PRODUCT = NO; 481 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 482 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 483 | SWIFT_VERSION = 5.0; 484 | SYMROOT = "${SRCROOT}/../build"; 485 | }; 486 | name = Debug; 487 | }; 488 | 4107E4DA3FD83B53060B175731CFE883 /* Release */ = { 489 | isa = XCBuildConfiguration; 490 | baseConfigurationReference = 748CADF2BF369978592B10EC02116705 /* ConfettiKit.release.xcconfig */; 491 | buildSettings = { 492 | CLANG_ENABLE_MODULES = YES; 493 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 494 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 495 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 496 | CURRENT_PROJECT_VERSION = 1; 497 | DEFINES_MODULE = YES; 498 | DYLIB_COMPATIBILITY_VERSION = 1; 499 | DYLIB_CURRENT_VERSION = 1; 500 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 501 | GCC_PREFIX_HEADER = "Target Support Files/ConfettiKit/ConfettiKit-prefix.pch"; 502 | INFOPLIST_FILE = "Target Support Files/ConfettiKit/ConfettiKit-Info.plist"; 503 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 504 | IPHONEOS_DEPLOYMENT_TARGET = 12.1; 505 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 506 | MODULEMAP_FILE = "Target Support Files/ConfettiKit/ConfettiKit.modulemap"; 507 | PRODUCT_MODULE_NAME = ConfettiKit; 508 | PRODUCT_NAME = ConfettiKit; 509 | SDKROOT = iphoneos; 510 | SKIP_INSTALL = YES; 511 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 512 | SWIFT_VERSION = 5.0; 513 | TARGETED_DEVICE_FAMILY = "1,2"; 514 | VALIDATE_PRODUCT = YES; 515 | VERSIONING_SYSTEM = "apple-generic"; 516 | VERSION_INFO_PREFIX = ""; 517 | }; 518 | name = Release; 519 | }; 520 | 410D3AC31F9AFE325FDB9E84A00C54B2 /* Debug */ = { 521 | isa = XCBuildConfiguration; 522 | baseConfigurationReference = 7D2827D6F4048F212D955D3925EB5C01 /* Pods-ConfettiKit_Tests.debug.xcconfig */; 523 | buildSettings = { 524 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 525 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 526 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 527 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 528 | CURRENT_PROJECT_VERSION = 1; 529 | DEFINES_MODULE = YES; 530 | DYLIB_COMPATIBILITY_VERSION = 1; 531 | DYLIB_CURRENT_VERSION = 1; 532 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 533 | INFOPLIST_FILE = "Target Support Files/Pods-ConfettiKit_Tests/Pods-ConfettiKit_Tests-Info.plist"; 534 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 535 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 536 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 537 | MACH_O_TYPE = staticlib; 538 | MODULEMAP_FILE = "Target Support Files/Pods-ConfettiKit_Tests/Pods-ConfettiKit_Tests.modulemap"; 539 | OTHER_LDFLAGS = ""; 540 | OTHER_LIBTOOLFLAGS = ""; 541 | PODS_ROOT = "$(SRCROOT)"; 542 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 543 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 544 | SDKROOT = iphoneos; 545 | SKIP_INSTALL = YES; 546 | TARGETED_DEVICE_FAMILY = "1,2"; 547 | VERSIONING_SYSTEM = "apple-generic"; 548 | VERSION_INFO_PREFIX = ""; 549 | }; 550 | name = Debug; 551 | }; 552 | 5794E6803794F01F81C20A2AD41B95AD /* Release */ = { 553 | isa = XCBuildConfiguration; 554 | baseConfigurationReference = D6872DE0C3FC9C0A7536DC078C0DE660 /* Pods-ConfettiKit_Example.release.xcconfig */; 555 | buildSettings = { 556 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 557 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 558 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 559 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 560 | CURRENT_PROJECT_VERSION = 1; 561 | DEFINES_MODULE = YES; 562 | DYLIB_COMPATIBILITY_VERSION = 1; 563 | DYLIB_CURRENT_VERSION = 1; 564 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 565 | INFOPLIST_FILE = "Target Support Files/Pods-ConfettiKit_Example/Pods-ConfettiKit_Example-Info.plist"; 566 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 567 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 568 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 569 | MACH_O_TYPE = staticlib; 570 | MODULEMAP_FILE = "Target Support Files/Pods-ConfettiKit_Example/Pods-ConfettiKit_Example.modulemap"; 571 | OTHER_LDFLAGS = ""; 572 | OTHER_LIBTOOLFLAGS = ""; 573 | PODS_ROOT = "$(SRCROOT)"; 574 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 575 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 576 | SDKROOT = iphoneos; 577 | SKIP_INSTALL = YES; 578 | TARGETED_DEVICE_FAMILY = "1,2"; 579 | VALIDATE_PRODUCT = YES; 580 | VERSIONING_SYSTEM = "apple-generic"; 581 | VERSION_INFO_PREFIX = ""; 582 | }; 583 | name = Release; 584 | }; 585 | 580F2BE275ED3971FB098D61E49FF1BE /* Debug */ = { 586 | isa = XCBuildConfiguration; 587 | baseConfigurationReference = 0B665133DD3A3E0ACAEE5603266206A3 /* Pods-ConfettiKit_Example.debug.xcconfig */; 588 | buildSettings = { 589 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 590 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 591 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 592 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 593 | CURRENT_PROJECT_VERSION = 1; 594 | DEFINES_MODULE = YES; 595 | DYLIB_COMPATIBILITY_VERSION = 1; 596 | DYLIB_CURRENT_VERSION = 1; 597 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 598 | INFOPLIST_FILE = "Target Support Files/Pods-ConfettiKit_Example/Pods-ConfettiKit_Example-Info.plist"; 599 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 600 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 601 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 602 | MACH_O_TYPE = staticlib; 603 | MODULEMAP_FILE = "Target Support Files/Pods-ConfettiKit_Example/Pods-ConfettiKit_Example.modulemap"; 604 | OTHER_LDFLAGS = ""; 605 | OTHER_LIBTOOLFLAGS = ""; 606 | PODS_ROOT = "$(SRCROOT)"; 607 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 608 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 609 | SDKROOT = iphoneos; 610 | SKIP_INSTALL = YES; 611 | TARGETED_DEVICE_FAMILY = "1,2"; 612 | VERSIONING_SYSTEM = "apple-generic"; 613 | VERSION_INFO_PREFIX = ""; 614 | }; 615 | name = Debug; 616 | }; 617 | C6846A41D622CBBFE0C0EEA8E1271570 /* Debug */ = { 618 | isa = XCBuildConfiguration; 619 | baseConfigurationReference = 7E18984C2DB381F006A54DE42956AA07 /* ConfettiKit.debug.xcconfig */; 620 | buildSettings = { 621 | CLANG_ENABLE_MODULES = YES; 622 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 623 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 624 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 625 | CURRENT_PROJECT_VERSION = 1; 626 | DEFINES_MODULE = YES; 627 | DYLIB_COMPATIBILITY_VERSION = 1; 628 | DYLIB_CURRENT_VERSION = 1; 629 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 630 | GCC_PREFIX_HEADER = "Target Support Files/ConfettiKit/ConfettiKit-prefix.pch"; 631 | INFOPLIST_FILE = "Target Support Files/ConfettiKit/ConfettiKit-Info.plist"; 632 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 633 | IPHONEOS_DEPLOYMENT_TARGET = 12.1; 634 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 635 | MODULEMAP_FILE = "Target Support Files/ConfettiKit/ConfettiKit.modulemap"; 636 | PRODUCT_MODULE_NAME = ConfettiKit; 637 | PRODUCT_NAME = ConfettiKit; 638 | SDKROOT = iphoneos; 639 | SKIP_INSTALL = YES; 640 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 641 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 642 | SWIFT_VERSION = 5.0; 643 | TARGETED_DEVICE_FAMILY = "1,2"; 644 | VERSIONING_SYSTEM = "apple-generic"; 645 | VERSION_INFO_PREFIX = ""; 646 | }; 647 | name = Debug; 648 | }; 649 | CA547D2C7E9A8A153DC2B27FBE00B112 /* Release */ = { 650 | isa = XCBuildConfiguration; 651 | buildSettings = { 652 | ALWAYS_SEARCH_USER_PATHS = NO; 653 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 654 | CLANG_ANALYZER_NONNULL = YES; 655 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 656 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 657 | CLANG_CXX_LIBRARY = "libc++"; 658 | CLANG_ENABLE_MODULES = YES; 659 | CLANG_ENABLE_OBJC_ARC = YES; 660 | CLANG_ENABLE_OBJC_WEAK = YES; 661 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 662 | CLANG_WARN_BOOL_CONVERSION = YES; 663 | CLANG_WARN_COMMA = YES; 664 | CLANG_WARN_CONSTANT_CONVERSION = YES; 665 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 666 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 667 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 668 | CLANG_WARN_EMPTY_BODY = YES; 669 | CLANG_WARN_ENUM_CONVERSION = YES; 670 | CLANG_WARN_INFINITE_RECURSION = YES; 671 | CLANG_WARN_INT_CONVERSION = YES; 672 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 673 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 674 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 675 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 676 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 677 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 678 | CLANG_WARN_STRICT_PROTOTYPES = YES; 679 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 680 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 681 | CLANG_WARN_UNREACHABLE_CODE = YES; 682 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 683 | COPY_PHASE_STRIP = NO; 684 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 685 | ENABLE_NS_ASSERTIONS = NO; 686 | ENABLE_STRICT_OBJC_MSGSEND = YES; 687 | GCC_C_LANGUAGE_STANDARD = gnu11; 688 | GCC_NO_COMMON_BLOCKS = YES; 689 | GCC_PREPROCESSOR_DEFINITIONS = ( 690 | "POD_CONFIGURATION_RELEASE=1", 691 | "$(inherited)", 692 | ); 693 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 694 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 695 | GCC_WARN_UNDECLARED_SELECTOR = YES; 696 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 697 | GCC_WARN_UNUSED_FUNCTION = YES; 698 | GCC_WARN_UNUSED_VARIABLE = YES; 699 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 700 | MTL_ENABLE_DEBUG_INFO = NO; 701 | MTL_FAST_MATH = YES; 702 | PRODUCT_NAME = "$(TARGET_NAME)"; 703 | STRIP_INSTALLED_PRODUCT = NO; 704 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 705 | SWIFT_VERSION = 5.0; 706 | SYMROOT = "${SRCROOT}/../build"; 707 | }; 708 | name = Release; 709 | }; 710 | D9083F2B8AEE0D48A08B05F5144DA0B5 /* Release */ = { 711 | isa = XCBuildConfiguration; 712 | baseConfigurationReference = 5C91AF28CEFD86D2D709595D7F96FB79 /* Pods-ConfettiKit_Tests.release.xcconfig */; 713 | buildSettings = { 714 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 715 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 716 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 717 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 718 | CURRENT_PROJECT_VERSION = 1; 719 | DEFINES_MODULE = YES; 720 | DYLIB_COMPATIBILITY_VERSION = 1; 721 | DYLIB_CURRENT_VERSION = 1; 722 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 723 | INFOPLIST_FILE = "Target Support Files/Pods-ConfettiKit_Tests/Pods-ConfettiKit_Tests-Info.plist"; 724 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 725 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 726 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 727 | MACH_O_TYPE = staticlib; 728 | MODULEMAP_FILE = "Target Support Files/Pods-ConfettiKit_Tests/Pods-ConfettiKit_Tests.modulemap"; 729 | OTHER_LDFLAGS = ""; 730 | OTHER_LIBTOOLFLAGS = ""; 731 | PODS_ROOT = "$(SRCROOT)"; 732 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 733 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 734 | SDKROOT = iphoneos; 735 | SKIP_INSTALL = YES; 736 | TARGETED_DEVICE_FAMILY = "1,2"; 737 | VALIDATE_PRODUCT = YES; 738 | VERSIONING_SYSTEM = "apple-generic"; 739 | VERSION_INFO_PREFIX = ""; 740 | }; 741 | name = Release; 742 | }; 743 | /* End XCBuildConfiguration section */ 744 | 745 | /* Begin XCConfigurationList section */ 746 | 0476CFCD0F5DEA0C025F46F90BC3ABED /* Build configuration list for PBXNativeTarget "Pods-ConfettiKit_Tests" */ = { 747 | isa = XCConfigurationList; 748 | buildConfigurations = ( 749 | 410D3AC31F9AFE325FDB9E84A00C54B2 /* Debug */, 750 | D9083F2B8AEE0D48A08B05F5144DA0B5 /* Release */, 751 | ); 752 | defaultConfigurationIsVisible = 0; 753 | defaultConfigurationName = Release; 754 | }; 755 | 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 756 | isa = XCConfigurationList; 757 | buildConfigurations = ( 758 | 25AD9454612BF454A1E3DC4CD4FA8C6D /* Debug */, 759 | CA547D2C7E9A8A153DC2B27FBE00B112 /* Release */, 760 | ); 761 | defaultConfigurationIsVisible = 0; 762 | defaultConfigurationName = Release; 763 | }; 764 | 66D7D7699D405F9C416123E17AE801B5 /* Build configuration list for PBXNativeTarget "Pods-ConfettiKit_Example" */ = { 765 | isa = XCConfigurationList; 766 | buildConfigurations = ( 767 | 580F2BE275ED3971FB098D61E49FF1BE /* Debug */, 768 | 5794E6803794F01F81C20A2AD41B95AD /* Release */, 769 | ); 770 | defaultConfigurationIsVisible = 0; 771 | defaultConfigurationName = Release; 772 | }; 773 | 901B3FC3BF5A7EC740073A6D6B098344 /* Build configuration list for PBXNativeTarget "ConfettiKit" */ = { 774 | isa = XCConfigurationList; 775 | buildConfigurations = ( 776 | C6846A41D622CBBFE0C0EEA8E1271570 /* Debug */, 777 | 4107E4DA3FD83B53060B175731CFE883 /* Release */, 778 | ); 779 | defaultConfigurationIsVisible = 0; 780 | defaultConfigurationName = Release; 781 | }; 782 | /* End XCConfigurationList section */ 783 | }; 784 | rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; 785 | } 786 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConfettiKit/ConfettiKit-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConfettiKit/ConfettiKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_ConfettiKit : NSObject 3 | @end 4 | @implementation PodsDummy_ConfettiKit 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConfettiKit/ConfettiKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConfettiKit/ConfettiKit-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double ConfettiKitVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char ConfettiKitVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConfettiKit/ConfettiKit.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/ConfettiKit 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 9 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConfettiKit/ConfettiKit.modulemap: -------------------------------------------------------------------------------- 1 | framework module ConfettiKit { 2 | umbrella header "ConfettiKit-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/ConfettiKit/ConfettiKit.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/ConfettiKit 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 9 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConfettiKit_Example/Pods-ConfettiKit_Example-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConfettiKit_Example/Pods-ConfettiKit_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## ConfettiKit 5 | 6 | Copyright (c) 2021 gokulnair2001 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConfettiKit_Example/Pods-ConfettiKit_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2021 gokulnair2001 <gokulnair.2001@gmail.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | License 38 | MIT 39 | Title 40 | ConfettiKit 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - https://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConfettiKit_Example/Pods-ConfettiKit_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ConfettiKit_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ConfettiKit_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConfettiKit_Example/Pods-ConfettiKit_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | function on_error { 7 | echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" 8 | } 9 | trap 'on_error $LINENO' ERR 10 | 11 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 12 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 13 | # frameworks to, so exit 0 (signalling the script phase was successful). 14 | exit 0 15 | fi 16 | 17 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 18 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 19 | 20 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 21 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 22 | BCSYMBOLMAP_DIR="BCSymbolMaps" 23 | 24 | 25 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 26 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 27 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 28 | 29 | # Copies and strips a vendored framework 30 | install_framework() 31 | { 32 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 33 | local source="${BUILT_PRODUCTS_DIR}/$1" 34 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 35 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 36 | elif [ -r "$1" ]; then 37 | local source="$1" 38 | fi 39 | 40 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 41 | 42 | if [ -L "${source}" ]; then 43 | echo "Symlinked..." 44 | source="$(readlink "${source}")" 45 | fi 46 | 47 | if [ -d "${source}/${BCSYMBOLMAP_DIR}" ]; then 48 | # Locate and install any .bcsymbolmaps if present, and remove them from the .framework before the framework is copied 49 | find "${source}/${BCSYMBOLMAP_DIR}" -name "*.bcsymbolmap"|while read f; do 50 | echo "Installing $f" 51 | install_bcsymbolmap "$f" "$destination" 52 | rm "$f" 53 | done 54 | rmdir "${source}/${BCSYMBOLMAP_DIR}" 55 | fi 56 | 57 | # Use filter instead of exclude so missing patterns don't throw errors. 58 | 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}\"" 59 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 60 | 61 | local basename 62 | basename="$(basename -s .framework "$1")" 63 | binary="${destination}/${basename}.framework/${basename}" 64 | 65 | if ! [ -r "$binary" ]; then 66 | binary="${destination}/${basename}" 67 | elif [ -L "${binary}" ]; then 68 | echo "Destination binary is symlinked..." 69 | dirname="$(dirname "${binary}")" 70 | binary="${dirname}/$(readlink "${binary}")" 71 | fi 72 | 73 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 74 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 75 | strip_invalid_archs "$binary" 76 | fi 77 | 78 | # Resign the code if required by the build settings to avoid unstable apps 79 | code_sign_if_enabled "${destination}/$(basename "$1")" 80 | 81 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 82 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 83 | local swift_runtime_libs 84 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u) 85 | for lib in $swift_runtime_libs; do 86 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 87 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 88 | code_sign_if_enabled "${destination}/${lib}" 89 | done 90 | fi 91 | } 92 | # Copies and strips a vendored dSYM 93 | install_dsym() { 94 | local source="$1" 95 | warn_missing_arch=${2:-true} 96 | if [ -r "$source" ]; then 97 | # Copy the dSYM into the targets temp dir. 98 | 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}\"" 99 | 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}" 100 | 101 | local basename 102 | basename="$(basename -s .dSYM "$source")" 103 | binary_name="$(ls "$source/Contents/Resources/DWARF")" 104 | binary="${DERIVED_FILES_DIR}/${basename}.dSYM/Contents/Resources/DWARF/${binary_name}" 105 | 106 | # Strip invalid architectures from the dSYM. 107 | if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then 108 | strip_invalid_archs "$binary" "$warn_missing_arch" 109 | fi 110 | if [[ $STRIP_BINARY_RETVAL == 0 ]]; then 111 | # Move the stripped file into its final destination. 112 | 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}\"" 113 | 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}" 114 | else 115 | # 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. 116 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.dSYM" 117 | fi 118 | fi 119 | } 120 | 121 | # Used as a return value for each invocation of `strip_invalid_archs` function. 122 | STRIP_BINARY_RETVAL=0 123 | 124 | # Strip invalid architectures 125 | strip_invalid_archs() { 126 | binary="$1" 127 | warn_missing_arch=${2:-true} 128 | # Get architectures for current target binary 129 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 130 | # Intersect them with the architectures we are building for 131 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 132 | # If there are no archs supported by this binary then warn the user 133 | if [[ -z "$intersected_archs" ]]; then 134 | if [[ "$warn_missing_arch" == "true" ]]; then 135 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 136 | fi 137 | STRIP_BINARY_RETVAL=1 138 | return 139 | fi 140 | stripped="" 141 | for arch in $binary_archs; do 142 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 143 | # Strip non-valid architectures in-place 144 | lipo -remove "$arch" -output "$binary" "$binary" 145 | stripped="$stripped $arch" 146 | fi 147 | done 148 | if [[ "$stripped" ]]; then 149 | echo "Stripped $binary of architectures:$stripped" 150 | fi 151 | STRIP_BINARY_RETVAL=0 152 | } 153 | 154 | # Copies the bcsymbolmap files of a vendored framework 155 | install_bcsymbolmap() { 156 | local bcsymbolmap_path="$1" 157 | local destination="${BUILT_PRODUCTS_DIR}" 158 | 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}"" 159 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}" 160 | } 161 | 162 | # Signs a framework with the provided identity 163 | code_sign_if_enabled() { 164 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 165 | # Use the current code_sign_identity 166 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 167 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 168 | 169 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 170 | code_sign_cmd="$code_sign_cmd &" 171 | fi 172 | echo "$code_sign_cmd" 173 | eval "$code_sign_cmd" 174 | fi 175 | } 176 | 177 | if [[ "$CONFIGURATION" == "Debug" ]]; then 178 | install_framework "${BUILT_PRODUCTS_DIR}/ConfettiKit/ConfettiKit.framework" 179 | fi 180 | if [[ "$CONFIGURATION" == "Release" ]]; then 181 | install_framework "${BUILT_PRODUCTS_DIR}/ConfettiKit/ConfettiKit.framework" 182 | fi 183 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 184 | wait 185 | fi 186 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConfettiKit_Example/Pods-ConfettiKit_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_ConfettiKit_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_ConfettiKit_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConfettiKit_Example/Pods-ConfettiKit_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConfettiKit" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConfettiKit/ConfettiKit.framework/Headers" 6 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 7 | OTHER_LDFLAGS = $(inherited) -framework "ConfettiKit" 8 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 9 | PODS_BUILD_DIR = ${BUILD_DIR} 10 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 11 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 12 | PODS_ROOT = ${SRCROOT}/Pods 13 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 14 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConfettiKit_Example/Pods-ConfettiKit_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_ConfettiKit_Example { 2 | umbrella header "Pods-ConfettiKit_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConfettiKit_Example/Pods-ConfettiKit_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConfettiKit" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConfettiKit/ConfettiKit.framework/Headers" 6 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 7 | OTHER_LDFLAGS = $(inherited) -framework "ConfettiKit" 8 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 9 | PODS_BUILD_DIR = ${BUILD_DIR} 10 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 11 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 12 | PODS_ROOT = ${SRCROOT}/Pods 13 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 14 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConfettiKit_Tests/Pods-ConfettiKit_Tests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConfettiKit_Tests/Pods-ConfettiKit_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConfettiKit_Tests/Pods-ConfettiKit_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConfettiKit_Tests/Pods-ConfettiKit_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ConfettiKit_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ConfettiKit_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConfettiKit_Tests/Pods-ConfettiKit_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_ConfettiKit_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_ConfettiKit_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConfettiKit_Tests/Pods-ConfettiKit_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConfettiKit" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConfettiKit/ConfettiKit.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -framework "ConfettiKit" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConfettiKit_Tests/Pods-ConfettiKit_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_ConfettiKit_Tests { 2 | umbrella header "Pods-ConfettiKit_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-ConfettiKit_Tests/Pods-ConfettiKit_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConfettiKit" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/ConfettiKit/ConfettiKit.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -framework "ConfettiKit" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import XCTest 2 | import ConfettiKit 3 | 4 | class Tests: XCTestCase { 5 | 6 | override func setUp() { 7 | super.setUp() 8 | // Put setup code here. This method is called before the invocation of each test method in the class. 9 | } 10 | 11 | override func tearDown() { 12 | // Put teardown code here. This method is called after the invocation of each test method in the class. 13 | super.tearDown() 14 | } 15 | 16 | func testExample() { 17 | // This is an example of a functional test case. 18 | XCTAssert(true, "Pass") 19 | } 20 | 21 | func testPerformanceExample() { 22 | // This is an example of a performance test case. 23 | self.measure() { 24 | // Put the code you want to measure the time of here. 25 | } 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2021 gokulnair2001 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![ConfettiKit](https://user-images.githubusercontent.com/56252259/125235649-69d4f000-e300-11eb-903c-43b07d7b7f9e.png) 2 | 3 | # ConfettiKit🎉 4 | 5 | [![CI Status](https://img.shields.io/travis/gokulnair2001/ConfettiKit.svg?style=flat)](https://travis-ci.org/gokulnair2001/ConfettiKit) 6 | [![Version](https://img.shields.io/cocoapods/v/ConfettiKit.svg?style=flat)](https://cocoapods.org/pods/ConfettiKit) 7 | ![Badges](https://img.shields.io/badge/License-MIT-yellow) 8 | [![Platform](https://img.shields.io/cocoapods/p/ConfettiKit.svg?style=flat)](https://cocoapods.org/pods/ConfettiKit) 9 | [![Relative date](https://img.shields.io/date/1577392258?color=important&label=started&logo=github)](https://github.com/gokulnair2001/ConfettiKit) 10 | [![Maintenance](https://img.shields.io/maintenance/yes/2021?color=green&logo=github)](https://github.com/gokulnair2001/ConfettiKit) 11 | ![commit](https://img.shields.io/github/commits-since/gokulnair2001/ConfettiKit/1.0.0/master) 12 | ![contributors](https://img.shields.io/github/contributors/gokulnair2001/ConfettiKit) 13 | ![Badge](https://img.shields.io/badge/Xcode-12.0-green) 14 | ![badge](https://img.shields.io/badge/Swift-5.0-red) 15 | ![Badge](https://img.shields.io/badge/LibSize-3kb-brown) 16 | ![Watchers](https://img.shields.io/github/watchers/gokulnair2001/ConfettiKit?label=Watch) 17 | 18 | ## About 📒 19 | ConfettiKit is a custom framework used to add Confetti on your iOS/iPadOS projects. The kit provides variety of customisations inorder to design a confetti which matches your project's UI. ConfettiKit makes your work of adding Confetti on your project with just one line of code. 20 | 21 | ## Playground 💻 22 | 23 | * I've provided a demo project to showcase few examples of Confetti's which can be made. Simply clone this repo, and open `ConfettiKit.xcworkspace`. 24 | * Run `pod install`. 25 | * Here you can see and experiment custom Loaf styles in `Examples.swift`. 26 | 27 | ## Requirements ❕ 28 | 29 | * Device running on iOS/iPadOS 12.1+ versions 📱. 30 | * Swift 5.4+ 💻 31 | 32 | ## Installation 🌏 33 | 34 | ConfettiKit is available through [CocoaPods](https://cocoapods.org). 35 | To install it, simply add the following line to your Podfile: 36 | 37 | ```ruby 38 | pod 'ConfettiKit' 39 | ``` 40 | ## No CocoaPods❗️ 41 | 42 | * Add this [Confetti.swift file](https://github.com/gokulnair2001/ConfettiKit/tree/master/Sources) into your project.
43 | * Now you are ready to use ConfettiKit 🚀.
44 | * Remaining steps are same 😁.
45 | * Do read the documentation till the end to know more about ConfettiKit 💪🏼
46 | 47 | ## Usage ⚙️ 48 | 1. Import Library 📚 49 | ```swift 50 | import ConfettiKit 51 | ``` 52 | 2. Generate Confetti 🎉 53 | * Write this one line of code and add the parameters according to your specifications. 54 | 55 | ```swift 56 | Confetti.generateConfetti(ConfettiPosition:Position, ConfettiCells:Int, ConfettiImage:[String], Colours:[UIColor], Scale:CGFloat ,BirthRate: Float, LifeTime:Float, Velocity:CGFloat, Spin:CGFloat, EmissionLongitude:CGFloat = CGFloat(Double.pi), EmissionRange:CGFloat, View: UIView) 57 | ``` 58 | ### Parameters 🎛 59 | 60 | | Parameter | Definition | 61 | | --- | --- | 62 | | ConfettiPosition | Position from which confetti Starts | 63 | | ConfettiCells | Total types of confetti element | 64 | | ConfettiImage | Image to apply on every Cells| 65 | | Colours | Colour to apply on every Cells | 66 | | Scale | Size of cell | 67 | | BirthRate | Cells produced in a sec | 68 | | LifeTime | Total existence of a cell| 69 | | Velocity | Speed of cell | 70 | | Spin | Rotation velocity of cell| 71 | | EmissionLongitude | longitudinal orientation of the emission angle | 72 | | EmissionRange | Angle(radians), defining a cone around the emission angle | 73 | | View | View on which Confetti is to be applied | 74 | 75 | ## Result 💯 76 | | Customization 1 | Customization 2 | Customization 3 | 77 | |-- | -- | -- | 78 | | | 79 | 80 | * Above given confettis are example project, you can cutomise it with your favourite confetti style. 81 | 82 | ## How to Stop Confetti ? ❌ 83 | * To stop confetti add: 84 | ```swift 85 | Confetti.stopConfetti() 86 | ``` 87 | 88 | ## Instructions 🚩 89 | 1. Images which are to be used in Confetti must be present in the ```Images.xcassets``` file. 90 | 2. Change Rendering property of every Confetti Image to ```Template Image``` from Attribute Inspector. 91 | 92 | 93 | 3. While providing ```ConfettiImage``` & ```Colours``` do remember total number of Images and colours must be same to the number of ```ConfettiCells```. 94 | 95 | ## How to Contribute 🖋 96 | * Run the app - Steps are mentioned above. 97 | * If you face issues in any step open a new issue. 98 | * To fix issues: Fork this repository, make your changes and make a Pull Request. 99 | 108 | ## License 109 | 110 | ConfettiKit is available under the MIT license. See the [LICENSE file](https://github.com/gokulnair2001/ConfettiKit/blob/master/LICENSE) for more info. 111 | 112 | ## Like the Project ? 113 | If you like using any of my projects or like what I'm doing, please do consider backing me with appreciating my work: [Message me](https://twitter.com/GokulNair2303)🥰 114 | 115 | [BMC logo+wordmark - Black](https://www.buymeacoffee.com/gokulnair) 116 | 117 | OR 118 | 119 | **Drop a star ⭐ if you find this project interesting!** 120 | 121 |

122 | Made with ❤️ in 🇮🇳 By Gokul Nair 123 |

124 | -------------------------------------------------------------------------------- /Sources/Confetti.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Confetti.swift 3 | // ConfettiKit 4 | // 5 | // Created by Gokul Nair on 10/07/21. 6 | // 7 | 8 | import UIKit 9 | 10 | public enum Position { 11 | case top 12 | case centre 13 | case topLeft 14 | case topRight 15 | } 16 | 17 | public class Confetti { 18 | 19 | private static var emitter = CAEmitterLayer() 20 | 21 | /// A Confetti generator method, with variety of customisations. 22 | /// - Parameters: 23 | /// - ConfettiPosition: Position of Confetti on UIView 24 | /// - ConfettiCells: Types of Confetti particle to be emitted 25 | /// - ConfettiImage: Images that are to be used on your Confetti 26 | /// - Colours: Colours to be applied on cells 27 | /// - Scale: Size of your Confetti cell 28 | /// - BirthRate: No cells to be produced in a second 29 | /// - LifeTime: Total life time of cells 30 | /// - Velocity: Confetti cell velocity 31 | /// - Spin: Rotation velocity of Confetti cells 32 | /// - EmissionLongitude: The longitudinal orientation of the emission angle. 33 | /// - EmissionRange: The angle, in radians, defining a cone around the emission angle 34 | /// - View: The UIView on which Confetti is to be applied 35 | 36 | public static func generateConfetti(ConfettiPosition:Position, ConfettiCells:Int = 3, ConfettiImage:[String], Colours:[UIColor], Scale:CGFloat ,BirthRate: Float = 1.0, LifeTime:Float, Velocity:CGFloat, Spin:CGFloat, EmissionLongitude:CGFloat = CGFloat(Double.pi), EmissionRange:CGFloat, View: UIView) { 37 | 38 | emitter.emitterPosition = positionArrangement(with: ConfettiPosition, confettiView: View) 39 | emitter.emitterShape = CAEmitterLayerEmitterShape.line 40 | emitter.emitterSize = CGSize(width: View.frame.size.width, height: 2.0) 41 | 42 | var cells:[CAEmitterCell] = [CAEmitterCell]() 43 | for index in 0.. CGPoint{ 78 | switch pos { 79 | case .top: 80 | return CGPoint(x: confettiView.center.x, y: -10) 81 | case .centre: 82 | return CGPoint(x: confettiView.center.x, y: confettiView.center.y) 83 | case .topLeft: 84 | return CGPoint(x:0 , y: -10) 85 | case .topRight: 86 | return CGPoint(x: confettiView.bounds.width, y: -10) 87 | } 88 | } 89 | } 90 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman --------------------------------------------------------------------------------