react-native-kenburns-view 4.1.0 → 5.0.0

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