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
@@ -1,1468 +0,0 @@
1
- // !$*UTF8*$!
2
- {
3
- archiveVersion = 1;
4
- classes = {
5
- };
6
- objectVersion = 46;
7
- objects = {
8
-
9
- /* Begin PBXBuildFile section */
10
- 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */; };
11
- 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */; };
12
- 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */; };
13
- 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */; };
14
- 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */; };
15
- 00E356F31AD99517003FC87E /* KenBurnsExampleNewTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* KenBurnsExampleNewTests.m */; };
16
- 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C398B91ACF4ADC00677621 /* libRCTLinking.a */; };
17
- 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */; };
18
- 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */; };
19
- 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
20
- 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB11A68108700A75B9A /* LaunchScreen.xib */; };
21
- 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
22
- 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
23
- 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
24
- 146834051AC3E58100842450 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 146834041AC3E56700842450 /* libReact.a */; };
25
- 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
26
- 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
27
- 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
28
- 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
29
- 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */; };
30
- 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */; };
31
- 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */; };
32
- 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */; };
33
- 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */; };
34
- 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */; };
35
- 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D16E6891FA4F8E400B85C8A /* libReact.a */; };
36
- 2DCD954D1E0B4F2C00145EB5 /* KenBurnsExampleNewTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* KenBurnsExampleNewTests.m */; };
37
- 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DAD3EA31DF850E9000B6D8A /* libReact.a */; };
38
- 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
39
- 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
40
- ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
41
- /* End PBXBuildFile section */
42
-
43
- /* Begin PBXContainerItemProxy section */
44
- 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */ = {
45
- isa = PBXContainerItemProxy;
46
- containerPortal = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
47
- proxyType = 2;
48
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
49
- remoteInfo = RCTActionSheet;
50
- };
51
- 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */ = {
52
- isa = PBXContainerItemProxy;
53
- containerPortal = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
54
- proxyType = 2;
55
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
56
- remoteInfo = RCTGeolocation;
57
- };
58
- 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */ = {
59
- isa = PBXContainerItemProxy;
60
- containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
61
- proxyType = 2;
62
- remoteGlobalIDString = 58B5115D1A9E6B3D00147676;
63
- remoteInfo = RCTImage;
64
- };
65
- 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */ = {
66
- isa = PBXContainerItemProxy;
67
- containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
68
- proxyType = 2;
69
- remoteGlobalIDString = 58B511DB1A9E6C8500147676;
70
- remoteInfo = RCTNetwork;
71
- };
72
- 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */ = {
73
- isa = PBXContainerItemProxy;
74
- containerPortal = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
75
- proxyType = 2;
76
- remoteGlobalIDString = 832C81801AAF6DEF007FA2F7;
77
- remoteInfo = RCTVibration;
78
- };
79
- 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
80
- isa = PBXContainerItemProxy;
81
- containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
82
- proxyType = 1;
83
- remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
84
- remoteInfo = KenBurnsExampleNew;
85
- };
86
- 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */ = {
87
- isa = PBXContainerItemProxy;
88
- containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
89
- proxyType = 2;
90
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
91
- remoteInfo = RCTSettings;
92
- };
93
- 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */ = {
94
- isa = PBXContainerItemProxy;
95
- containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
96
- proxyType = 2;
97
- remoteGlobalIDString = 3C86DF461ADF2C930047B81A;
98
- remoteInfo = RCTWebSocket;
99
- };
100
- 146834031AC3E56700842450 /* PBXContainerItemProxy */ = {
101
- isa = PBXContainerItemProxy;
102
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
103
- proxyType = 2;
104
- remoteGlobalIDString = 83CBBA2E1A601D0E00E9B192;
105
- remoteInfo = React;
106
- };
107
- 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
108
- isa = PBXContainerItemProxy;
109
- containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
110
- proxyType = 1;
111
- remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
112
- remoteInfo = "KenBurnsExampleNew-tvOS";
113
- };
114
- 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
115
- isa = PBXContainerItemProxy;
116
- containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
117
- proxyType = 2;
118
- remoteGlobalIDString = ADD01A681E09402E00F6D226;
119
- remoteInfo = "RCTBlob-tvOS";
120
- };
121
- 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
122
- isa = PBXContainerItemProxy;
123
- containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
124
- proxyType = 2;
125
- remoteGlobalIDString = 3DBE0D001F3B181A0099AA32;
126
- remoteInfo = fishhook;
127
- };
128
- 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */ = {
129
- isa = PBXContainerItemProxy;
130
- containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
131
- proxyType = 2;
132
- remoteGlobalIDString = 3DBE0D0D1F3B181C0099AA32;
133
- remoteInfo = "fishhook-tvOS";
134
- };
135
- 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */ = {
136
- isa = PBXContainerItemProxy;
137
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
138
- proxyType = 2;
139
- remoteGlobalIDString = EBF21BDC1FC498900052F4D5;
140
- remoteInfo = jsinspector;
141
- };
142
- 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */ = {
143
- isa = PBXContainerItemProxy;
144
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
145
- proxyType = 2;
146
- remoteGlobalIDString = EBF21BFA1FC4989A0052F4D5;
147
- remoteInfo = "jsinspector-tvOS";
148
- };
149
- 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */ = {
150
- isa = PBXContainerItemProxy;
151
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
152
- proxyType = 2;
153
- remoteGlobalIDString = 139D7ECE1E25DB7D00323FB7;
154
- remoteInfo = "third-party";
155
- };
156
- 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */ = {
157
- isa = PBXContainerItemProxy;
158
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
159
- proxyType = 2;
160
- remoteGlobalIDString = 3D383D3C1EBD27B6005632C8;
161
- remoteInfo = "third-party-tvOS";
162
- };
163
- 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */ = {
164
- isa = PBXContainerItemProxy;
165
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
166
- proxyType = 2;
167
- remoteGlobalIDString = 139D7E881E25C6D100323FB7;
168
- remoteInfo = "double-conversion";
169
- };
170
- 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */ = {
171
- isa = PBXContainerItemProxy;
172
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
173
- proxyType = 2;
174
- remoteGlobalIDString = 3D383D621EBD27B9005632C8;
175
- remoteInfo = "double-conversion-tvOS";
176
- };
177
- 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */ = {
178
- isa = PBXContainerItemProxy;
179
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
180
- proxyType = 2;
181
- remoteGlobalIDString = 9936F3131F5F2E4B0010BF04;
182
- remoteInfo = privatedata;
183
- };
184
- 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */ = {
185
- isa = PBXContainerItemProxy;
186
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
187
- proxyType = 2;
188
- remoteGlobalIDString = 9936F32F1F5F2E5B0010BF04;
189
- remoteInfo = "privatedata-tvOS";
190
- };
191
- 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */ = {
192
- isa = PBXContainerItemProxy;
193
- containerPortal = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
194
- proxyType = 2;
195
- remoteGlobalIDString = 2D2A283A1D9B042B00D4039D;
196
- remoteInfo = "RCTImage-tvOS";
197
- };
198
- 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */ = {
199
- isa = PBXContainerItemProxy;
200
- containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
201
- proxyType = 2;
202
- remoteGlobalIDString = 2D2A28471D9B043800D4039D;
203
- remoteInfo = "RCTLinking-tvOS";
204
- };
205
- 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
206
- isa = PBXContainerItemProxy;
207
- containerPortal = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
208
- proxyType = 2;
209
- remoteGlobalIDString = 2D2A28541D9B044C00D4039D;
210
- remoteInfo = "RCTNetwork-tvOS";
211
- };
212
- 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
213
- isa = PBXContainerItemProxy;
214
- containerPortal = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
215
- proxyType = 2;
216
- remoteGlobalIDString = 2D2A28611D9B046600D4039D;
217
- remoteInfo = "RCTSettings-tvOS";
218
- };
219
- 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */ = {
220
- isa = PBXContainerItemProxy;
221
- containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
222
- proxyType = 2;
223
- remoteGlobalIDString = 2D2A287B1D9B048500D4039D;
224
- remoteInfo = "RCTText-tvOS";
225
- };
226
- 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */ = {
227
- isa = PBXContainerItemProxy;
228
- containerPortal = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
229
- proxyType = 2;
230
- remoteGlobalIDString = 2D2A28881D9B049200D4039D;
231
- remoteInfo = "RCTWebSocket-tvOS";
232
- };
233
- 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */ = {
234
- isa = PBXContainerItemProxy;
235
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
236
- proxyType = 2;
237
- remoteGlobalIDString = 2D2A28131D9B038B00D4039D;
238
- remoteInfo = "React-tvOS";
239
- };
240
- 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */ = {
241
- isa = PBXContainerItemProxy;
242
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
243
- proxyType = 2;
244
- remoteGlobalIDString = 3D3C059A1DE3340900C268FA;
245
- remoteInfo = yoga;
246
- };
247
- 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */ = {
248
- isa = PBXContainerItemProxy;
249
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
250
- proxyType = 2;
251
- remoteGlobalIDString = 3D3C06751DE3340C00C268FA;
252
- remoteInfo = "yoga-tvOS";
253
- };
254
- 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */ = {
255
- isa = PBXContainerItemProxy;
256
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
257
- proxyType = 2;
258
- remoteGlobalIDString = 3D3CD9251DE5FBEC00167DC4;
259
- remoteInfo = cxxreact;
260
- };
261
- 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
262
- isa = PBXContainerItemProxy;
263
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
264
- proxyType = 2;
265
- remoteGlobalIDString = 3D3CD9321DE5FBEE00167DC4;
266
- remoteInfo = "cxxreact-tvOS";
267
- };
268
- 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
269
- isa = PBXContainerItemProxy;
270
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
271
- proxyType = 2;
272
- remoteGlobalIDString = 3D3CD90B1DE5FBD600167DC4;
273
- remoteInfo = jschelpers;
274
- };
275
- 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */ = {
276
- isa = PBXContainerItemProxy;
277
- containerPortal = 146833FF1AC3E56700842450 /* React.xcodeproj */;
278
- proxyType = 2;
279
- remoteGlobalIDString = 3D3CD9181DE5FBD800167DC4;
280
- remoteInfo = "jschelpers-tvOS";
281
- };
282
- 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
283
- isa = PBXContainerItemProxy;
284
- containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
285
- proxyType = 2;
286
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
287
- remoteInfo = RCTAnimation;
288
- };
289
- 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */ = {
290
- isa = PBXContainerItemProxy;
291
- containerPortal = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
292
- proxyType = 2;
293
- remoteGlobalIDString = 2D2A28201D9B03D100D4039D;
294
- remoteInfo = "RCTAnimation-tvOS";
295
- };
296
- 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */ = {
297
- isa = PBXContainerItemProxy;
298
- containerPortal = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
299
- proxyType = 2;
300
- remoteGlobalIDString = 134814201AA4EA6300B7C361;
301
- remoteInfo = RCTLinking;
302
- };
303
- 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */ = {
304
- isa = PBXContainerItemProxy;
305
- containerPortal = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
306
- proxyType = 2;
307
- remoteGlobalIDString = 58B5119B1A9E6C1200147676;
308
- remoteInfo = RCTText;
309
- };
310
- ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */ = {
311
- isa = PBXContainerItemProxy;
312
- containerPortal = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
313
- proxyType = 2;
314
- remoteGlobalIDString = 358F4ED71D1E81A9004DF814;
315
- remoteInfo = RCTBlob;
316
- };
317
- /* End PBXContainerItemProxy section */
318
-
319
- /* Begin PBXFileReference section */
320
- 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
321
- 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTActionSheet.xcodeproj; path = "../node_modules/react-native/Libraries/ActionSheetIOS/RCTActionSheet.xcodeproj"; sourceTree = "<group>"; };
322
- 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTGeolocation.xcodeproj; path = "../node_modules/react-native/Libraries/Geolocation/RCTGeolocation.xcodeproj"; sourceTree = "<group>"; };
323
- 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTImage.xcodeproj; path = "../node_modules/react-native/Libraries/Image/RCTImage.xcodeproj"; sourceTree = "<group>"; };
324
- 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTNetwork.xcodeproj; path = "../node_modules/react-native/Libraries/Network/RCTNetwork.xcodeproj"; sourceTree = "<group>"; };
325
- 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTVibration.xcodeproj; path = "../node_modules/react-native/Libraries/Vibration/RCTVibration.xcodeproj"; sourceTree = "<group>"; };
326
- 00E356EE1AD99517003FC87E /* KenBurnsExampleNewTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KenBurnsExampleNewTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
327
- 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
328
- 00E356F21AD99517003FC87E /* KenBurnsExampleNewTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KenBurnsExampleNewTests.m; sourceTree = "<group>"; };
329
- 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTSettings.xcodeproj; path = "../node_modules/react-native/Libraries/Settings/RCTSettings.xcodeproj"; sourceTree = "<group>"; };
330
- 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTWebSocket.xcodeproj; path = "../node_modules/react-native/Libraries/WebSocket/RCTWebSocket.xcodeproj"; sourceTree = "<group>"; };
331
- 13B07F961A680F5B00A75B9A /* KenBurnsExampleNew.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = KenBurnsExampleNew.app; sourceTree = BUILT_PRODUCTS_DIR; };
332
- 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = KenBurnsExampleNew/AppDelegate.h; sourceTree = "<group>"; };
333
- 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = KenBurnsExampleNew/AppDelegate.m; sourceTree = "<group>"; };
334
- 13B07FB21A68108700A75B9A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
335
- 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = KenBurnsExampleNew/Images.xcassets; sourceTree = "<group>"; };
336
- 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = KenBurnsExampleNew/Info.plist; sourceTree = "<group>"; };
337
- 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = KenBurnsExampleNew/main.m; sourceTree = "<group>"; };
338
- 146833FF1AC3E56700842450 /* React.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = React.xcodeproj; path = "../node_modules/react-native/React/React.xcodeproj"; sourceTree = "<group>"; };
339
- 2D02E47B1E0B4A5D006451C7 /* KenBurnsExampleNew-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "KenBurnsExampleNew-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
340
- 2D02E4901E0B4A5D006451C7 /* KenBurnsExampleNew-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "KenBurnsExampleNew-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
341
- 2D16E6891FA4F8E400B85C8A /* libReact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libReact.a; sourceTree = BUILT_PRODUCTS_DIR; };
342
- 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTAnimation.xcodeproj; path = "../node_modules/react-native/Libraries/NativeAnimation/RCTAnimation.xcodeproj"; sourceTree = "<group>"; };
343
- 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = "<group>"; };
344
- 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = "<group>"; };
345
- ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = "<group>"; };
346
- /* End PBXFileReference section */
347
-
348
- /* Begin PBXFrameworksBuildPhase section */
349
- 00E356EB1AD99517003FC87E /* Frameworks */ = {
350
- isa = PBXFrameworksBuildPhase;
351
- buildActionMask = 2147483647;
352
- files = (
353
- 140ED2AC1D01E1AD002B40FF /* libReact.a in Frameworks */,
354
- );
355
- runOnlyForDeploymentPostprocessing = 0;
356
- };
357
- 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
358
- isa = PBXFrameworksBuildPhase;
359
- buildActionMask = 2147483647;
360
- files = (
361
- ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */,
362
- 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
363
- 146834051AC3E58100842450 /* libReact.a in Frameworks */,
364
- 5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */,
365
- 00C302E51ABCBA2D00DB3ED1 /* libRCTActionSheet.a in Frameworks */,
366
- 00C302E71ABCBA2D00DB3ED1 /* libRCTGeolocation.a in Frameworks */,
367
- 00C302E81ABCBA2D00DB3ED1 /* libRCTImage.a in Frameworks */,
368
- 133E29F31AD74F7200F7D852 /* libRCTLinking.a in Frameworks */,
369
- 00C302E91ABCBA2D00DB3ED1 /* libRCTNetwork.a in Frameworks */,
370
- 139105C61AF99C1200B5F7CC /* libRCTSettings.a in Frameworks */,
371
- 832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
372
- 00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
373
- 139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
374
- );
375
- runOnlyForDeploymentPostprocessing = 0;
376
- };
377
- 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
378
- isa = PBXFrameworksBuildPhase;
379
- buildActionMask = 2147483647;
380
- files = (
381
- 2D16E6881FA4F8E400B85C8A /* libReact.a in Frameworks */,
382
- 2D02E4C21E0B4AEC006451C7 /* libRCTAnimation.a in Frameworks */,
383
- 2D02E4C31E0B4AEC006451C7 /* libRCTImage-tvOS.a in Frameworks */,
384
- 2D02E4C41E0B4AEC006451C7 /* libRCTLinking-tvOS.a in Frameworks */,
385
- 2D02E4C51E0B4AEC006451C7 /* libRCTNetwork-tvOS.a in Frameworks */,
386
- 2D02E4C61E0B4AEC006451C7 /* libRCTSettings-tvOS.a in Frameworks */,
387
- 2D02E4C71E0B4AEC006451C7 /* libRCTText-tvOS.a in Frameworks */,
388
- 2D02E4C81E0B4AEC006451C7 /* libRCTWebSocket-tvOS.a in Frameworks */,
389
- );
390
- runOnlyForDeploymentPostprocessing = 0;
391
- };
392
- 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
393
- isa = PBXFrameworksBuildPhase;
394
- buildActionMask = 2147483647;
395
- files = (
396
- 2DF0FFEE2056DD460020B375 /* libReact.a in Frameworks */,
397
- );
398
- runOnlyForDeploymentPostprocessing = 0;
399
- };
400
- /* End PBXFrameworksBuildPhase section */
401
-
402
- /* Begin PBXGroup section */
403
- 00C302A81ABCB8CE00DB3ED1 /* Products */ = {
404
- isa = PBXGroup;
405
- children = (
406
- 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */,
407
- );
408
- name = Products;
409
- sourceTree = "<group>";
410
- };
411
- 00C302B61ABCB90400DB3ED1 /* Products */ = {
412
- isa = PBXGroup;
413
- children = (
414
- 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */,
415
- );
416
- name = Products;
417
- sourceTree = "<group>";
418
- };
419
- 00C302BC1ABCB91800DB3ED1 /* Products */ = {
420
- isa = PBXGroup;
421
- children = (
422
- 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */,
423
- 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */,
424
- );
425
- name = Products;
426
- sourceTree = "<group>";
427
- };
428
- 00C302D41ABCB9D200DB3ED1 /* Products */ = {
429
- isa = PBXGroup;
430
- children = (
431
- 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */,
432
- 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */,
433
- );
434
- name = Products;
435
- sourceTree = "<group>";
436
- };
437
- 00C302E01ABCB9EE00DB3ED1 /* Products */ = {
438
- isa = PBXGroup;
439
- children = (
440
- 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */,
441
- );
442
- name = Products;
443
- sourceTree = "<group>";
444
- };
445
- 00E356EF1AD99517003FC87E /* KenBurnsExampleNewTests */ = {
446
- isa = PBXGroup;
447
- children = (
448
- 00E356F21AD99517003FC87E /* KenBurnsExampleNewTests.m */,
449
- 00E356F01AD99517003FC87E /* Supporting Files */,
450
- );
451
- path = KenBurnsExampleNewTests;
452
- sourceTree = "<group>";
453
- };
454
- 00E356F01AD99517003FC87E /* Supporting Files */ = {
455
- isa = PBXGroup;
456
- children = (
457
- 00E356F11AD99517003FC87E /* Info.plist */,
458
- );
459
- name = "Supporting Files";
460
- sourceTree = "<group>";
461
- };
462
- 139105B71AF99BAD00B5F7CC /* Products */ = {
463
- isa = PBXGroup;
464
- children = (
465
- 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */,
466
- 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */,
467
- );
468
- name = Products;
469
- sourceTree = "<group>";
470
- };
471
- 139FDEE71B06529A00C62182 /* Products */ = {
472
- isa = PBXGroup;
473
- children = (
474
- 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */,
475
- 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */,
476
- 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */,
477
- 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */,
478
- );
479
- name = Products;
480
- sourceTree = "<group>";
481
- };
482
- 13B07FAE1A68108700A75B9A /* KenBurnsExampleNew */ = {
483
- isa = PBXGroup;
484
- children = (
485
- 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
486
- 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
487
- 13B07FB01A68108700A75B9A /* AppDelegate.m */,
488
- 13B07FB51A68108700A75B9A /* Images.xcassets */,
489
- 13B07FB61A68108700A75B9A /* Info.plist */,
490
- 13B07FB11A68108700A75B9A /* LaunchScreen.xib */,
491
- 13B07FB71A68108700A75B9A /* main.m */,
492
- );
493
- name = KenBurnsExampleNew;
494
- sourceTree = "<group>";
495
- };
496
- 146834001AC3E56700842450 /* Products */ = {
497
- isa = PBXGroup;
498
- children = (
499
- 146834041AC3E56700842450 /* libReact.a */,
500
- 3DAD3EA31DF850E9000B6D8A /* libReact.a */,
501
- 3DAD3EA51DF850E9000B6D8A /* libyoga.a */,
502
- 3DAD3EA71DF850E9000B6D8A /* libyoga.a */,
503
- 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */,
504
- 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */,
505
- 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */,
506
- 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */,
507
- 2DF0FFDF2056DD460020B375 /* libjsinspector.a */,
508
- 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */,
509
- 2DF0FFE32056DD460020B375 /* libthird-party.a */,
510
- 2DF0FFE52056DD460020B375 /* libthird-party.a */,
511
- 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */,
512
- 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */,
513
- 2DF0FFEB2056DD460020B375 /* libprivatedata.a */,
514
- 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */,
515
- );
516
- name = Products;
517
- sourceTree = "<group>";
518
- };
519
- 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
520
- isa = PBXGroup;
521
- children = (
522
- 2D16E6891FA4F8E400B85C8A /* libReact.a */,
523
- );
524
- name = Frameworks;
525
- sourceTree = "<group>";
526
- };
527
- 5E91572E1DD0AC6500FF2AA8 /* Products */ = {
528
- isa = PBXGroup;
529
- children = (
530
- 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */,
531
- 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */,
532
- );
533
- name = Products;
534
- sourceTree = "<group>";
535
- };
536
- 78C398B11ACF4ADC00677621 /* Products */ = {
537
- isa = PBXGroup;
538
- children = (
539
- 78C398B91ACF4ADC00677621 /* libRCTLinking.a */,
540
- 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */,
541
- );
542
- name = Products;
543
- sourceTree = "<group>";
544
- };
545
- 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
546
- isa = PBXGroup;
547
- children = (
548
- 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */,
549
- 146833FF1AC3E56700842450 /* React.xcodeproj */,
550
- 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */,
551
- ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */,
552
- 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */,
553
- 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */,
554
- 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */,
555
- 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */,
556
- 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */,
557
- 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,
558
- 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,
559
- 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,
560
- );
561
- name = Libraries;
562
- sourceTree = "<group>";
563
- };
564
- 832341B11AAA6A8300B99B32 /* Products */ = {
565
- isa = PBXGroup;
566
- children = (
567
- 832341B51AAA6A8300B99B32 /* libRCTText.a */,
568
- 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */,
569
- );
570
- name = Products;
571
- sourceTree = "<group>";
572
- };
573
- 83CBB9F61A601CBA00E9B192 = {
574
- isa = PBXGroup;
575
- children = (
576
- 13B07FAE1A68108700A75B9A /* KenBurnsExampleNew */,
577
- 832341AE1AAA6A7D00B99B32 /* Libraries */,
578
- 00E356EF1AD99517003FC87E /* KenBurnsExampleNewTests */,
579
- 83CBBA001A601CBA00E9B192 /* Products */,
580
- 2D16E6871FA4F8E400B85C8A /* Frameworks */,
581
- );
582
- indentWidth = 2;
583
- sourceTree = "<group>";
584
- tabWidth = 2;
585
- usesTabs = 0;
586
- };
587
- 83CBBA001A601CBA00E9B192 /* Products */ = {
588
- isa = PBXGroup;
589
- children = (
590
- 13B07F961A680F5B00A75B9A /* KenBurnsExampleNew.app */,
591
- 00E356EE1AD99517003FC87E /* KenBurnsExampleNewTests.xctest */,
592
- 2D02E47B1E0B4A5D006451C7 /* KenBurnsExampleNew-tvOS.app */,
593
- 2D02E4901E0B4A5D006451C7 /* KenBurnsExampleNew-tvOSTests.xctest */,
594
- );
595
- name = Products;
596
- sourceTree = "<group>";
597
- };
598
- ADBDB9201DFEBF0600ED6528 /* Products */ = {
599
- isa = PBXGroup;
600
- children = (
601
- ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */,
602
- 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */,
603
- );
604
- name = Products;
605
- sourceTree = "<group>";
606
- };
607
- /* End PBXGroup section */
608
-
609
- /* Begin PBXNativeTarget section */
610
- 00E356ED1AD99517003FC87E /* KenBurnsExampleNewTests */ = {
611
- isa = PBXNativeTarget;
612
- buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "KenBurnsExampleNewTests" */;
613
- buildPhases = (
614
- 00E356EA1AD99517003FC87E /* Sources */,
615
- 00E356EB1AD99517003FC87E /* Frameworks */,
616
- 00E356EC1AD99517003FC87E /* Resources */,
617
- );
618
- buildRules = (
619
- );
620
- dependencies = (
621
- 00E356F51AD99517003FC87E /* PBXTargetDependency */,
622
- );
623
- name = KenBurnsExampleNewTests;
624
- productName = KenBurnsExampleNewTests;
625
- productReference = 00E356EE1AD99517003FC87E /* KenBurnsExampleNewTests.xctest */;
626
- productType = "com.apple.product-type.bundle.unit-test";
627
- };
628
- 13B07F861A680F5B00A75B9A /* KenBurnsExampleNew */ = {
629
- isa = PBXNativeTarget;
630
- buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "KenBurnsExampleNew" */;
631
- buildPhases = (
632
- 13B07F871A680F5B00A75B9A /* Sources */,
633
- 13B07F8C1A680F5B00A75B9A /* Frameworks */,
634
- 13B07F8E1A680F5B00A75B9A /* Resources */,
635
- 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
636
- );
637
- buildRules = (
638
- );
639
- dependencies = (
640
- );
641
- name = KenBurnsExampleNew;
642
- productName = "Hello World";
643
- productReference = 13B07F961A680F5B00A75B9A /* KenBurnsExampleNew.app */;
644
- productType = "com.apple.product-type.application";
645
- };
646
- 2D02E47A1E0B4A5D006451C7 /* KenBurnsExampleNew-tvOS */ = {
647
- isa = PBXNativeTarget;
648
- buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "KenBurnsExampleNew-tvOS" */;
649
- buildPhases = (
650
- 2D02E4771E0B4A5D006451C7 /* Sources */,
651
- 2D02E4781E0B4A5D006451C7 /* Frameworks */,
652
- 2D02E4791E0B4A5D006451C7 /* Resources */,
653
- 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
654
- );
655
- buildRules = (
656
- );
657
- dependencies = (
658
- );
659
- name = "KenBurnsExampleNew-tvOS";
660
- productName = "KenBurnsExampleNew-tvOS";
661
- productReference = 2D02E47B1E0B4A5D006451C7 /* KenBurnsExampleNew-tvOS.app */;
662
- productType = "com.apple.product-type.application";
663
- };
664
- 2D02E48F1E0B4A5D006451C7 /* KenBurnsExampleNew-tvOSTests */ = {
665
- isa = PBXNativeTarget;
666
- buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "KenBurnsExampleNew-tvOSTests" */;
667
- buildPhases = (
668
- 2D02E48C1E0B4A5D006451C7 /* Sources */,
669
- 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
670
- 2D02E48E1E0B4A5D006451C7 /* Resources */,
671
- );
672
- buildRules = (
673
- );
674
- dependencies = (
675
- 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
676
- );
677
- name = "KenBurnsExampleNew-tvOSTests";
678
- productName = "KenBurnsExampleNew-tvOSTests";
679
- productReference = 2D02E4901E0B4A5D006451C7 /* KenBurnsExampleNew-tvOSTests.xctest */;
680
- productType = "com.apple.product-type.bundle.unit-test";
681
- };
682
- /* End PBXNativeTarget section */
683
-
684
- /* Begin PBXProject section */
685
- 83CBB9F71A601CBA00E9B192 /* Project object */ = {
686
- isa = PBXProject;
687
- attributes = {
688
- LastUpgradeCheck = 0610;
689
- ORGANIZATIONNAME = Facebook;
690
- TargetAttributes = {
691
- 00E356ED1AD99517003FC87E = {
692
- CreatedOnToolsVersion = 6.2;
693
- TestTargetID = 13B07F861A680F5B00A75B9A;
694
- };
695
- 2D02E47A1E0B4A5D006451C7 = {
696
- CreatedOnToolsVersion = 8.2.1;
697
- ProvisioningStyle = Automatic;
698
- };
699
- 2D02E48F1E0B4A5D006451C7 = {
700
- CreatedOnToolsVersion = 8.2.1;
701
- ProvisioningStyle = Automatic;
702
- TestTargetID = 2D02E47A1E0B4A5D006451C7;
703
- };
704
- };
705
- };
706
- buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "KenBurnsExampleNew" */;
707
- compatibilityVersion = "Xcode 3.2";
708
- developmentRegion = English;
709
- hasScannedForEncodings = 0;
710
- knownRegions = (
711
- en,
712
- Base,
713
- );
714
- mainGroup = 83CBB9F61A601CBA00E9B192;
715
- productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
716
- projectDirPath = "";
717
- projectReferences = (
718
- {
719
- ProductGroup = 00C302A81ABCB8CE00DB3ED1 /* Products */;
720
- ProjectRef = 00C302A71ABCB8CE00DB3ED1 /* RCTActionSheet.xcodeproj */;
721
- },
722
- {
723
- ProductGroup = 5E91572E1DD0AC6500FF2AA8 /* Products */;
724
- ProjectRef = 5E91572D1DD0AC6500FF2AA8 /* RCTAnimation.xcodeproj */;
725
- },
726
- {
727
- ProductGroup = ADBDB9201DFEBF0600ED6528 /* Products */;
728
- ProjectRef = ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */;
729
- },
730
- {
731
- ProductGroup = 00C302B61ABCB90400DB3ED1 /* Products */;
732
- ProjectRef = 00C302B51ABCB90400DB3ED1 /* RCTGeolocation.xcodeproj */;
733
- },
734
- {
735
- ProductGroup = 00C302BC1ABCB91800DB3ED1 /* Products */;
736
- ProjectRef = 00C302BB1ABCB91800DB3ED1 /* RCTImage.xcodeproj */;
737
- },
738
- {
739
- ProductGroup = 78C398B11ACF4ADC00677621 /* Products */;
740
- ProjectRef = 78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */;
741
- },
742
- {
743
- ProductGroup = 00C302D41ABCB9D200DB3ED1 /* Products */;
744
- ProjectRef = 00C302D31ABCB9D200DB3ED1 /* RCTNetwork.xcodeproj */;
745
- },
746
- {
747
- ProductGroup = 139105B71AF99BAD00B5F7CC /* Products */;
748
- ProjectRef = 139105B61AF99BAD00B5F7CC /* RCTSettings.xcodeproj */;
749
- },
750
- {
751
- ProductGroup = 832341B11AAA6A8300B99B32 /* Products */;
752
- ProjectRef = 832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */;
753
- },
754
- {
755
- ProductGroup = 00C302E01ABCB9EE00DB3ED1 /* Products */;
756
- ProjectRef = 00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */;
757
- },
758
- {
759
- ProductGroup = 139FDEE71B06529A00C62182 /* Products */;
760
- ProjectRef = 139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */;
761
- },
762
- {
763
- ProductGroup = 146834001AC3E56700842450 /* Products */;
764
- ProjectRef = 146833FF1AC3E56700842450 /* React.xcodeproj */;
765
- },
766
- );
767
- projectRoot = "";
768
- targets = (
769
- 13B07F861A680F5B00A75B9A /* KenBurnsExampleNew */,
770
- 00E356ED1AD99517003FC87E /* KenBurnsExampleNewTests */,
771
- 2D02E47A1E0B4A5D006451C7 /* KenBurnsExampleNew-tvOS */,
772
- 2D02E48F1E0B4A5D006451C7 /* KenBurnsExampleNew-tvOSTests */,
773
- );
774
- };
775
- /* End PBXProject section */
776
-
777
- /* Begin PBXReferenceProxy section */
778
- 00C302AC1ABCB8CE00DB3ED1 /* libRCTActionSheet.a */ = {
779
- isa = PBXReferenceProxy;
780
- fileType = archive.ar;
781
- path = libRCTActionSheet.a;
782
- remoteRef = 00C302AB1ABCB8CE00DB3ED1 /* PBXContainerItemProxy */;
783
- sourceTree = BUILT_PRODUCTS_DIR;
784
- };
785
- 00C302BA1ABCB90400DB3ED1 /* libRCTGeolocation.a */ = {
786
- isa = PBXReferenceProxy;
787
- fileType = archive.ar;
788
- path = libRCTGeolocation.a;
789
- remoteRef = 00C302B91ABCB90400DB3ED1 /* PBXContainerItemProxy */;
790
- sourceTree = BUILT_PRODUCTS_DIR;
791
- };
792
- 00C302C01ABCB91800DB3ED1 /* libRCTImage.a */ = {
793
- isa = PBXReferenceProxy;
794
- fileType = archive.ar;
795
- path = libRCTImage.a;
796
- remoteRef = 00C302BF1ABCB91800DB3ED1 /* PBXContainerItemProxy */;
797
- sourceTree = BUILT_PRODUCTS_DIR;
798
- };
799
- 00C302DC1ABCB9D200DB3ED1 /* libRCTNetwork.a */ = {
800
- isa = PBXReferenceProxy;
801
- fileType = archive.ar;
802
- path = libRCTNetwork.a;
803
- remoteRef = 00C302DB1ABCB9D200DB3ED1 /* PBXContainerItemProxy */;
804
- sourceTree = BUILT_PRODUCTS_DIR;
805
- };
806
- 00C302E41ABCB9EE00DB3ED1 /* libRCTVibration.a */ = {
807
- isa = PBXReferenceProxy;
808
- fileType = archive.ar;
809
- path = libRCTVibration.a;
810
- remoteRef = 00C302E31ABCB9EE00DB3ED1 /* PBXContainerItemProxy */;
811
- sourceTree = BUILT_PRODUCTS_DIR;
812
- };
813
- 139105C11AF99BAD00B5F7CC /* libRCTSettings.a */ = {
814
- isa = PBXReferenceProxy;
815
- fileType = archive.ar;
816
- path = libRCTSettings.a;
817
- remoteRef = 139105C01AF99BAD00B5F7CC /* PBXContainerItemProxy */;
818
- sourceTree = BUILT_PRODUCTS_DIR;
819
- };
820
- 139FDEF41B06529B00C62182 /* libRCTWebSocket.a */ = {
821
- isa = PBXReferenceProxy;
822
- fileType = archive.ar;
823
- path = libRCTWebSocket.a;
824
- remoteRef = 139FDEF31B06529B00C62182 /* PBXContainerItemProxy */;
825
- sourceTree = BUILT_PRODUCTS_DIR;
826
- };
827
- 146834041AC3E56700842450 /* libReact.a */ = {
828
- isa = PBXReferenceProxy;
829
- fileType = archive.ar;
830
- path = libReact.a;
831
- remoteRef = 146834031AC3E56700842450 /* PBXContainerItemProxy */;
832
- sourceTree = BUILT_PRODUCTS_DIR;
833
- };
834
- 2D16E6721FA4F8DC00B85C8A /* libRCTBlob-tvOS.a */ = {
835
- isa = PBXReferenceProxy;
836
- fileType = archive.ar;
837
- path = "libRCTBlob-tvOS.a";
838
- remoteRef = 2D16E6711FA4F8DC00B85C8A /* PBXContainerItemProxy */;
839
- sourceTree = BUILT_PRODUCTS_DIR;
840
- };
841
- 2D16E6841FA4F8DC00B85C8A /* libfishhook.a */ = {
842
- isa = PBXReferenceProxy;
843
- fileType = archive.ar;
844
- path = libfishhook.a;
845
- remoteRef = 2D16E6831FA4F8DC00B85C8A /* PBXContainerItemProxy */;
846
- sourceTree = BUILT_PRODUCTS_DIR;
847
- };
848
- 2D16E6861FA4F8DC00B85C8A /* libfishhook-tvOS.a */ = {
849
- isa = PBXReferenceProxy;
850
- fileType = archive.ar;
851
- path = "libfishhook-tvOS.a";
852
- remoteRef = 2D16E6851FA4F8DC00B85C8A /* PBXContainerItemProxy */;
853
- sourceTree = BUILT_PRODUCTS_DIR;
854
- };
855
- 2DF0FFDF2056DD460020B375 /* libjsinspector.a */ = {
856
- isa = PBXReferenceProxy;
857
- fileType = archive.ar;
858
- path = libjsinspector.a;
859
- remoteRef = 2DF0FFDE2056DD460020B375 /* PBXContainerItemProxy */;
860
- sourceTree = BUILT_PRODUCTS_DIR;
861
- };
862
- 2DF0FFE12056DD460020B375 /* libjsinspector-tvOS.a */ = {
863
- isa = PBXReferenceProxy;
864
- fileType = archive.ar;
865
- path = "libjsinspector-tvOS.a";
866
- remoteRef = 2DF0FFE02056DD460020B375 /* PBXContainerItemProxy */;
867
- sourceTree = BUILT_PRODUCTS_DIR;
868
- };
869
- 2DF0FFE32056DD460020B375 /* libthird-party.a */ = {
870
- isa = PBXReferenceProxy;
871
- fileType = archive.ar;
872
- path = "libthird-party.a";
873
- remoteRef = 2DF0FFE22056DD460020B375 /* PBXContainerItemProxy */;
874
- sourceTree = BUILT_PRODUCTS_DIR;
875
- };
876
- 2DF0FFE52056DD460020B375 /* libthird-party.a */ = {
877
- isa = PBXReferenceProxy;
878
- fileType = archive.ar;
879
- path = "libthird-party.a";
880
- remoteRef = 2DF0FFE42056DD460020B375 /* PBXContainerItemProxy */;
881
- sourceTree = BUILT_PRODUCTS_DIR;
882
- };
883
- 2DF0FFE72056DD460020B375 /* libdouble-conversion.a */ = {
884
- isa = PBXReferenceProxy;
885
- fileType = archive.ar;
886
- path = "libdouble-conversion.a";
887
- remoteRef = 2DF0FFE62056DD460020B375 /* PBXContainerItemProxy */;
888
- sourceTree = BUILT_PRODUCTS_DIR;
889
- };
890
- 2DF0FFE92056DD460020B375 /* libdouble-conversion.a */ = {
891
- isa = PBXReferenceProxy;
892
- fileType = archive.ar;
893
- path = "libdouble-conversion.a";
894
- remoteRef = 2DF0FFE82056DD460020B375 /* PBXContainerItemProxy */;
895
- sourceTree = BUILT_PRODUCTS_DIR;
896
- };
897
- 2DF0FFEB2056DD460020B375 /* libprivatedata.a */ = {
898
- isa = PBXReferenceProxy;
899
- fileType = archive.ar;
900
- path = libprivatedata.a;
901
- remoteRef = 2DF0FFEA2056DD460020B375 /* PBXContainerItemProxy */;
902
- sourceTree = BUILT_PRODUCTS_DIR;
903
- };
904
- 2DF0FFED2056DD460020B375 /* libprivatedata-tvOS.a */ = {
905
- isa = PBXReferenceProxy;
906
- fileType = archive.ar;
907
- path = "libprivatedata-tvOS.a";
908
- remoteRef = 2DF0FFEC2056DD460020B375 /* PBXContainerItemProxy */;
909
- sourceTree = BUILT_PRODUCTS_DIR;
910
- };
911
- 3DAD3E841DF850E9000B6D8A /* libRCTImage-tvOS.a */ = {
912
- isa = PBXReferenceProxy;
913
- fileType = archive.ar;
914
- path = "libRCTImage-tvOS.a";
915
- remoteRef = 3DAD3E831DF850E9000B6D8A /* PBXContainerItemProxy */;
916
- sourceTree = BUILT_PRODUCTS_DIR;
917
- };
918
- 3DAD3E881DF850E9000B6D8A /* libRCTLinking-tvOS.a */ = {
919
- isa = PBXReferenceProxy;
920
- fileType = archive.ar;
921
- path = "libRCTLinking-tvOS.a";
922
- remoteRef = 3DAD3E871DF850E9000B6D8A /* PBXContainerItemProxy */;
923
- sourceTree = BUILT_PRODUCTS_DIR;
924
- };
925
- 3DAD3E8C1DF850E9000B6D8A /* libRCTNetwork-tvOS.a */ = {
926
- isa = PBXReferenceProxy;
927
- fileType = archive.ar;
928
- path = "libRCTNetwork-tvOS.a";
929
- remoteRef = 3DAD3E8B1DF850E9000B6D8A /* PBXContainerItemProxy */;
930
- sourceTree = BUILT_PRODUCTS_DIR;
931
- };
932
- 3DAD3E901DF850E9000B6D8A /* libRCTSettings-tvOS.a */ = {
933
- isa = PBXReferenceProxy;
934
- fileType = archive.ar;
935
- path = "libRCTSettings-tvOS.a";
936
- remoteRef = 3DAD3E8F1DF850E9000B6D8A /* PBXContainerItemProxy */;
937
- sourceTree = BUILT_PRODUCTS_DIR;
938
- };
939
- 3DAD3E941DF850E9000B6D8A /* libRCTText-tvOS.a */ = {
940
- isa = PBXReferenceProxy;
941
- fileType = archive.ar;
942
- path = "libRCTText-tvOS.a";
943
- remoteRef = 3DAD3E931DF850E9000B6D8A /* PBXContainerItemProxy */;
944
- sourceTree = BUILT_PRODUCTS_DIR;
945
- };
946
- 3DAD3E991DF850E9000B6D8A /* libRCTWebSocket-tvOS.a */ = {
947
- isa = PBXReferenceProxy;
948
- fileType = archive.ar;
949
- path = "libRCTWebSocket-tvOS.a";
950
- remoteRef = 3DAD3E981DF850E9000B6D8A /* PBXContainerItemProxy */;
951
- sourceTree = BUILT_PRODUCTS_DIR;
952
- };
953
- 3DAD3EA31DF850E9000B6D8A /* libReact.a */ = {
954
- isa = PBXReferenceProxy;
955
- fileType = archive.ar;
956
- path = libReact.a;
957
- remoteRef = 3DAD3EA21DF850E9000B6D8A /* PBXContainerItemProxy */;
958
- sourceTree = BUILT_PRODUCTS_DIR;
959
- };
960
- 3DAD3EA51DF850E9000B6D8A /* libyoga.a */ = {
961
- isa = PBXReferenceProxy;
962
- fileType = archive.ar;
963
- path = libyoga.a;
964
- remoteRef = 3DAD3EA41DF850E9000B6D8A /* PBXContainerItemProxy */;
965
- sourceTree = BUILT_PRODUCTS_DIR;
966
- };
967
- 3DAD3EA71DF850E9000B6D8A /* libyoga.a */ = {
968
- isa = PBXReferenceProxy;
969
- fileType = archive.ar;
970
- path = libyoga.a;
971
- remoteRef = 3DAD3EA61DF850E9000B6D8A /* PBXContainerItemProxy */;
972
- sourceTree = BUILT_PRODUCTS_DIR;
973
- };
974
- 3DAD3EA91DF850E9000B6D8A /* libcxxreact.a */ = {
975
- isa = PBXReferenceProxy;
976
- fileType = archive.ar;
977
- path = libcxxreact.a;
978
- remoteRef = 3DAD3EA81DF850E9000B6D8A /* PBXContainerItemProxy */;
979
- sourceTree = BUILT_PRODUCTS_DIR;
980
- };
981
- 3DAD3EAB1DF850E9000B6D8A /* libcxxreact.a */ = {
982
- isa = PBXReferenceProxy;
983
- fileType = archive.ar;
984
- path = libcxxreact.a;
985
- remoteRef = 3DAD3EAA1DF850E9000B6D8A /* PBXContainerItemProxy */;
986
- sourceTree = BUILT_PRODUCTS_DIR;
987
- };
988
- 3DAD3EAD1DF850E9000B6D8A /* libjschelpers.a */ = {
989
- isa = PBXReferenceProxy;
990
- fileType = archive.ar;
991
- path = libjschelpers.a;
992
- remoteRef = 3DAD3EAC1DF850E9000B6D8A /* PBXContainerItemProxy */;
993
- sourceTree = BUILT_PRODUCTS_DIR;
994
- };
995
- 3DAD3EAF1DF850E9000B6D8A /* libjschelpers.a */ = {
996
- isa = PBXReferenceProxy;
997
- fileType = archive.ar;
998
- path = libjschelpers.a;
999
- remoteRef = 3DAD3EAE1DF850E9000B6D8A /* PBXContainerItemProxy */;
1000
- sourceTree = BUILT_PRODUCTS_DIR;
1001
- };
1002
- 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
1003
- isa = PBXReferenceProxy;
1004
- fileType = archive.ar;
1005
- path = libRCTAnimation.a;
1006
- remoteRef = 5E9157321DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
1007
- sourceTree = BUILT_PRODUCTS_DIR;
1008
- };
1009
- 5E9157351DD0AC6500FF2AA8 /* libRCTAnimation.a */ = {
1010
- isa = PBXReferenceProxy;
1011
- fileType = archive.ar;
1012
- path = libRCTAnimation.a;
1013
- remoteRef = 5E9157341DD0AC6500FF2AA8 /* PBXContainerItemProxy */;
1014
- sourceTree = BUILT_PRODUCTS_DIR;
1015
- };
1016
- 78C398B91ACF4ADC00677621 /* libRCTLinking.a */ = {
1017
- isa = PBXReferenceProxy;
1018
- fileType = archive.ar;
1019
- path = libRCTLinking.a;
1020
- remoteRef = 78C398B81ACF4ADC00677621 /* PBXContainerItemProxy */;
1021
- sourceTree = BUILT_PRODUCTS_DIR;
1022
- };
1023
- 832341B51AAA6A8300B99B32 /* libRCTText.a */ = {
1024
- isa = PBXReferenceProxy;
1025
- fileType = archive.ar;
1026
- path = libRCTText.a;
1027
- remoteRef = 832341B41AAA6A8300B99B32 /* PBXContainerItemProxy */;
1028
- sourceTree = BUILT_PRODUCTS_DIR;
1029
- };
1030
- ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */ = {
1031
- isa = PBXReferenceProxy;
1032
- fileType = archive.ar;
1033
- path = libRCTBlob.a;
1034
- remoteRef = ADBDB9261DFEBF0700ED6528 /* PBXContainerItemProxy */;
1035
- sourceTree = BUILT_PRODUCTS_DIR;
1036
- };
1037
- /* End PBXReferenceProxy section */
1038
-
1039
- /* Begin PBXResourcesBuildPhase section */
1040
- 00E356EC1AD99517003FC87E /* Resources */ = {
1041
- isa = PBXResourcesBuildPhase;
1042
- buildActionMask = 2147483647;
1043
- files = (
1044
- );
1045
- runOnlyForDeploymentPostprocessing = 0;
1046
- };
1047
- 13B07F8E1A680F5B00A75B9A /* Resources */ = {
1048
- isa = PBXResourcesBuildPhase;
1049
- buildActionMask = 2147483647;
1050
- files = (
1051
- 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
1052
- 13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
1053
- );
1054
- runOnlyForDeploymentPostprocessing = 0;
1055
- };
1056
- 2D02E4791E0B4A5D006451C7 /* Resources */ = {
1057
- isa = PBXResourcesBuildPhase;
1058
- buildActionMask = 2147483647;
1059
- files = (
1060
- 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
1061
- );
1062
- runOnlyForDeploymentPostprocessing = 0;
1063
- };
1064
- 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
1065
- isa = PBXResourcesBuildPhase;
1066
- buildActionMask = 2147483647;
1067
- files = (
1068
- );
1069
- runOnlyForDeploymentPostprocessing = 0;
1070
- };
1071
- /* End PBXResourcesBuildPhase section */
1072
-
1073
- /* Begin PBXShellScriptBuildPhase section */
1074
- 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
1075
- isa = PBXShellScriptBuildPhase;
1076
- buildActionMask = 2147483647;
1077
- files = (
1078
- );
1079
- inputPaths = (
1080
- );
1081
- name = "Bundle React Native code and images";
1082
- outputPaths = (
1083
- );
1084
- runOnlyForDeploymentPostprocessing = 0;
1085
- shellPath = /bin/sh;
1086
- shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
1087
- };
1088
- 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
1089
- isa = PBXShellScriptBuildPhase;
1090
- buildActionMask = 2147483647;
1091
- files = (
1092
- );
1093
- inputPaths = (
1094
- );
1095
- name = "Bundle React Native Code And Images";
1096
- outputPaths = (
1097
- );
1098
- runOnlyForDeploymentPostprocessing = 0;
1099
- shellPath = /bin/sh;
1100
- shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
1101
- };
1102
- /* End PBXShellScriptBuildPhase section */
1103
-
1104
- /* Begin PBXSourcesBuildPhase section */
1105
- 00E356EA1AD99517003FC87E /* Sources */ = {
1106
- isa = PBXSourcesBuildPhase;
1107
- buildActionMask = 2147483647;
1108
- files = (
1109
- 00E356F31AD99517003FC87E /* KenBurnsExampleNewTests.m in Sources */,
1110
- );
1111
- runOnlyForDeploymentPostprocessing = 0;
1112
- };
1113
- 13B07F871A680F5B00A75B9A /* Sources */ = {
1114
- isa = PBXSourcesBuildPhase;
1115
- buildActionMask = 2147483647;
1116
- files = (
1117
- 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
1118
- 13B07FC11A68108700A75B9A /* main.m in Sources */,
1119
- );
1120
- runOnlyForDeploymentPostprocessing = 0;
1121
- };
1122
- 2D02E4771E0B4A5D006451C7 /* Sources */ = {
1123
- isa = PBXSourcesBuildPhase;
1124
- buildActionMask = 2147483647;
1125
- files = (
1126
- 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
1127
- 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
1128
- );
1129
- runOnlyForDeploymentPostprocessing = 0;
1130
- };
1131
- 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
1132
- isa = PBXSourcesBuildPhase;
1133
- buildActionMask = 2147483647;
1134
- files = (
1135
- 2DCD954D1E0B4F2C00145EB5 /* KenBurnsExampleNewTests.m in Sources */,
1136
- );
1137
- runOnlyForDeploymentPostprocessing = 0;
1138
- };
1139
- /* End PBXSourcesBuildPhase section */
1140
-
1141
- /* Begin PBXTargetDependency section */
1142
- 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
1143
- isa = PBXTargetDependency;
1144
- target = 13B07F861A680F5B00A75B9A /* KenBurnsExampleNew */;
1145
- targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
1146
- };
1147
- 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
1148
- isa = PBXTargetDependency;
1149
- target = 2D02E47A1E0B4A5D006451C7 /* KenBurnsExampleNew-tvOS */;
1150
- targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
1151
- };
1152
- /* End PBXTargetDependency section */
1153
-
1154
- /* Begin PBXVariantGroup section */
1155
- 13B07FB11A68108700A75B9A /* LaunchScreen.xib */ = {
1156
- isa = PBXVariantGroup;
1157
- children = (
1158
- 13B07FB21A68108700A75B9A /* Base */,
1159
- );
1160
- name = LaunchScreen.xib;
1161
- path = KenBurnsExampleNew;
1162
- sourceTree = "<group>";
1163
- };
1164
- /* End PBXVariantGroup section */
1165
-
1166
- /* Begin XCBuildConfiguration section */
1167
- 00E356F61AD99517003FC87E /* Debug */ = {
1168
- isa = XCBuildConfiguration;
1169
- buildSettings = {
1170
- BUNDLE_LOADER = "$(TEST_HOST)";
1171
- GCC_PREPROCESSOR_DEFINITIONS = (
1172
- "DEBUG=1",
1173
- "$(inherited)",
1174
- );
1175
- INFOPLIST_FILE = KenBurnsExampleNewTests/Info.plist;
1176
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1177
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1178
- OTHER_LDFLAGS = (
1179
- "-ObjC",
1180
- "-lc++",
1181
- );
1182
- PRODUCT_NAME = "$(TARGET_NAME)";
1183
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KenBurnsExampleNew.app/KenBurnsExampleNew";
1184
- };
1185
- name = Debug;
1186
- };
1187
- 00E356F71AD99517003FC87E /* Release */ = {
1188
- isa = XCBuildConfiguration;
1189
- buildSettings = {
1190
- BUNDLE_LOADER = "$(TEST_HOST)";
1191
- COPY_PHASE_STRIP = NO;
1192
- INFOPLIST_FILE = KenBurnsExampleNewTests/Info.plist;
1193
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1194
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1195
- OTHER_LDFLAGS = (
1196
- "-ObjC",
1197
- "-lc++",
1198
- );
1199
- PRODUCT_NAME = "$(TARGET_NAME)";
1200
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KenBurnsExampleNew.app/KenBurnsExampleNew";
1201
- };
1202
- name = Release;
1203
- };
1204
- 13B07F941A680F5B00A75B9A /* Debug */ = {
1205
- isa = XCBuildConfiguration;
1206
- buildSettings = {
1207
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1208
- CURRENT_PROJECT_VERSION = 1;
1209
- DEAD_CODE_STRIPPING = NO;
1210
- INFOPLIST_FILE = KenBurnsExampleNew/Info.plist;
1211
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1212
- OTHER_LDFLAGS = (
1213
- "$(inherited)",
1214
- "-ObjC",
1215
- "-lc++",
1216
- );
1217
- PRODUCT_NAME = KenBurnsExampleNew;
1218
- VERSIONING_SYSTEM = "apple-generic";
1219
- };
1220
- name = Debug;
1221
- };
1222
- 13B07F951A680F5B00A75B9A /* Release */ = {
1223
- isa = XCBuildConfiguration;
1224
- buildSettings = {
1225
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
1226
- CURRENT_PROJECT_VERSION = 1;
1227
- INFOPLIST_FILE = KenBurnsExampleNew/Info.plist;
1228
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1229
- OTHER_LDFLAGS = (
1230
- "$(inherited)",
1231
- "-ObjC",
1232
- "-lc++",
1233
- );
1234
- PRODUCT_NAME = KenBurnsExampleNew;
1235
- VERSIONING_SYSTEM = "apple-generic";
1236
- };
1237
- name = Release;
1238
- };
1239
- 2D02E4971E0B4A5E006451C7 /* Debug */ = {
1240
- isa = XCBuildConfiguration;
1241
- buildSettings = {
1242
- ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1243
- ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1244
- CLANG_ANALYZER_NONNULL = YES;
1245
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1246
- CLANG_WARN_INFINITE_RECURSION = YES;
1247
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
1248
- DEBUG_INFORMATION_FORMAT = dwarf;
1249
- ENABLE_TESTABILITY = YES;
1250
- GCC_NO_COMMON_BLOCKS = YES;
1251
- INFOPLIST_FILE = "KenBurnsExampleNew-tvOS/Info.plist";
1252
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1253
- OTHER_LDFLAGS = (
1254
- "-ObjC",
1255
- "-lc++",
1256
- );
1257
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.KenBurnsExampleNew-tvOS";
1258
- PRODUCT_NAME = "$(TARGET_NAME)";
1259
- SDKROOT = appletvos;
1260
- TARGETED_DEVICE_FAMILY = 3;
1261
- TVOS_DEPLOYMENT_TARGET = 9.2;
1262
- };
1263
- name = Debug;
1264
- };
1265
- 2D02E4981E0B4A5E006451C7 /* Release */ = {
1266
- isa = XCBuildConfiguration;
1267
- buildSettings = {
1268
- ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
1269
- ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
1270
- CLANG_ANALYZER_NONNULL = YES;
1271
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1272
- CLANG_WARN_INFINITE_RECURSION = YES;
1273
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
1274
- COPY_PHASE_STRIP = NO;
1275
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1276
- GCC_NO_COMMON_BLOCKS = YES;
1277
- INFOPLIST_FILE = "KenBurnsExampleNew-tvOS/Info.plist";
1278
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
1279
- OTHER_LDFLAGS = (
1280
- "-ObjC",
1281
- "-lc++",
1282
- );
1283
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.KenBurnsExampleNew-tvOS";
1284
- PRODUCT_NAME = "$(TARGET_NAME)";
1285
- SDKROOT = appletvos;
1286
- TARGETED_DEVICE_FAMILY = 3;
1287
- TVOS_DEPLOYMENT_TARGET = 9.2;
1288
- };
1289
- name = Release;
1290
- };
1291
- 2D02E4991E0B4A5E006451C7 /* Debug */ = {
1292
- isa = XCBuildConfiguration;
1293
- buildSettings = {
1294
- BUNDLE_LOADER = "$(TEST_HOST)";
1295
- CLANG_ANALYZER_NONNULL = YES;
1296
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1297
- CLANG_WARN_INFINITE_RECURSION = YES;
1298
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
1299
- DEBUG_INFORMATION_FORMAT = dwarf;
1300
- ENABLE_TESTABILITY = YES;
1301
- GCC_NO_COMMON_BLOCKS = YES;
1302
- INFOPLIST_FILE = "KenBurnsExampleNew-tvOSTests/Info.plist";
1303
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1304
- OTHER_LDFLAGS = (
1305
- "-ObjC",
1306
- "-lc++",
1307
- );
1308
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.KenBurnsExampleNew-tvOSTests";
1309
- PRODUCT_NAME = "$(TARGET_NAME)";
1310
- SDKROOT = appletvos;
1311
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KenBurnsExampleNew-tvOS.app/KenBurnsExampleNew-tvOS";
1312
- TVOS_DEPLOYMENT_TARGET = 10.1;
1313
- };
1314
- name = Debug;
1315
- };
1316
- 2D02E49A1E0B4A5E006451C7 /* Release */ = {
1317
- isa = XCBuildConfiguration;
1318
- buildSettings = {
1319
- BUNDLE_LOADER = "$(TEST_HOST)";
1320
- CLANG_ANALYZER_NONNULL = YES;
1321
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
1322
- CLANG_WARN_INFINITE_RECURSION = YES;
1323
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
1324
- COPY_PHASE_STRIP = NO;
1325
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
1326
- GCC_NO_COMMON_BLOCKS = YES;
1327
- INFOPLIST_FILE = "KenBurnsExampleNew-tvOSTests/Info.plist";
1328
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1329
- OTHER_LDFLAGS = (
1330
- "-ObjC",
1331
- "-lc++",
1332
- );
1333
- PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.KenBurnsExampleNew-tvOSTests";
1334
- PRODUCT_NAME = "$(TARGET_NAME)";
1335
- SDKROOT = appletvos;
1336
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KenBurnsExampleNew-tvOS.app/KenBurnsExampleNew-tvOS";
1337
- TVOS_DEPLOYMENT_TARGET = 10.1;
1338
- };
1339
- name = Release;
1340
- };
1341
- 83CBBA201A601CBA00E9B192 /* Debug */ = {
1342
- isa = XCBuildConfiguration;
1343
- buildSettings = {
1344
- ALWAYS_SEARCH_USER_PATHS = NO;
1345
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
1346
- CLANG_CXX_LIBRARY = "libc++";
1347
- CLANG_ENABLE_MODULES = YES;
1348
- CLANG_ENABLE_OBJC_ARC = YES;
1349
- CLANG_WARN_BOOL_CONVERSION = YES;
1350
- CLANG_WARN_CONSTANT_CONVERSION = YES;
1351
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1352
- CLANG_WARN_EMPTY_BODY = YES;
1353
- CLANG_WARN_ENUM_CONVERSION = YES;
1354
- CLANG_WARN_INT_CONVERSION = YES;
1355
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1356
- CLANG_WARN_UNREACHABLE_CODE = YES;
1357
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1358
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
1359
- COPY_PHASE_STRIP = NO;
1360
- ENABLE_STRICT_OBJC_MSGSEND = YES;
1361
- GCC_C_LANGUAGE_STANDARD = gnu99;
1362
- GCC_DYNAMIC_NO_PIC = NO;
1363
- GCC_OPTIMIZATION_LEVEL = 0;
1364
- GCC_PREPROCESSOR_DEFINITIONS = (
1365
- "DEBUG=1",
1366
- "$(inherited)",
1367
- );
1368
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
1369
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1370
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1371
- GCC_WARN_UNDECLARED_SELECTOR = YES;
1372
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1373
- GCC_WARN_UNUSED_FUNCTION = YES;
1374
- GCC_WARN_UNUSED_VARIABLE = YES;
1375
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1376
- MTL_ENABLE_DEBUG_INFO = YES;
1377
- ONLY_ACTIVE_ARCH = YES;
1378
- SDKROOT = iphoneos;
1379
- };
1380
- name = Debug;
1381
- };
1382
- 83CBBA211A601CBA00E9B192 /* Release */ = {
1383
- isa = XCBuildConfiguration;
1384
- buildSettings = {
1385
- ALWAYS_SEARCH_USER_PATHS = NO;
1386
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
1387
- CLANG_CXX_LIBRARY = "libc++";
1388
- CLANG_ENABLE_MODULES = YES;
1389
- CLANG_ENABLE_OBJC_ARC = YES;
1390
- CLANG_WARN_BOOL_CONVERSION = YES;
1391
- CLANG_WARN_CONSTANT_CONVERSION = YES;
1392
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
1393
- CLANG_WARN_EMPTY_BODY = YES;
1394
- CLANG_WARN_ENUM_CONVERSION = YES;
1395
- CLANG_WARN_INT_CONVERSION = YES;
1396
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
1397
- CLANG_WARN_UNREACHABLE_CODE = YES;
1398
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
1399
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
1400
- COPY_PHASE_STRIP = YES;
1401
- ENABLE_NS_ASSERTIONS = NO;
1402
- ENABLE_STRICT_OBJC_MSGSEND = YES;
1403
- GCC_C_LANGUAGE_STANDARD = gnu99;
1404
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
1405
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
1406
- GCC_WARN_UNDECLARED_SELECTOR = YES;
1407
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
1408
- GCC_WARN_UNUSED_FUNCTION = YES;
1409
- GCC_WARN_UNUSED_VARIABLE = YES;
1410
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
1411
- MTL_ENABLE_DEBUG_INFO = NO;
1412
- SDKROOT = iphoneos;
1413
- VALIDATE_PRODUCT = YES;
1414
- };
1415
- name = Release;
1416
- };
1417
- /* End XCBuildConfiguration section */
1418
-
1419
- /* Begin XCConfigurationList section */
1420
- 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "KenBurnsExampleNewTests" */ = {
1421
- isa = XCConfigurationList;
1422
- buildConfigurations = (
1423
- 00E356F61AD99517003FC87E /* Debug */,
1424
- 00E356F71AD99517003FC87E /* Release */,
1425
- );
1426
- defaultConfigurationIsVisible = 0;
1427
- defaultConfigurationName = Release;
1428
- };
1429
- 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "KenBurnsExampleNew" */ = {
1430
- isa = XCConfigurationList;
1431
- buildConfigurations = (
1432
- 13B07F941A680F5B00A75B9A /* Debug */,
1433
- 13B07F951A680F5B00A75B9A /* Release */,
1434
- );
1435
- defaultConfigurationIsVisible = 0;
1436
- defaultConfigurationName = Release;
1437
- };
1438
- 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "KenBurnsExampleNew-tvOS" */ = {
1439
- isa = XCConfigurationList;
1440
- buildConfigurations = (
1441
- 2D02E4971E0B4A5E006451C7 /* Debug */,
1442
- 2D02E4981E0B4A5E006451C7 /* Release */,
1443
- );
1444
- defaultConfigurationIsVisible = 0;
1445
- defaultConfigurationName = Release;
1446
- };
1447
- 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "KenBurnsExampleNew-tvOSTests" */ = {
1448
- isa = XCConfigurationList;
1449
- buildConfigurations = (
1450
- 2D02E4991E0B4A5E006451C7 /* Debug */,
1451
- 2D02E49A1E0B4A5E006451C7 /* Release */,
1452
- );
1453
- defaultConfigurationIsVisible = 0;
1454
- defaultConfigurationName = Release;
1455
- };
1456
- 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "KenBurnsExampleNew" */ = {
1457
- isa = XCConfigurationList;
1458
- buildConfigurations = (
1459
- 83CBBA201A601CBA00E9B192 /* Debug */,
1460
- 83CBBA211A601CBA00E9B192 /* Release */,
1461
- );
1462
- defaultConfigurationIsVisible = 0;
1463
- defaultConfigurationName = Release;
1464
- };
1465
- /* End XCConfigurationList section */
1466
- };
1467
- rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
1468
- }