react-native-kenburns-view 4.1.0 → 5.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/README.md +58 -23
  2. package/example/kenburns-example/App.js +78 -0
  3. package/example/kenburns-example/README.md +20 -0
  4. package/example/kenburns-example/app.json +21 -0
  5. package/example/kenburns-example/babel.config.js +6 -0
  6. package/example/kenburns-example/ios/.xcode.env +11 -0
  7. package/example/kenburns-example/ios/KenBurnsExample/AppDelegate.swift +69 -0
  8. package/example/kenburns-example/ios/KenBurnsExample/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png +0 -0
  9. package/example/kenburns-example/ios/KenBurnsExample/Images.xcassets/AppIcon.appiconset/Contents.json +14 -0
  10. package/example/{KenBurnsExample/ios/KenBurnsExampleNew → kenburns-example/ios/KenBurnsExample}/Images.xcassets/Contents.json +1 -1
  11. package/example/kenburns-example/ios/KenBurnsExample/Images.xcassets/SplashScreenBackground.colorset/Contents.json +20 -0
  12. package/example/{KenBurnsExample/ios/KenBurnsExampleNew → kenburns-example/ios/KenBurnsExample}/Info.plist +41 -21
  13. package/example/kenburns-example/ios/KenBurnsExample/KenBurnsExample-Bridging-Header.h +3 -0
  14. package/example/kenburns-example/ios/KenBurnsExample/KenBurnsExample.entitlements +5 -0
  15. package/example/kenburns-example/ios/KenBurnsExample/PrivacyInfo.xcprivacy +48 -0
  16. package/example/kenburns-example/ios/KenBurnsExample/SplashScreen.storyboard +39 -0
  17. package/example/kenburns-example/ios/KenBurnsExample/Supporting/Expo.plist +12 -0
  18. package/example/kenburns-example/ios/KenBurnsExample.xcodeproj/project.pbxproj +544 -0
  19. package/example/{KenBurnsExample/ios/KenBurnsExampleNew.xcodeproj/xcshareddata/xcschemes/KenBurnsExampleNew.xcscheme → kenburns-example/ios/KenBurnsExample.xcodeproj/xcshareddata/xcschemes/KenBurnsExample.xcscheme} +14 -55
  20. package/example/kenburns-example/ios/KenBurnsExample.xcworkspace/contents.xcworkspacedata +10 -0
  21. package/example/kenburns-example/ios/Podfile +63 -0
  22. package/example/kenburns-example/ios/Podfile.lock +2195 -0
  23. package/example/kenburns-example/ios/Podfile.properties.json +4 -0
  24. package/example/kenburns-example/metro.config.js +20 -0
  25. package/example/kenburns-example/package-lock.json +7160 -0
  26. package/example/kenburns-example/package.json +25 -0
  27. package/lib/KenBurnsView.js +206 -106
  28. package/package.json +2 -5
  29. package/example/KenBurnsExample/.babelrc +0 -3
  30. package/example/KenBurnsExample/.buckconfig +0 -6
  31. package/example/KenBurnsExample/.flowconfig +0 -67
  32. package/example/KenBurnsExample/.gitattributes +0 -1
  33. package/example/KenBurnsExample/.snyk +0 -10
  34. package/example/KenBurnsExample/.watchmanconfig +0 -1
  35. package/example/KenBurnsExample/App.js +0 -64
  36. package/example/KenBurnsExample/android/app/BUCK +0 -65
  37. package/example/KenBurnsExample/android/app/build.gradle +0 -150
  38. package/example/KenBurnsExample/android/app/proguard-rules.pro +0 -17
  39. package/example/KenBurnsExample/android/app/src/main/AndroidManifest.xml +0 -26
  40. package/example/KenBurnsExample/android/app/src/main/java/com/kenburnsexamplenew/MainActivity.java +0 -15
  41. package/example/KenBurnsExample/android/app/src/main/java/com/kenburnsexamplenew/MainApplication.java +0 -45
  42. package/example/KenBurnsExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  43. package/example/KenBurnsExample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  44. package/example/KenBurnsExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  45. package/example/KenBurnsExample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  46. package/example/KenBurnsExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  47. package/example/KenBurnsExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  48. package/example/KenBurnsExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  49. package/example/KenBurnsExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  50. package/example/KenBurnsExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  51. package/example/KenBurnsExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  52. package/example/KenBurnsExample/android/app/src/main/res/values/strings.xml +0 -3
  53. package/example/KenBurnsExample/android/app/src/main/res/values/styles.xml +0 -8
  54. package/example/KenBurnsExample/android/build.gradle +0 -40
  55. package/example/KenBurnsExample/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  56. package/example/KenBurnsExample/android/gradle/wrapper/gradle-wrapper.properties +0 -5
  57. package/example/KenBurnsExample/android/gradle.properties +0 -20
  58. package/example/KenBurnsExample/android/gradlew +0 -164
  59. package/example/KenBurnsExample/android/gradlew.bat +0 -90
  60. package/example/KenBurnsExample/android/keystores/BUCK +0 -8
  61. package/example/KenBurnsExample/android/keystores/debug.keystore.properties +0 -4
  62. package/example/KenBurnsExample/android/settings.gradle +0 -3
  63. package/example/KenBurnsExample/app.json +0 -4
  64. package/example/KenBurnsExample/images/image1.jpg +0 -0
  65. package/example/KenBurnsExample/images/image2.jpg +0 -0
  66. package/example/KenBurnsExample/images/image3.jpg +0 -0
  67. package/example/KenBurnsExample/images/placeholder.jpg +0 -0
  68. package/example/KenBurnsExample/index.js +0 -7
  69. package/example/KenBurnsExample/ios/KenBurnsExampleNew/AppDelegate.h +0 -14
  70. package/example/KenBurnsExample/ios/KenBurnsExampleNew/AppDelegate.m +0 -35
  71. package/example/KenBurnsExample/ios/KenBurnsExampleNew/Base.lproj/LaunchScreen.xib +0 -42
  72. package/example/KenBurnsExample/ios/KenBurnsExampleNew/Images.xcassets/AppIcon.appiconset/Contents.json +0 -38
  73. package/example/KenBurnsExample/ios/KenBurnsExampleNew/main.m +0 -16
  74. package/example/KenBurnsExample/ios/KenBurnsExampleNew-tvOS/Info.plist +0 -54
  75. package/example/KenBurnsExample/ios/KenBurnsExampleNew-tvOSTests/Info.plist +0 -24
  76. package/example/KenBurnsExample/ios/KenBurnsExampleNew.xcodeproj/project.pbxproj +0 -1468
  77. package/example/KenBurnsExample/ios/KenBurnsExampleNew.xcodeproj/xcshareddata/xcschemes/KenBurnsExampleNew-tvOS.xcscheme +0 -129
  78. package/example/KenBurnsExample/ios/KenBurnsExampleNewTests/Info.plist +0 -24
  79. package/example/KenBurnsExample/ios/KenBurnsExampleNewTests/KenBurnsExampleNewTests.m +0 -68
  80. package/example/KenBurnsExample/package.json +0 -27
  81. package/yarn.lock +0 -114
