├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── Shared ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── ContentView.swift └── d3_stories_instagram_exampleApp.swift ├── d3-stories-instagram-example.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist └── macOS └── macOS.entitlements /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 4 | 5 | ## User settings 6 | xcuserdata/ 7 | 8 | ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) 9 | *.xcscmblueprint 10 | *.xccheckout 11 | 12 | ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) 13 | build/ 14 | DerivedData/ 15 | *.moved-aside 16 | *.pbxuser 17 | !default.pbxuser 18 | *.mode1v3 19 | !default.mode1v3 20 | *.mode2v3 21 | !default.mode2v3 22 | *.perspectivev3 23 | !default.perspectivev3 24 | 25 | ## Obj-C/Swift specific 26 | *.hmap 27 | 28 | ## App packaging 29 | *.ipa 30 | *.dSYM.zip 31 | *.dSYM 32 | 33 | ## Playgrounds 34 | timeline.xctimeline 35 | playground.xcworkspace 36 | 37 | # Swift Package Manager 38 | # 39 | # Add this line if you want to avoid checking in source code from Swift Package Manager dependencies. 40 | # Packages/ 41 | # Package.pins 42 | # Package.resolved 43 | # *.xcodeproj 44 | # 45 | # Xcode automatically generates this directory with a .xcworkspacedata file and xcuserdata 46 | # hence it is not needed unless you have added a package configuration file to your project 47 | # .swiftpm 48 | 49 | .build/ 50 | 51 | # CocoaPods 52 | # 53 | # We recommend against adding the Pods directory to your .gitignore. However 54 | # you should judge for yourself, the pros and cons are mentioned at: 55 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 56 | # 57 | # Pods/ 58 | # 59 | # Add this line if you want to avoid checking in source code from the Xcode workspace 60 | # *.xcworkspace 61 | 62 | # Carthage 63 | # 64 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 65 | # Carthage/Checkouts 66 | 67 | Carthage/Build/ 68 | 69 | # Accio dependency management 70 | Dependencies/ 71 | .accio/ 72 | 73 | # fastlane 74 | # 75 | # It is recommended to not store the screenshots in the git repo. 76 | # Instead, use fastlane to re-generate the screenshots whenever they are needed. 77 | # For more information about the recommended setup visit: 78 | # https://docs.fastlane.tools/best-practices/source-control/#source-control 79 | 80 | fastlane/report.xml 81 | fastlane/Preview.html 82 | fastlane/screenshots/**/*.png 83 | fastlane/test_output 84 | 85 | # Code Injection 86 | # 87 | # After new code Injection tools there's a generated folder /iOSInjectionProject 88 | # https://github.com/johnno1962/injectionforxcode 89 | 90 | iOSInjectionProject/ 91 | 92 | .DS_Store 93 | /.build 94 | /Packages 95 | /*.xcodeproj 96 | xcuserdata/ 97 | DerivedData/ 98 | .swiftpm/ 99 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SwiftUI and Combine - Stories instagram 2 | 3 | ## Example for package 4 | [stories-instagram](https://github.com/swiftuiux/d3-stories-instagram) 5 | 6 | ## Features 7 | - [x] Long tap - pause stories showcase 8 | - [x] Tap - next story 9 | - [x] Leeway - pause before start stories 10 | - [x] Customize component with you own stories and every story with it's own view 11 | - [x] Customize time longevity for every story 12 | - [x] iOS and macOS support 13 | - [x] Customizable **dark** and **light** scheme support for every story 14 | - [x] Control stories run as by external sources that are not inside StoriesWidget so via Gesture 15 | - [x] Observing stories life circle for reacting on state change 16 | - [x] Internal and custom external errors handling 17 | - [x] Localization (En, Es) All errors and system messages are localized. 18 | 19 | 20 | [![click to watch expected UI behavior for the example](https://github.com/swiftuiux/d3-stories-instagram/blob/main/img/img_01.gif)](https://youtu.be/GW01UyqzaeE) 21 | 22 | [![click to watch expected UI behavior for the example](https://github.com/swiftuiux/d3-stories-instagram/blob/main/img/img_08.gif)](https://youtu.be/GW01UyqzaeE) 23 | 24 | [![click to watch expected UI behavior for the example](https://github.com/swiftuiux/d3-stories-instagram/blob/main/img/img_03.png)](https://youtu.be/GW01UyqzaeE) 25 | -------------------------------------------------------------------------------- /Shared/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Shared/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "scale" : "2x", 6 | "size" : "20x20" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "scale" : "3x", 11 | "size" : "20x20" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "scale" : "2x", 16 | "size" : "29x29" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "scale" : "3x", 21 | "size" : "29x29" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "scale" : "2x", 26 | "size" : "40x40" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "scale" : "3x", 31 | "size" : "40x40" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "scale" : "2x", 36 | "size" : "60x60" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "scale" : "3x", 41 | "size" : "60x60" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "scale" : "1x", 46 | "size" : "20x20" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "scale" : "2x", 51 | "size" : "20x20" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "scale" : "1x", 56 | "size" : "29x29" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "scale" : "2x", 61 | "size" : "29x29" 62 | }, 63 | { 64 | "idiom" : "ipad", 65 | "scale" : "1x", 66 | "size" : "40x40" 67 | }, 68 | { 69 | "idiom" : "ipad", 70 | "scale" : "2x", 71 | "size" : "40x40" 72 | }, 73 | { 74 | "idiom" : "ipad", 75 | "scale" : "2x", 76 | "size" : "76x76" 77 | }, 78 | { 79 | "idiom" : "ipad", 80 | "scale" : "2x", 81 | "size" : "83.5x83.5" 82 | }, 83 | { 84 | "idiom" : "ios-marketing", 85 | "scale" : "1x", 86 | "size" : "1024x1024" 87 | }, 88 | { 89 | "idiom" : "mac", 90 | "scale" : "1x", 91 | "size" : "16x16" 92 | }, 93 | { 94 | "idiom" : "mac", 95 | "scale" : "2x", 96 | "size" : "16x16" 97 | }, 98 | { 99 | "idiom" : "mac", 100 | "scale" : "1x", 101 | "size" : "32x32" 102 | }, 103 | { 104 | "idiom" : "mac", 105 | "scale" : "2x", 106 | "size" : "32x32" 107 | }, 108 | { 109 | "idiom" : "mac", 110 | "scale" : "1x", 111 | "size" : "128x128" 112 | }, 113 | { 114 | "idiom" : "mac", 115 | "scale" : "2x", 116 | "size" : "128x128" 117 | }, 118 | { 119 | "idiom" : "mac", 120 | "scale" : "1x", 121 | "size" : "256x256" 122 | }, 123 | { 124 | "idiom" : "mac", 125 | "scale" : "2x", 126 | "size" : "256x256" 127 | }, 128 | { 129 | "idiom" : "mac", 130 | "scale" : "1x", 131 | "size" : "512x512" 132 | }, 133 | { 134 | "idiom" : "mac", 135 | "scale" : "2x", 136 | "size" : "512x512" 137 | } 138 | ], 139 | "info" : { 140 | "author" : "xcode", 141 | "version" : 1 142 | } 143 | } 144 | -------------------------------------------------------------------------------- /Shared/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Shared/ContentView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ContentView.swift 3 | // Shared 4 | // 5 | // Created by Igor Shelopaev on 28.06.2022. 6 | // 7 | 8 | import d3_stories_instagram 9 | import SwiftUI 10 | 11 | struct ContentView: View { 12 | @State var show = true 13 | 14 | @State var pause = false 15 | 16 | var body: some View { 17 | GeometryReader { _ in 18 | Color.white 19 | if show { 20 | StoriesWidget( 21 | manager: StoriesManager.self, 22 | stories: Stories.allCases, 23 | pause: $pause, 24 | validator: CustomStoriesValidater.self 25 | ) { state in 26 | print("\(state)") 27 | } 28 | } 29 | 30 | }.overlay(btn, alignment: .bottom) 31 | .onChange(of: show) { if $0 == false { pause = false } } 32 | // .environment(\.locale, .init(identifier: "es")) 33 | } 34 | 35 | var btn: some View { 36 | #if os(iOS) 37 | HStack { 38 | Button { 39 | show.toggle() 40 | } label: { 41 | Text(show ? "hide" : "show") 42 | .font(.system(size: 17)) 43 | .frame(maxWidth: .infinity) 44 | .padding(.vertical, 20) 45 | .foregroundColor(.primary) 46 | .background(.thinMaterial, in: RoundedRectangle(cornerRadius: 15)) 47 | .padding(.top, 25) 48 | .padding(.horizontal) 49 | }.padding(.bottom, 5) 50 | 51 | if show { 52 | Button { 53 | pause.toggle() 54 | } label: { 55 | Text(pause ? "resume" : "pause") 56 | .font(.system(size: 17)) 57 | .frame(maxWidth: .infinity) 58 | .padding(.vertical, 20) 59 | .foregroundColor(.primary) 60 | .background(.thinMaterial, in: RoundedRectangle(cornerRadius: 15)) 61 | .padding(.top, 25) 62 | .padding(.horizontal) 63 | }.padding(.bottom, 5) 64 | } 65 | } 66 | #else 67 | EmptyView() 68 | #endif 69 | } 70 | } 71 | 72 | struct ContentView_Previews: PreviewProvider { 73 | static var previews: some View { 74 | ContentView() 75 | } 76 | } 77 | -------------------------------------------------------------------------------- /Shared/d3_stories_instagram_exampleApp.swift: -------------------------------------------------------------------------------- 1 | // 2 | // d3_stories_instagram_exampleApp.swift 3 | // Shared 4 | // 5 | // Created by Igor Shelopaev on 23.06.2022. 6 | // 7 | 8 | import SwiftUI 9 | 10 | @main 11 | struct d3_stories_instagram_exampleApp: App { 12 | var body: some Scene { 13 | WindowGroup { 14 | ContentView() 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /d3-stories-instagram-example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 55; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 786796302CF73C6B00352F7A /* d3-stories-instagram in Frameworks */ = {isa = PBXBuildFile; productRef = 7867962F2CF73C6B00352F7A /* d3-stories-instagram */; }; 11 | 786796322CF73C7600352F7A /* d3-stories-instagram in Frameworks */ = {isa = PBXBuildFile; productRef = 786796312CF73C7600352F7A /* d3-stories-instagram */; }; 12 | B2903272286B0C88007E0B93 /* README.md in Resources */ = {isa = PBXBuildFile; fileRef = B2903271286B0C88007E0B93 /* README.md */; }; 13 | B2C8A3C4286446E300097727 /* d3_stories_instagram_exampleApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2C8A3B4286446E200097727 /* d3_stories_instagram_exampleApp.swift */; }; 14 | B2C8A3C5286446E300097727 /* d3_stories_instagram_exampleApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2C8A3B4286446E200097727 /* d3_stories_instagram_exampleApp.swift */; }; 15 | B2C8A3C6286446E300097727 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2C8A3B5286446E200097727 /* ContentView.swift */; }; 16 | B2C8A3C7286446E300097727 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2C8A3B5286446E200097727 /* ContentView.swift */; }; 17 | B2C8A3C8286446E300097727 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B2C8A3B6286446E300097727 /* Assets.xcassets */; }; 18 | B2C8A3C9286446E300097727 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = B2C8A3B6286446E300097727 /* Assets.xcassets */; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXFileReference section */ 22 | B2903271286B0C88007E0B93 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 23 | B2C8A3B4286446E200097727 /* d3_stories_instagram_exampleApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = d3_stories_instagram_exampleApp.swift; sourceTree = ""; }; 24 | B2C8A3B5286446E200097727 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; 25 | B2C8A3B6286446E300097727 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 26 | B2C8A3BB286446E300097727 /* d3-stories-instagram-example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "d3-stories-instagram-example.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 27 | B2C8A3C1286446E300097727 /* d3-stories-instagram-example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "d3-stories-instagram-example.app"; sourceTree = BUILT_PRODUCTS_DIR; }; 28 | B2C8A3C3286446E300097727 /* macOS.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = macOS.entitlements; sourceTree = ""; }; 29 | /* End PBXFileReference section */ 30 | 31 | /* Begin PBXFrameworksBuildPhase section */ 32 | B2C8A3B8286446E300097727 /* Frameworks */ = { 33 | isa = PBXFrameworksBuildPhase; 34 | buildActionMask = 2147483647; 35 | files = ( 36 | 786796302CF73C6B00352F7A /* d3-stories-instagram in Frameworks */, 37 | ); 38 | runOnlyForDeploymentPostprocessing = 0; 39 | }; 40 | B2C8A3BE286446E300097727 /* Frameworks */ = { 41 | isa = PBXFrameworksBuildPhase; 42 | buildActionMask = 2147483647; 43 | files = ( 44 | 786796322CF73C7600352F7A /* d3-stories-instagram in Frameworks */, 45 | ); 46 | runOnlyForDeploymentPostprocessing = 0; 47 | }; 48 | /* End PBXFrameworksBuildPhase section */ 49 | 50 | /* Begin PBXGroup section */ 51 | B2C8A3AE286446E100097727 = { 52 | isa = PBXGroup; 53 | children = ( 54 | B2903271286B0C88007E0B93 /* README.md */, 55 | B2C8A3D22864470F00097727 /* Packages */, 56 | B2C8A3B3286446E200097727 /* Shared */, 57 | B2C8A3C2286446E300097727 /* macOS */, 58 | B2C8A3BC286446E300097727 /* Products */, 59 | B2C8A3D42864473900097727 /* Frameworks */, 60 | ); 61 | sourceTree = ""; 62 | }; 63 | B2C8A3B3286446E200097727 /* Shared */ = { 64 | isa = PBXGroup; 65 | children = ( 66 | B2C8A3B4286446E200097727 /* d3_stories_instagram_exampleApp.swift */, 67 | B2C8A3B5286446E200097727 /* ContentView.swift */, 68 | B2C8A3B6286446E300097727 /* Assets.xcassets */, 69 | ); 70 | path = Shared; 71 | sourceTree = ""; 72 | }; 73 | B2C8A3BC286446E300097727 /* Products */ = { 74 | isa = PBXGroup; 75 | children = ( 76 | B2C8A3BB286446E300097727 /* d3-stories-instagram-example.app */, 77 | B2C8A3C1286446E300097727 /* d3-stories-instagram-example.app */, 78 | ); 79 | name = Products; 80 | sourceTree = ""; 81 | }; 82 | B2C8A3C2286446E300097727 /* macOS */ = { 83 | isa = PBXGroup; 84 | children = ( 85 | B2C8A3C3286446E300097727 /* macOS.entitlements */, 86 | ); 87 | path = macOS; 88 | sourceTree = ""; 89 | }; 90 | B2C8A3D22864470F00097727 /* Packages */ = { 91 | isa = PBXGroup; 92 | children = ( 93 | ); 94 | name = Packages; 95 | sourceTree = ""; 96 | }; 97 | B2C8A3D42864473900097727 /* Frameworks */ = { 98 | isa = PBXGroup; 99 | children = ( 100 | ); 101 | name = Frameworks; 102 | sourceTree = ""; 103 | }; 104 | /* End PBXGroup section */ 105 | 106 | /* Begin PBXNativeTarget section */ 107 | B2C8A3BA286446E300097727 /* d3-stories-instagram-example (iOS) */ = { 108 | isa = PBXNativeTarget; 109 | buildConfigurationList = B2C8A3CC286446E300097727 /* Build configuration list for PBXNativeTarget "d3-stories-instagram-example (iOS)" */; 110 | buildPhases = ( 111 | B2C8A3B7286446E300097727 /* Sources */, 112 | B2C8A3B8286446E300097727 /* Frameworks */, 113 | B2C8A3B9286446E300097727 /* Resources */, 114 | ); 115 | buildRules = ( 116 | ); 117 | dependencies = ( 118 | ); 119 | name = "d3-stories-instagram-example (iOS)"; 120 | packageProductDependencies = ( 121 | 7867962F2CF73C6B00352F7A /* d3-stories-instagram */, 122 | ); 123 | productName = "d3-stories-instagram-example (iOS)"; 124 | productReference = B2C8A3BB286446E300097727 /* d3-stories-instagram-example.app */; 125 | productType = "com.apple.product-type.application"; 126 | }; 127 | B2C8A3C0286446E300097727 /* d3-stories-instagram-example (macOS) */ = { 128 | isa = PBXNativeTarget; 129 | buildConfigurationList = B2C8A3CF286446E300097727 /* Build configuration list for PBXNativeTarget "d3-stories-instagram-example (macOS)" */; 130 | buildPhases = ( 131 | B2C8A3BD286446E300097727 /* Sources */, 132 | B2C8A3BE286446E300097727 /* Frameworks */, 133 | B2C8A3BF286446E300097727 /* Resources */, 134 | ); 135 | buildRules = ( 136 | ); 137 | dependencies = ( 138 | ); 139 | name = "d3-stories-instagram-example (macOS)"; 140 | packageProductDependencies = ( 141 | 786796312CF73C7600352F7A /* d3-stories-instagram */, 142 | ); 143 | productName = "d3-stories-instagram-example (macOS)"; 144 | productReference = B2C8A3C1286446E300097727 /* d3-stories-instagram-example.app */; 145 | productType = "com.apple.product-type.application"; 146 | }; 147 | /* End PBXNativeTarget section */ 148 | 149 | /* Begin PBXProject section */ 150 | B2C8A3AF286446E100097727 /* Project object */ = { 151 | isa = PBXProject; 152 | attributes = { 153 | BuildIndependentTargetsInParallel = 1; 154 | LastSwiftUpdateCheck = 1340; 155 | LastUpgradeCheck = 1340; 156 | TargetAttributes = { 157 | B2C8A3BA286446E300097727 = { 158 | CreatedOnToolsVersion = 13.4.1; 159 | }; 160 | B2C8A3C0286446E300097727 = { 161 | CreatedOnToolsVersion = 13.4.1; 162 | }; 163 | }; 164 | }; 165 | buildConfigurationList = B2C8A3B2286446E100097727 /* Build configuration list for PBXProject "d3-stories-instagram-example" */; 166 | compatibilityVersion = "Xcode 13.0"; 167 | developmentRegion = en; 168 | hasScannedForEncodings = 0; 169 | knownRegions = ( 170 | en, 171 | Base, 172 | es, 173 | ); 174 | mainGroup = B2C8A3AE286446E100097727; 175 | packageReferences = ( 176 | 7867962E2CF73C5A00352F7A /* XCRemoteSwiftPackageReference "d3-stories-instagram" */, 177 | ); 178 | productRefGroup = B2C8A3BC286446E300097727 /* Products */; 179 | projectDirPath = ""; 180 | projectRoot = ""; 181 | targets = ( 182 | B2C8A3BA286446E300097727 /* d3-stories-instagram-example (iOS) */, 183 | B2C8A3C0286446E300097727 /* d3-stories-instagram-example (macOS) */, 184 | ); 185 | }; 186 | /* End PBXProject section */ 187 | 188 | /* Begin PBXResourcesBuildPhase section */ 189 | B2C8A3B9286446E300097727 /* Resources */ = { 190 | isa = PBXResourcesBuildPhase; 191 | buildActionMask = 2147483647; 192 | files = ( 193 | B2903272286B0C88007E0B93 /* README.md in Resources */, 194 | B2C8A3C8286446E300097727 /* Assets.xcassets in Resources */, 195 | ); 196 | runOnlyForDeploymentPostprocessing = 0; 197 | }; 198 | B2C8A3BF286446E300097727 /* Resources */ = { 199 | isa = PBXResourcesBuildPhase; 200 | buildActionMask = 2147483647; 201 | files = ( 202 | B2C8A3C9286446E300097727 /* Assets.xcassets in Resources */, 203 | ); 204 | runOnlyForDeploymentPostprocessing = 0; 205 | }; 206 | /* End PBXResourcesBuildPhase section */ 207 | 208 | /* Begin PBXSourcesBuildPhase section */ 209 | B2C8A3B7286446E300097727 /* Sources */ = { 210 | isa = PBXSourcesBuildPhase; 211 | buildActionMask = 2147483647; 212 | files = ( 213 | B2C8A3C6286446E300097727 /* ContentView.swift in Sources */, 214 | B2C8A3C4286446E300097727 /* d3_stories_instagram_exampleApp.swift in Sources */, 215 | ); 216 | runOnlyForDeploymentPostprocessing = 0; 217 | }; 218 | B2C8A3BD286446E300097727 /* Sources */ = { 219 | isa = PBXSourcesBuildPhase; 220 | buildActionMask = 2147483647; 221 | files = ( 222 | B2C8A3C7286446E300097727 /* ContentView.swift in Sources */, 223 | B2C8A3C5286446E300097727 /* d3_stories_instagram_exampleApp.swift in Sources */, 224 | ); 225 | runOnlyForDeploymentPostprocessing = 0; 226 | }; 227 | /* End PBXSourcesBuildPhase section */ 228 | 229 | /* Begin XCBuildConfiguration section */ 230 | B2C8A3CA286446E300097727 /* Debug */ = { 231 | isa = XCBuildConfiguration; 232 | buildSettings = { 233 | ALWAYS_SEARCH_USER_PATHS = NO; 234 | CLANG_ANALYZER_NONNULL = YES; 235 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 236 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++17"; 237 | CLANG_ENABLE_MODULES = YES; 238 | CLANG_ENABLE_OBJC_ARC = YES; 239 | CLANG_ENABLE_OBJC_WEAK = YES; 240 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 241 | CLANG_WARN_BOOL_CONVERSION = YES; 242 | CLANG_WARN_COMMA = YES; 243 | CLANG_WARN_CONSTANT_CONVERSION = YES; 244 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 245 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 246 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 247 | CLANG_WARN_EMPTY_BODY = YES; 248 | CLANG_WARN_ENUM_CONVERSION = YES; 249 | CLANG_WARN_INFINITE_RECURSION = YES; 250 | CLANG_WARN_INT_CONVERSION = YES; 251 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 252 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 253 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 254 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 255 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 256 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 257 | CLANG_WARN_STRICT_PROTOTYPES = YES; 258 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 259 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 260 | CLANG_WARN_UNREACHABLE_CODE = YES; 261 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 262 | COPY_PHASE_STRIP = NO; 263 | DEBUG_INFORMATION_FORMAT = dwarf; 264 | ENABLE_STRICT_OBJC_MSGSEND = YES; 265 | ENABLE_TESTABILITY = YES; 266 | GCC_C_LANGUAGE_STANDARD = gnu11; 267 | GCC_DYNAMIC_NO_PIC = NO; 268 | GCC_NO_COMMON_BLOCKS = YES; 269 | GCC_OPTIMIZATION_LEVEL = 0; 270 | GCC_PREPROCESSOR_DEFINITIONS = ( 271 | "DEBUG=1", 272 | "$(inherited)", 273 | ); 274 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 275 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 276 | GCC_WARN_UNDECLARED_SELECTOR = YES; 277 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 278 | GCC_WARN_UNUSED_FUNCTION = YES; 279 | GCC_WARN_UNUSED_VARIABLE = YES; 280 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 281 | MTL_FAST_MATH = YES; 282 | ONLY_ACTIVE_ARCH = YES; 283 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 284 | SWIFT_EMIT_LOC_STRINGS = YES; 285 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 286 | }; 287 | name = Debug; 288 | }; 289 | B2C8A3CB286446E300097727 /* Release */ = { 290 | isa = XCBuildConfiguration; 291 | buildSettings = { 292 | ALWAYS_SEARCH_USER_PATHS = NO; 293 | CLANG_ANALYZER_NONNULL = YES; 294 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 295 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++17"; 296 | CLANG_ENABLE_MODULES = YES; 297 | CLANG_ENABLE_OBJC_ARC = YES; 298 | CLANG_ENABLE_OBJC_WEAK = YES; 299 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 300 | CLANG_WARN_BOOL_CONVERSION = YES; 301 | CLANG_WARN_COMMA = YES; 302 | CLANG_WARN_CONSTANT_CONVERSION = YES; 303 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 304 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 305 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 306 | CLANG_WARN_EMPTY_BODY = YES; 307 | CLANG_WARN_ENUM_CONVERSION = YES; 308 | CLANG_WARN_INFINITE_RECURSION = YES; 309 | CLANG_WARN_INT_CONVERSION = YES; 310 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 311 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 312 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 313 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 314 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 315 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 316 | CLANG_WARN_STRICT_PROTOTYPES = YES; 317 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 318 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 319 | CLANG_WARN_UNREACHABLE_CODE = YES; 320 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 321 | COPY_PHASE_STRIP = NO; 322 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 323 | ENABLE_NS_ASSERTIONS = NO; 324 | ENABLE_STRICT_OBJC_MSGSEND = YES; 325 | GCC_C_LANGUAGE_STANDARD = gnu11; 326 | GCC_NO_COMMON_BLOCKS = YES; 327 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 328 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 329 | GCC_WARN_UNDECLARED_SELECTOR = YES; 330 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 331 | GCC_WARN_UNUSED_FUNCTION = YES; 332 | GCC_WARN_UNUSED_VARIABLE = YES; 333 | MTL_ENABLE_DEBUG_INFO = NO; 334 | MTL_FAST_MATH = YES; 335 | SWIFT_COMPILATION_MODE = wholemodule; 336 | SWIFT_EMIT_LOC_STRINGS = YES; 337 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 338 | }; 339 | name = Release; 340 | }; 341 | B2C8A3CD286446E300097727 /* Debug */ = { 342 | isa = XCBuildConfiguration; 343 | buildSettings = { 344 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 345 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 346 | CODE_SIGN_STYLE = Automatic; 347 | CURRENT_PROJECT_VERSION = 1; 348 | DEVELOPMENT_TEAM = FZ42RW4USG; 349 | ENABLE_PREVIEWS = YES; 350 | GENERATE_INFOPLIST_FILE = YES; 351 | INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; 352 | INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; 353 | INFOPLIST_KEY_UILaunchScreen_Generation = YES; 354 | INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; 355 | INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; 356 | IPHONEOS_DEPLOYMENT_TARGET = 15.5; 357 | LD_RUNPATH_SEARCH_PATHS = ( 358 | "$(inherited)", 359 | "@executable_path/Frameworks", 360 | ); 361 | MARKETING_VERSION = 1.0; 362 | PRODUCT_BUNDLE_IDENTIFIER = "ishelopaev.d3-stories-instagram-example"; 363 | PRODUCT_NAME = "d3-stories-instagram-example"; 364 | SDKROOT = iphoneos; 365 | SWIFT_EMIT_LOC_STRINGS = YES; 366 | SWIFT_VERSION = 5.0; 367 | TARGETED_DEVICE_FAMILY = "1,2"; 368 | }; 369 | name = Debug; 370 | }; 371 | B2C8A3CE286446E300097727 /* Release */ = { 372 | isa = XCBuildConfiguration; 373 | buildSettings = { 374 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 375 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 376 | CODE_SIGN_STYLE = Automatic; 377 | CURRENT_PROJECT_VERSION = 1; 378 | DEVELOPMENT_TEAM = FZ42RW4USG; 379 | ENABLE_PREVIEWS = YES; 380 | GENERATE_INFOPLIST_FILE = YES; 381 | INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; 382 | INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; 383 | INFOPLIST_KEY_UILaunchScreen_Generation = YES; 384 | INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; 385 | INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; 386 | IPHONEOS_DEPLOYMENT_TARGET = 15.5; 387 | LD_RUNPATH_SEARCH_PATHS = ( 388 | "$(inherited)", 389 | "@executable_path/Frameworks", 390 | ); 391 | MARKETING_VERSION = 1.0; 392 | PRODUCT_BUNDLE_IDENTIFIER = "ishelopaev.d3-stories-instagram-example"; 393 | PRODUCT_NAME = "d3-stories-instagram-example"; 394 | SDKROOT = iphoneos; 395 | SWIFT_EMIT_LOC_STRINGS = YES; 396 | SWIFT_VERSION = 5.0; 397 | TARGETED_DEVICE_FAMILY = "1,2"; 398 | VALIDATE_PRODUCT = YES; 399 | }; 400 | name = Release; 401 | }; 402 | B2C8A3D0286446E300097727 /* Debug */ = { 403 | isa = XCBuildConfiguration; 404 | buildSettings = { 405 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 406 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 407 | CODE_SIGN_ENTITLEMENTS = macOS/macOS.entitlements; 408 | CODE_SIGN_STYLE = Automatic; 409 | COMBINE_HIDPI_IMAGES = YES; 410 | CURRENT_PROJECT_VERSION = 1; 411 | DEVELOPMENT_TEAM = FZ42RW4USG; 412 | ENABLE_HARDENED_RUNTIME = YES; 413 | ENABLE_PREVIEWS = YES; 414 | GENERATE_INFOPLIST_FILE = YES; 415 | INFOPLIST_KEY_NSHumanReadableCopyright = ""; 416 | LD_RUNPATH_SEARCH_PATHS = ( 417 | "$(inherited)", 418 | "@executable_path/../Frameworks", 419 | ); 420 | MACOSX_DEPLOYMENT_TARGET = 12.3; 421 | MARKETING_VERSION = 1.0; 422 | PRODUCT_BUNDLE_IDENTIFIER = "ishelopaev.d3-stories-instagram-example"; 423 | PRODUCT_NAME = "d3-stories-instagram-example"; 424 | SDKROOT = macosx; 425 | SWIFT_EMIT_LOC_STRINGS = YES; 426 | SWIFT_VERSION = 5.0; 427 | }; 428 | name = Debug; 429 | }; 430 | B2C8A3D1286446E300097727 /* Release */ = { 431 | isa = XCBuildConfiguration; 432 | buildSettings = { 433 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 434 | ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; 435 | CODE_SIGN_ENTITLEMENTS = macOS/macOS.entitlements; 436 | CODE_SIGN_STYLE = Automatic; 437 | COMBINE_HIDPI_IMAGES = YES; 438 | CURRENT_PROJECT_VERSION = 1; 439 | DEVELOPMENT_TEAM = FZ42RW4USG; 440 | ENABLE_HARDENED_RUNTIME = YES; 441 | ENABLE_PREVIEWS = YES; 442 | GENERATE_INFOPLIST_FILE = YES; 443 | INFOPLIST_KEY_NSHumanReadableCopyright = ""; 444 | LD_RUNPATH_SEARCH_PATHS = ( 445 | "$(inherited)", 446 | "@executable_path/../Frameworks", 447 | ); 448 | MACOSX_DEPLOYMENT_TARGET = 12.3; 449 | MARKETING_VERSION = 1.0; 450 | PRODUCT_BUNDLE_IDENTIFIER = "ishelopaev.d3-stories-instagram-example"; 451 | PRODUCT_NAME = "d3-stories-instagram-example"; 452 | SDKROOT = macosx; 453 | SWIFT_EMIT_LOC_STRINGS = YES; 454 | SWIFT_VERSION = 5.0; 455 | }; 456 | name = Release; 457 | }; 458 | /* End XCBuildConfiguration section */ 459 | 460 | /* Begin XCConfigurationList section */ 461 | B2C8A3B2286446E100097727 /* Build configuration list for PBXProject "d3-stories-instagram-example" */ = { 462 | isa = XCConfigurationList; 463 | buildConfigurations = ( 464 | B2C8A3CA286446E300097727 /* Debug */, 465 | B2C8A3CB286446E300097727 /* Release */, 466 | ); 467 | defaultConfigurationIsVisible = 0; 468 | defaultConfigurationName = Release; 469 | }; 470 | B2C8A3CC286446E300097727 /* Build configuration list for PBXNativeTarget "d3-stories-instagram-example (iOS)" */ = { 471 | isa = XCConfigurationList; 472 | buildConfigurations = ( 473 | B2C8A3CD286446E300097727 /* Debug */, 474 | B2C8A3CE286446E300097727 /* Release */, 475 | ); 476 | defaultConfigurationIsVisible = 0; 477 | defaultConfigurationName = Release; 478 | }; 479 | B2C8A3CF286446E300097727 /* Build configuration list for PBXNativeTarget "d3-stories-instagram-example (macOS)" */ = { 480 | isa = XCConfigurationList; 481 | buildConfigurations = ( 482 | B2C8A3D0286446E300097727 /* Debug */, 483 | B2C8A3D1286446E300097727 /* Release */, 484 | ); 485 | defaultConfigurationIsVisible = 0; 486 | defaultConfigurationName = Release; 487 | }; 488 | /* End XCConfigurationList section */ 489 | 490 | /* Begin XCRemoteSwiftPackageReference section */ 491 | 7867962E2CF73C5A00352F7A /* XCRemoteSwiftPackageReference "d3-stories-instagram" */ = { 492 | isa = XCRemoteSwiftPackageReference; 493 | repositoryURL = "https://github.com/swiftuiux/d3-stories-instagram"; 494 | requirement = { 495 | branch = main; 496 | kind = branch; 497 | }; 498 | }; 499 | /* End XCRemoteSwiftPackageReference section */ 500 | 501 | /* Begin XCSwiftPackageProductDependency section */ 502 | 7867962F2CF73C6B00352F7A /* d3-stories-instagram */ = { 503 | isa = XCSwiftPackageProductDependency; 504 | package = 7867962E2CF73C5A00352F7A /* XCRemoteSwiftPackageReference "d3-stories-instagram" */; 505 | productName = "d3-stories-instagram"; 506 | }; 507 | 786796312CF73C7600352F7A /* d3-stories-instagram */ = { 508 | isa = XCSwiftPackageProductDependency; 509 | package = 7867962E2CF73C5A00352F7A /* XCRemoteSwiftPackageReference "d3-stories-instagram" */; 510 | productName = "d3-stories-instagram"; 511 | }; 512 | /* End XCSwiftPackageProductDependency section */ 513 | }; 514 | rootObject = B2C8A3AF286446E100097727 /* Project object */; 515 | } 516 | -------------------------------------------------------------------------------- /d3-stories-instagram-example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /d3-stories-instagram-example.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /macOS/macOS.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | com.apple.security.files.user-selected.read-only 8 | 9 | 10 | 11 | --------------------------------------------------------------------------------