@@ -0,0 +1,544 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
11
+ 24951DA331CD281C3CE2C6DF /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 7338E40F5D307DD25EEAA451 /* PrivacyInfo.xcprivacy */; };
12
+ 39F45C7E7DE94FB788D8CBB5 /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33EF366607864DB0D49F514F /* ExpoModulesProvider.swift */; };
13
+ 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */; };
14
+ 42A1073F14DFB81720ABC71C /* libPods-KenBurnsExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7705903ACA19C994A7AA43ED /* libPods-KenBurnsExample.a */; };
15
+ BB2F792D24A3F905000567C9 /* Expo.plist in Resources */ = {isa = PBXBuildFile; fileRef = BB2F792C24A3F905000567C9 /* Expo.plist */; };
16
+ F11748422D0307B40044C1D9 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F11748412D0307B40044C1D9 /* AppDelegate.swift */; };
17
+ /* End PBXBuildFile section */
18
+
19
+ /* Begin PBXFileReference section */
20
+ 003D341CE16F9E97FB0F4FD6 /* Pods-KenBurnsExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KenBurnsExample.debug.xcconfig"; path = "Target Support Files/Pods-KenBurnsExample/Pods-KenBurnsExample.debug.xcconfig"; sourceTree = "<group>"; };
21
+ 13B07F961A680F5B00A75B9A /* KenBurnsExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = KenBurnsExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
22
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = KenBurnsExample/Images.xcassets; sourceTree = "<group>"; };
23
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = KenBurnsExample/Info.plist; sourceTree = "<group>"; };
24
+ 33EF366607864DB0D49F514F /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-KenBurnsExample/ExpoModulesProvider.swift"; sourceTree = "<group>"; };
25
+ 7338E40F5D307DD25EEAA451 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = KenBurnsExample/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
26
+ 7705903ACA19C994A7AA43ED /* libPods-KenBurnsExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-KenBurnsExample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
27
+ AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = SplashScreen.storyboard; path = KenBurnsExample/SplashScreen.storyboard; sourceTree = "<group>"; };
28
+ BB2F792C24A3F905000567C9 /* Expo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Expo.plist; sourceTree = "<group>"; };
29
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
30
+ F11748412D0307B40044C1D9 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = KenBurnsExample/AppDelegate.swift; sourceTree = "<group>"; };
31
+ F11748442D0722820044C1D9 /* KenBurnsExample-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "KenBurnsExample-Bridging-Header.h"; path = "KenBurnsExample/KenBurnsExample-Bridging-Header.h"; sourceTree = "<group>"; };
32
+ F9C35C60AA75B6FE6ED41387 /* Pods-KenBurnsExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KenBurnsExample.release.xcconfig"; path = "Target Support Files/Pods-KenBurnsExample/Pods-KenBurnsExample.release.xcconfig"; sourceTree = "<group>"; };
33
+ /* End PBXFileReference section */
34
+
35
+ /* Begin PBXFrameworksBuildPhase section */
36
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
37
+ isa = PBXFrameworksBuildPhase;
38
+ buildActionMask = 2147483647;
39
+ files = (
40
+ 42A1073F14DFB81720ABC71C /* libPods-KenBurnsExample.a in Frameworks */,
41
+ );
42
+ runOnlyForDeploymentPostprocessing = 0;
43
+ };
44
+ /* End PBXFrameworksBuildPhase section */
45
+
46
+ /* Begin PBXGroup section */
47
+ 13B07FAE1A68108700A75B9A /* KenBurnsExample */ = {
48
+ isa = PBXGroup;
49
+ children = (
50
+ F11748412D0307B40044C1D9 /* AppDelegate.swift */,
51
+ F11748442D0722820044C1D9 /* KenBurnsExample-Bridging-Header.h */,
52
+ BB2F792B24A3F905000567C9 /* Supporting */,
53
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
54
+ 13B07FB61A68108700A75B9A /* Info.plist */,
55
+ AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */,
56
+ 7338E40F5D307DD25EEAA451 /* PrivacyInfo.xcprivacy */,
57
+ );
58
+ name = KenBurnsExample;
59
+ sourceTree = "<group>";
60
+ };
61
+ 21B97D8BD7439DCFEA87456D /* Pods */ = {
62
+ isa = PBXGroup;
63
+ children = (
64
+ 003D341CE16F9E97FB0F4FD6 /* Pods-KenBurnsExample.debug.xcconfig */,
65
+ F9C35C60AA75B6FE6ED41387 /* Pods-KenBurnsExample.release.xcconfig */,
66
+ );
67
+ name = Pods;
68
+ path = Pods;
69
+ sourceTree = "<group>";
70
+ };
71
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
72
+ isa = PBXGroup;
73
+ children = (
74
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
75
+ 7705903ACA19C994A7AA43ED /* libPods-KenBurnsExample.a */,
76
+ );
77
+ name = Frameworks;
78
+ sourceTree = "<group>";
79
+ };
80
+ 3E1FFFDB52EE0E4B8C0D2B21 /* ExpoModulesProviders */ = {
81
+ isa = PBXGroup;
82
+ children = (
83
+ 519BE66EA6E553233FB9A5F7 /* KenBurnsExample */,
84
+ );
85
+ name = ExpoModulesProviders;
86
+ sourceTree = "<group>";
87
+ };
88
+ 519BE66EA6E553233FB9A5F7 /* KenBurnsExample */ = {
89
+ isa = PBXGroup;
90
+ children = (
91
+ 33EF366607864DB0D49F514F /* ExpoModulesProvider.swift */,
92
+ );
93
+ name = KenBurnsExample;
94
+ sourceTree = "<group>";
95
+ };
96
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
97
+ isa = PBXGroup;
98
+ children = (
99
+ );
100
+ name = Libraries;
101
+ sourceTree = "<group>";
102
+ };
103
+ 83CBB9F61A601CBA00E9B192 = {
104
+ isa = PBXGroup;
105
+ children = (
106
+ 13B07FAE1A68108700A75B9A /* KenBurnsExample */,
107
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
108
+ 83CBBA001A601CBA00E9B192 /* Products */,
109
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
110
+ 21B97D8BD7439DCFEA87456D /* Pods */,
111
+ 3E1FFFDB52EE0E4B8C0D2B21 /* ExpoModulesProviders */,
112
+ );
113
+ indentWidth = 2;
114
+ sourceTree = "<group>";
115
+ tabWidth = 2;
116
+ usesTabs = 0;
117
+ };
118
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
119
+ isa = PBXGroup;
120
+ children = (
121
+ 13B07F961A680F5B00A75B9A /* KenBurnsExample.app */,
122
+ );
123
+ name = Products;
124
+ sourceTree = "<group>";
125
+ };
126
+ BB2F792B24A3F905000567C9 /* Supporting */ = {
127
+ isa = PBXGroup;
128
+ children = (
129
+ BB2F792C24A3F905000567C9 /* Expo.plist */,
130
+ );
131
+ name = Supporting;
132
+ path = KenBurnsExample/Supporting;
133
+ sourceTree = "<group>";
134
+ };
135
+ /* End PBXGroup section */
136
+
137
+ /* Begin PBXNativeTarget section */
138
+ 13B07F861A680F5B00A75B9A /* KenBurnsExample */ = {
139
+ isa = PBXNativeTarget;
140
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "KenBurnsExample" */;
141
+ buildPhases = (
142
+ 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */,
143
+ 7EC7FDF4D5B7371E54A5698E /* [Expo] Configure project */,
144
+ 13B07F871A680F5B00A75B9A /* Sources */,
145
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
146
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
147
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
148
+ 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */,
149
+ 456522CEB702EB10A361FF6F /* [CP] Embed Pods Frameworks */,
150
+ );
151
+ buildRules = (
152
+ );
153
+ dependencies = (
154
+ );
155
+ name = KenBurnsExample;
156
+ productName = KenBurnsExample;
157
+ productReference = 13B07F961A680F5B00A75B9A /* KenBurnsExample.app */;
158
+ productType = "com.apple.product-type.application";
159
+ };
160
+ /* End PBXNativeTarget section */
161
+
162
+ /* Begin PBXProject section */
163
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
164
+ isa = PBXProject;
165
+ attributes = {
166
+ LastUpgradeCheck = 1130;
167
+ TargetAttributes = {
168
+ 13B07F861A680F5B00A75B9A = {
169
+ LastSwiftMigration = 1250;
170
+ };
171
+ };
172
+ };
173
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "KenBurnsExample" */;
174
+ compatibilityVersion = "Xcode 3.2";
175
+ developmentRegion = en;
176
+ hasScannedForEncodings = 0;
177
+ knownRegions = (
178
+ en,
179
+ Base,
180
+ );
181
+ mainGroup = 83CBB9F61A601CBA00E9B192;
182
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
183
+ projectDirPath = "";
184
+ projectRoot = "";
185
+ targets = (
186
+ 13B07F861A680F5B00A75B9A /* KenBurnsExample */,
187
+ );
188
+ };
189
+ /* End PBXProject section */
190
+
191
+ /* Begin PBXResourcesBuildPhase section */
192
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
193
+ isa = PBXResourcesBuildPhase;
194
+ buildActionMask = 2147483647;
195
+ files = (
196
+ BB2F792D24A3F905000567C9 /* Expo.plist in Resources */,
197
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
198
+ 3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */,
199
+ 24951DA331CD281C3CE2C6DF /* PrivacyInfo.xcprivacy in Resources */,
200
+ );
201
+ runOnlyForDeploymentPostprocessing = 0;
202
+ };
203
+ /* End PBXResourcesBuildPhase section */
204
+
205
+ /* Begin PBXShellScriptBuildPhase section */
206
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
207
+ isa = PBXShellScriptBuildPhase;
208
+ alwaysOutOfDate = 1;
209
+ buildActionMask = 2147483647;
210
+ files = (
211
+ );
212
+ inputPaths = (
213
+ "$(SRCROOT)/.xcode.env",
214
+ "$(SRCROOT)/.xcode.env.local",
215
+ );
216
+ name = "Bundle React Native code and images";
217
+ outputPaths = (
218
+ );
219
+ runOnlyForDeploymentPostprocessing = 0;
220
+ shellPath = /bin/sh;
221
+ shellScript = "if [[ -f \"$PODS_ROOT/../.xcode.env\" ]]; then\n source \"$PODS_ROOT/../.xcode.env\"\nfi\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n# The project root by default is one level up from the ios directory\nexport PROJECT_ROOT=\"$PROJECT_DIR\"/..\n\nif [[ \"$CONFIGURATION\" = *Debug* ]]; then\n export SKIP_BUNDLING=1\nfi\nif [[ -z \"$ENTRY_FILE\" ]]; then\n # Set the entry JS file using the bundler's entry resolution.\n export ENTRY_FILE=\"$(\"$NODE_BINARY\" -e \"require('expo/scripts/resolveAppEntry')\" \"$PROJECT_ROOT\" ios absolute | tail -n 1)\"\nfi\n\nif [[ -z \"$CLI_PATH\" ]]; then\n # Use Expo CLI\n export CLI_PATH=\"$(\"$NODE_BINARY\" --print \"require.resolve('@expo/cli', { paths: [require.resolve('expo/package.json')] })\")\"\nfi\nif [[ -z \"$BUNDLE_COMMAND\" ]]; then\n # Default Expo CLI command for bundling\n export BUNDLE_COMMAND=\"export:embed\"\nfi\n\n# Source .xcode.env.updates if it exists to allow\n# SKIP_BUNDLING to be unset if needed\nif [[ -f \"$PODS_ROOT/../.xcode.env.updates\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.updates\"\nfi\n# Source local changes to allow overrides\n# if needed\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n`\"$NODE_BINARY\" --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'\"`\n\n";
222
+ };
223
+ 08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */ = {
224
+ isa = PBXShellScriptBuildPhase;
225
+ buildActionMask = 2147483647;
226
+ files = (
227
+ );
228
+ inputFileListPaths = (
229
+ );
230
+ inputPaths = (
231
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
232
+ "${PODS_ROOT}/Manifest.lock",
233
+ );
234
+ name = "[CP] Check Pods Manifest.lock";
235
+ outputFileListPaths = (
236
+ );
237
+ outputPaths = (
238
+ "$(DERIVED_FILE_DIR)/Pods-KenBurnsExample-checkManifestLockResult.txt",
239
+ );
240
+ runOnlyForDeploymentPostprocessing = 0;
241
+ shellPath = /bin/sh;
242
+ 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";
243
+ showEnvVarsInLog = 0;
244
+ };
245
+ 456522CEB702EB10A361FF6F /* [CP] Embed Pods Frameworks */ = {
246
+ isa = PBXShellScriptBuildPhase;
247
+ buildActionMask = 2147483647;
248
+ files = (
249
+ );
250
+ inputPaths = (
251
+ "${PODS_ROOT}/Target Support Files/Pods-KenBurnsExample/Pods-KenBurnsExample-frameworks.sh",
252
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/React-Core-prebuilt/React.framework/React",
253
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/ReactNativeDependencies/ReactNativeDependencies.framework/ReactNativeDependencies",
254
+ "${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/Pre-built/hermesvm.framework/hermesvm",
255
+ );
256
+ name = "[CP] Embed Pods Frameworks";
257
+ outputPaths = (
258
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/React.framework",
259
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ReactNativeDependencies.framework",
260
+ "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermesvm.framework",
261
+ );
262
+ runOnlyForDeploymentPostprocessing = 0;
263
+ shellPath = /bin/sh;
264
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KenBurnsExample/Pods-KenBurnsExample-frameworks.sh\"\n";
265
+ showEnvVarsInLog = 0;
266
+ };
267
+ 7EC7FDF4D5B7371E54A5698E /* [Expo] Configure project */ = {
268
+ isa = PBXShellScriptBuildPhase;
269
+ alwaysOutOfDate = 1;
270
+ buildActionMask = 2147483647;
271
+ files = (
272
+ );
273
+ inputFileListPaths = (
274
+ );
275
+ inputPaths = (
276
+ "$(SRCROOT)/.xcode.env",
277
+ "$(SRCROOT)/.xcode.env.local",
278
+ "$(SRCROOT)/KenBurnsExample/KenBurnsExample.entitlements",
279
+ "$(SRCROOT)/Pods/Target Support Files/Pods-KenBurnsExample/expo-configure-project.sh",
280
+ );
281
+ name = "[Expo] Configure project";
282
+ outputFileListPaths = (
283
+ );
284
+ outputPaths = (
285
+ "$(SRCROOT)/Pods/Target Support Files/Pods-KenBurnsExample/ExpoModulesProvider.swift",
286
+ );
287
+ runOnlyForDeploymentPostprocessing = 0;
288
+ shellPath = /bin/sh;
289
+ shellScript = "# This script configures Expo modules and generates the modules provider file.\nbash -l -c \"./Pods/Target\\ Support\\ Files/Pods-KenBurnsExample/expo-configure-project.sh\"\n";
290
+ };
291
+ 800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */ = {
292
+ isa = PBXShellScriptBuildPhase;
293
+ buildActionMask = 2147483647;
294
+ files = (
295
+ );
296
+ inputPaths = (
297
+ "${PODS_ROOT}/Target Support Files/Pods-KenBurnsExample/Pods-KenBurnsExample-resources.sh",
298
+ "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/EXConstants.bundle",
299
+ "${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/ExpoConstants_privacy.bundle",
300
+ "${PODS_CONFIGURATION_BUILD_DIR}/ExpoFileSystem/ExpoFileSystem_privacy.bundle",
301
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/React-Core_privacy.bundle",
302
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact/React-cxxreact_privacy.bundle",
303
+ );
304
+ name = "[CP] Copy Pods Resources";
305
+ outputPaths = (
306
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXConstants.bundle",
307
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoConstants_privacy.bundle",
308
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoFileSystem_privacy.bundle",
309
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-Core_privacy.bundle",
310
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-cxxreact_privacy.bundle",
311
+ );
312
+ runOnlyForDeploymentPostprocessing = 0;
313
+ shellPath = /bin/sh;
314
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KenBurnsExample/Pods-KenBurnsExample-resources.sh\"\n";
315
+ showEnvVarsInLog = 0;
316
+ };
317
+ /* End PBXShellScriptBuildPhase section */
318
+
319
+ /* Begin PBXSourcesBuildPhase section */
320
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
321
+ isa = PBXSourcesBuildPhase;
322
+ buildActionMask = 2147483647;
323
+ files = (
324
+ F11748422D0307B40044C1D9 /* AppDelegate.swift in Sources */,
325
+ 39F45C7E7DE94FB788D8CBB5 /* ExpoModulesProvider.swift in Sources */,
326
+ );
327
+ runOnlyForDeploymentPostprocessing = 0;
328
+ };
329
+ /* End PBXSourcesBuildPhase section */
330
+
331
+ /* Begin XCBuildConfiguration section */
332
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
333
+ isa = XCBuildConfiguration;
334
+ baseConfigurationReference = 003D341CE16F9E97FB0F4FD6 /* Pods-KenBurnsExample.debug.xcconfig */;
335
+ buildSettings = {
336
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
337
+ CLANG_ENABLE_MODULES = YES;
338
+ CODE_SIGN_ENTITLEMENTS = KenBurnsExample/KenBurnsExample.entitlements;
339
+ CURRENT_PROJECT_VERSION = 1;
340
+ ENABLE_BITCODE = NO;
341
+ GCC_PREPROCESSOR_DEFINITIONS = (
342
+ "$(inherited)",
343
+ "FB_SONARKIT_ENABLED=1",
344
+ );
345
+ INFOPLIST_FILE = KenBurnsExample/Info.plist;
346
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
347
+ LD_RUNPATH_SEARCH_PATHS = (
348
+ "$(inherited)",
349
+ "@executable_path/Frameworks",
350
+ );
351
+ MARKETING_VERSION = 1.0;
352
+ OTHER_LDFLAGS = (
353
+ "$(inherited)",
354
+ "-ObjC",
355
+ "-lc++",
356
+ );
357
+ OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
358
+ PRODUCT_BUNDLE_IDENTIFIER = "com.anonymous.kenburns-example";
359
+ PRODUCT_NAME = KenBurnsExample;
360
+ SWIFT_OBJC_BRIDGING_HEADER = "KenBurnsExample/KenBurnsExample-Bridging-Header.h";
361
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
362
+ SWIFT_VERSION = 5.0;
363
+ TARGETED_DEVICE_FAMILY = "1,2";
364
+ VERSIONING_SYSTEM = "apple-generic";
365
+ };
366
+ name = Debug;
367
+ };
368
+ 13B07F951A680F5B00A75B9A /* Release */ = {
369
+ isa = XCBuildConfiguration;
370
+ baseConfigurationReference = F9C35C60AA75B6FE6ED41387 /* Pods-KenBurnsExample.release.xcconfig */;
371
+ buildSettings = {
372
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
373
+ CLANG_ENABLE_MODULES = YES;
374
+ CODE_SIGN_ENTITLEMENTS = KenBurnsExample/KenBurnsExample.entitlements;
375
+ CURRENT_PROJECT_VERSION = 1;
376
+ INFOPLIST_FILE = KenBurnsExample/Info.plist;
377
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
378
+ LD_RUNPATH_SEARCH_PATHS = (
379
+ "$(inherited)",
380
+ "@executable_path/Frameworks",
381
+ );
382
+ MARKETING_VERSION = 1.0;
383
+ OTHER_LDFLAGS = (
384
+ "$(inherited)",
385
+ "-ObjC",
386
+ "-lc++",
387
+ );
388
+ OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
389
+ PRODUCT_BUNDLE_IDENTIFIER = "com.anonymous.kenburns-example";
390
+ PRODUCT_NAME = KenBurnsExample;
391
+ SWIFT_OBJC_BRIDGING_HEADER = "KenBurnsExample/KenBurnsExample-Bridging-Header.h";
392
+ SWIFT_VERSION = 5.0;
393
+ TARGETED_DEVICE_FAMILY = "1,2";
394
+ VERSIONING_SYSTEM = "apple-generic";
395
+ };
396
+ name = Release;
397
+ };
398
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
399
+ isa = XCBuildConfiguration;
400
+ buildSettings = {
401
+ ALWAYS_SEARCH_USER_PATHS = NO;
402
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
403
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
404
+ CLANG_CXX_LIBRARY = "libc++";
405
+ CLANG_ENABLE_MODULES = YES;
406
+ CLANG_ENABLE_OBJC_ARC = YES;
407
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
408
+ CLANG_WARN_BOOL_CONVERSION = YES;
409
+ CLANG_WARN_COMMA = YES;
410
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
411
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
412
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
413
+ CLANG_WARN_EMPTY_BODY = YES;
414
+ CLANG_WARN_ENUM_CONVERSION = YES;
415
+ CLANG_WARN_INFINITE_RECURSION = YES;
416
+ CLANG_WARN_INT_CONVERSION = YES;
417
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
418
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
419
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
420
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
421
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
422
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
423
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
424
+ CLANG_WARN_UNREACHABLE_CODE = YES;
425
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
426
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
427
+ COPY_PHASE_STRIP = NO;
428
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
429
+ ENABLE_TESTABILITY = YES;
430
+ GCC_C_LANGUAGE_STANDARD = gnu99;
431
+ GCC_DYNAMIC_NO_PIC = NO;
432
+ GCC_NO_COMMON_BLOCKS = YES;
433
+ GCC_OPTIMIZATION_LEVEL = 0;
434
+ GCC_PREPROCESSOR_DEFINITIONS = (
435
+ "DEBUG=1",
436
+ "$(inherited)",
437
+ );
438
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
439
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
440
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
441
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
442
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
443
+ GCC_WARN_UNUSED_FUNCTION = YES;
444
+ GCC_WARN_UNUSED_VARIABLE = YES;
445
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
446
+ LD_RUNPATH_SEARCH_PATHS = (
447
+ /usr/lib/swift,
448
+ "$(inherited)",
449
+ );
450
+ LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
451
+ MTL_ENABLE_DEBUG_INFO = YES;
452
+ ONLY_ACTIVE_ARCH = YES;
453
+ OTHER_CFLAGS = "$(inherited)";
454
+ OTHER_CPLUSPLUSFLAGS = "$(inherited)";
455
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
456
+ SDKROOT = iphoneos;
457
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
458
+ SWIFT_ENABLE_EXPLICIT_MODULES = NO;
459
+ USE_HERMES = true;
460
+ };
461
+ name = Debug;
462
+ };
463
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
464
+ isa = XCBuildConfiguration;
465
+ buildSettings = {
466
+ ALWAYS_SEARCH_USER_PATHS = NO;
467
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
468
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
469
+ CLANG_CXX_LIBRARY = "libc++";
470
+ CLANG_ENABLE_MODULES = YES;
471
+ CLANG_ENABLE_OBJC_ARC = YES;
472
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
473
+ CLANG_WARN_BOOL_CONVERSION = YES;
474
+ CLANG_WARN_COMMA = YES;
475
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
476
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
477
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
478
+ CLANG_WARN_EMPTY_BODY = YES;
479
+ CLANG_WARN_ENUM_CONVERSION = YES;
480
+ CLANG_WARN_INFINITE_RECURSION = YES;
481
+ CLANG_WARN_INT_CONVERSION = YES;
482
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
483
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
484
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
485
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
486
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
487
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
488
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
489
+ CLANG_WARN_UNREACHABLE_CODE = YES;
490
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
491
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
492
+ COPY_PHASE_STRIP = YES;
493
+ ENABLE_NS_ASSERTIONS = NO;
494
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
495
+ GCC_C_LANGUAGE_STANDARD = gnu99;
496
+ GCC_NO_COMMON_BLOCKS = YES;
497
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
498
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
499
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
500
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
501
+ GCC_WARN_UNUSED_FUNCTION = YES;
502
+ GCC_WARN_UNUSED_VARIABLE = YES;
503
+ IPHONEOS_DEPLOYMENT_TARGET = 15.1;
504
+ LD_RUNPATH_SEARCH_PATHS = (
505
+ /usr/lib/swift,
506
+ "$(inherited)",
507
+ );
508
+ LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
509
+ MTL_ENABLE_DEBUG_INFO = NO;
510
+ OTHER_CFLAGS = "$(inherited)";
511
+ OTHER_CPLUSPLUSFLAGS = "$(inherited)";
512
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
513
+ SDKROOT = iphoneos;
514
+ SWIFT_ENABLE_EXPLICIT_MODULES = NO;
515
+ USE_HERMES = true;
516
+ VALIDATE_PRODUCT = YES;
517
+ };
518
+ name = Release;
519
+ };
520
+ /* End XCBuildConfiguration section */
521
+
522
+ /* Begin XCConfigurationList section */
523
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "KenBurnsExample" */ = {
524
+ isa = XCConfigurationList;
525
+ buildConfigurations = (
526
+ 13B07F941A680F5B00A75B9A /* Debug */,
527
+ 13B07F951A680F5B00A75B9A /* Release */,
528
+ );
529
+ defaultConfigurationIsVisible = 0;
530
+ defaultConfigurationName = Release;
531
+ };
532
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "KenBurnsExample" */ = {
533
+ isa = XCConfigurationList;
534
+ buildConfigurations = (
535
+ 83CBBA201A601CBA00E9B192 /* Debug */,
536
+ 83CBBA211A601CBA00E9B192 /* Release */,
537
+ );
538
+ defaultConfigurationIsVisible = 0;
539
+ defaultConfigurationName = Release;
540
+ };
541
+ /* End XCConfigurationList section */
542
+ };
543
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
544
+ }
@@ -1,25 +1,11 @@
1
1
  <?xml version="1.0" encoding="UTF-8"?>
2
2
  <Scheme
3
- LastUpgradeVersion = "0620"
3
+ LastUpgradeVersion = "1130"
4
4
  version = "1.3">
5
5
  <BuildAction
6
- parallelizeBuildables = "NO"
6
+ parallelizeBuildables = "YES"
7
7
  buildImplicitDependencies = "YES">
8
8
  <BuildActionEntries>
9
- <BuildActionEntry
10
- buildForTesting = "YES"
11
- buildForRunning = "YES"
12
- buildForProfiling = "YES"
13
- buildForArchiving = "YES"
14
- buildForAnalyzing = "YES">
15
- <BuildableReference
16
- BuildableIdentifier = "primary"
17
- BlueprintIdentifier = "83CBBA2D1A601D0E00E9B192"
18
- BuildableName = "libReact.a"
19
- BlueprintName = "React"
20
- ReferencedContainer = "container:../node_modules/react-native/React/React.xcodeproj">
21
- </BuildableReference>
22
- </BuildActionEntry>
23
9
  <BuildActionEntry
24
10
  buildForTesting = "YES"
25
11
  buildForRunning = "YES"
@@ -29,23 +15,9 @@
29
15
  <BuildableReference
30
16
  BuildableIdentifier = "primary"
31
17
  BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
32
- BuildableName = "KenBurnsExampleNew.app"
33
- BlueprintName = "KenBurnsExampleNew"
34
- ReferencedContainer = "container:KenBurnsExampleNew.xcodeproj">
35
- </BuildableReference>
36
- </BuildActionEntry>
37
- <BuildActionEntry
38
- buildForTesting = "YES"
39
- buildForRunning = "YES"
40
- buildForProfiling = "NO"
41
- buildForArchiving = "NO"
42
- buildForAnalyzing = "YES">
43
- <BuildableReference
44
- BuildableIdentifier = "primary"
45
- BlueprintIdentifier = "00E356ED1AD99517003FC87E"
46
- BuildableName = "KenBurnsExampleNewTests.xctest"
47
- BlueprintName = "KenBurnsExampleNewTests"
48
- ReferencedContainer = "container:KenBurnsExampleNew.xcodeproj">
18
+ BuildableName = "KenBurnsExample.app"
19
+ BlueprintName = "KenBurnsExample"
20
+ ReferencedContainer = "container:KenBurnsExample.xcodeproj">
49
21
  </BuildableReference>
50
22
  </BuildActionEntry>
51
23
  </BuildActionEntries>
@@ -61,23 +33,12 @@
61
33
  <BuildableReference
62
34
  BuildableIdentifier = "primary"
63
35
  BlueprintIdentifier = "00E356ED1AD99517003FC87E"
64
- BuildableName = "KenBurnsExampleNewTests.xctest"
65
- BlueprintName = "KenBurnsExampleNewTests"
66
- ReferencedContainer = "container:KenBurnsExampleNew.xcodeproj">
36
+ BuildableName = "KenBurnsExampleTests.xctest"
37
+ BlueprintName = "KenBurnsExampleTests"
38
+ ReferencedContainer = "container:KenBurnsExample.xcodeproj">
67
39
  </BuildableReference>
68
40
  </TestableReference>
69
41
  </Testables>
70
- <MacroExpansion>
71
- <BuildableReference
72
- BuildableIdentifier = "primary"
73
- BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
74
- BuildableName = "KenBurnsExampleNew.app"
75
- BlueprintName = "KenBurnsExampleNew"
76
- ReferencedContainer = "container:KenBurnsExampleNew.xcodeproj">
77
- </BuildableReference>
78
- </MacroExpansion>
79
- <AdditionalOptions>
80
- </AdditionalOptions>
81
42
  </TestAction>
82
43
  <LaunchAction
83
44
  buildConfiguration = "Debug"
@@ -94,13 +55,11 @@
94
55
  <BuildableReference
95
56
  BuildableIdentifier = "primary"
96
57
  BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
97
- BuildableName = "KenBurnsExampleNew.app"
98
- BlueprintName = "KenBurnsExampleNew"
99
- ReferencedContainer = "container:KenBurnsExampleNew.xcodeproj">
58
+ BuildableName = "KenBurnsExample.app"
59
+ BlueprintName = "KenBurnsExample"
60
+ ReferencedContainer = "container:KenBurnsExample.xcodeproj">
100
61
  </BuildableReference>
101
62
  </BuildableProductRunnable>
102
- <AdditionalOptions>
103
- </AdditionalOptions>
104
63
  </LaunchAction>
105
64
  <ProfileAction
106
65
  buildConfiguration = "Release"
@@ -113,9 +72,9 @@
113
72
  <BuildableReference
114
73
  BuildableIdentifier = "primary"
115
74
  BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
116
- BuildableName = "KenBurnsExampleNew.app"
117
- BlueprintName = "KenBurnsExampleNew"
118
- ReferencedContainer = "container:KenBurnsExampleNew.xcodeproj">
75
+ BuildableName = "KenBurnsExample.app"
76
+ BlueprintName = "KenBurnsExample"
77
+ ReferencedContainer = "container:KenBurnsExample.xcodeproj">
119
78
  </BuildableReference>
120
79
  </BuildableProductRunnable>
121
80
  </ProfileAction>
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "group:KenBurnsExample.xcodeproj">
6
+ </FileRef>
7
+ <FileRef
8
+ location = "group:Pods/Pods.xcodeproj">
9
+ </FileRef>
10
+ </Workspace>