@woshapp/react-native-background-upload 6.16.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 (106) hide show
  1. package/.gitattributes +1 -0
  2. package/LICENSE +21 -0
  3. package/README.md +53 -0
  4. package/android/build.gradle +82 -0
  5. package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  6. package/android/gradle/wrapper/gradle-wrapper.properties +6 -0
  7. package/android/gradle.properties +6 -0
  8. package/android/gradlew +185 -0
  9. package/android/gradlew.bat +89 -0
  10. package/android/src/main/AndroidManifest.xml +1 -0
  11. package/android/src/main/java/com/appfolio/extensions/ContextExtensions.kt +63 -0
  12. package/android/src/main/java/com/appfolio/extensions/UploadExtensions.kt +57 -0
  13. package/android/src/main/java/com/appfolio/uploader/GlobalRequestObserverDelegate.kt +62 -0
  14. package/android/src/main/java/com/appfolio/uploader/ModifiedBinaryUploadRequest.kt +29 -0
  15. package/android/src/main/java/com/appfolio/uploader/ModifiedHttpUploadRequest.kt +57 -0
  16. package/android/src/main/java/com/appfolio/uploader/ModifiedMultipartUploadRequest.kt +60 -0
  17. package/android/src/main/java/com/appfolio/uploader/UploaderModule.kt +384 -0
  18. package/android/src/main/java/com/appfolio/uploader/UploaderReactPackage.java +32 -0
  19. package/android/src/main/java/com/appfolio/work/TaskCompletionNotifier.kt +47 -0
  20. package/android/src/main/java/com/appfolio/work/UploadManager.kt +109 -0
  21. package/android/src/main/java/com/appfolio/work/UploadWorker.kt +20 -0
  22. package/bitbucket-pipelines.yml +14 -0
  23. package/example/RNBackgroundExample/.buckconfig +6 -0
  24. package/example/RNBackgroundExample/.eslintrc.js +4 -0
  25. package/example/RNBackgroundExample/.flowconfig +74 -0
  26. package/example/RNBackgroundExample/.gitattributes +1 -0
  27. package/example/RNBackgroundExample/.prettierrc.js +6 -0
  28. package/example/RNBackgroundExample/.watchmanconfig +1 -0
  29. package/example/RNBackgroundExample/App.js +325 -0
  30. package/example/RNBackgroundExample/README.md +50 -0
  31. package/example/RNBackgroundExample/__tests__/App-test.js +14 -0
  32. package/example/RNBackgroundExample/android/app/BUCK +55 -0
  33. package/example/RNBackgroundExample/android/app/build.gradle +225 -0
  34. package/example/RNBackgroundExample/android/app/build_defs.bzl +19 -0
  35. package/example/RNBackgroundExample/android/app/debug.keystore +0 -0
  36. package/example/RNBackgroundExample/android/app/proguard-rules.pro +10 -0
  37. package/example/RNBackgroundExample/android/app/src/androidTest/java/com/rnbackgroundexample/DetoxTest.java +24 -0
  38. package/example/RNBackgroundExample/android/app/src/debug/AndroidManifest.xml +8 -0
  39. package/example/RNBackgroundExample/android/app/src/debug/java/com/rnbackgroundexample/ReactNativeFlipper.java +72 -0
  40. package/example/RNBackgroundExample/android/app/src/main/AndroidManifest.xml +33 -0
  41. package/example/RNBackgroundExample/android/app/src/main/java/com/rnbackgroundexample/MainActivity.java +15 -0
  42. package/example/RNBackgroundExample/android/app/src/main/java/com/rnbackgroundexample/MainApplication.java +76 -0
  43. package/example/RNBackgroundExample/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  44. package/example/RNBackgroundExample/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  45. package/example/RNBackgroundExample/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  46. package/example/RNBackgroundExample/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  47. package/example/RNBackgroundExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  48. package/example/RNBackgroundExample/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  49. package/example/RNBackgroundExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  50. package/example/RNBackgroundExample/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  51. package/example/RNBackgroundExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  52. package/example/RNBackgroundExample/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  53. package/example/RNBackgroundExample/android/app/src/main/res/values/strings.xml +3 -0
  54. package/example/RNBackgroundExample/android/app/src/main/res/values/styles.xml +9 -0
  55. package/example/RNBackgroundExample/android/build.gradle +42 -0
  56. package/example/RNBackgroundExample/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  57. package/example/RNBackgroundExample/android/gradle/wrapper/gradle-wrapper.properties +5 -0
  58. package/example/RNBackgroundExample/android/gradle.properties +23 -0
  59. package/example/RNBackgroundExample/android/gradlew +183 -0
  60. package/example/RNBackgroundExample/android/gradlew.bat +103 -0
  61. package/example/RNBackgroundExample/android/settings.gradle +3 -0
  62. package/example/RNBackgroundExample/app.json +4 -0
  63. package/example/RNBackgroundExample/babel.config.js +3 -0
  64. package/example/RNBackgroundExample/e2e/config.json +8 -0
  65. package/example/RNBackgroundExample/e2e/detox.pathbuilder.android.js +4 -0
  66. package/example/RNBackgroundExample/e2e/detox.pathbuilder.ios.js +4 -0
  67. package/example/RNBackgroundExample/e2e/detox.pathbuilder.js +21 -0
  68. package/example/RNBackgroundExample/e2e/environment.js +23 -0
  69. package/example/RNBackgroundExample/e2e/firstTest.spec.js +56 -0
  70. package/example/RNBackgroundExample/e2e/server.js +69 -0
  71. package/example/RNBackgroundExample/e2e/start-server.js +2 -0
  72. package/example/RNBackgroundExample/index.js +9 -0
  73. package/example/RNBackgroundExample/ios/App.swift +9 -0
  74. package/example/RNBackgroundExample/ios/Podfile +24 -0
  75. package/example/RNBackgroundExample/ios/Podfile.lock +387 -0
  76. package/example/RNBackgroundExample/ios/RNBackgroundExample/AppDelegate.h +15 -0
  77. package/example/RNBackgroundExample/ios/RNBackgroundExample/AppDelegate.m +42 -0
  78. package/example/RNBackgroundExample/ios/RNBackgroundExample/Images.xcassets/AppIcon.appiconset/Contents.json +38 -0
  79. package/example/RNBackgroundExample/ios/RNBackgroundExample/Images.xcassets/Contents.json +6 -0
  80. package/example/RNBackgroundExample/ios/RNBackgroundExample/Info.plist +65 -0
  81. package/example/RNBackgroundExample/ios/RNBackgroundExample/LaunchScreen.storyboard +58 -0
  82. package/example/RNBackgroundExample/ios/RNBackgroundExample/main.m +16 -0
  83. package/example/RNBackgroundExample/ios/RNBackgroundExample-Bridging-Header.h +4 -0
  84. package/example/RNBackgroundExample/ios/RNBackgroundExample-tvOS/Info.plist +53 -0
  85. package/example/RNBackgroundExample/ios/RNBackgroundExample-tvOSTests/Info.plist +24 -0
  86. package/example/RNBackgroundExample/ios/RNBackgroundExample.xcodeproj/project.pbxproj +991 -0
  87. package/example/RNBackgroundExample/ios/RNBackgroundExample.xcodeproj/xcshareddata/xcschemes/RNBackgroundExample-tvOS.xcscheme +88 -0
  88. package/example/RNBackgroundExample/ios/RNBackgroundExample.xcodeproj/xcshareddata/xcschemes/RNBackgroundExample.xcscheme +88 -0
  89. package/example/RNBackgroundExample/ios/RNBackgroundExample.xcworkspace/contents.xcworkspacedata +10 -0
  90. package/example/RNBackgroundExample/ios/RNBackgroundExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  91. package/example/RNBackgroundExample/ios/RNBackgroundExampleTests/Info.plist +24 -0
  92. package/example/RNBackgroundExample/ios/RNBackgroundExampleTests/RNBackgroundExampleTests.m +72 -0
  93. package/example/RNBackgroundExample/metro.config.js +22 -0
  94. package/example/RNBackgroundExample/package.json +71 -0
  95. package/example/RNBackgroundExample/scripts/deploy-android.sh +14 -0
  96. package/example/RNBackgroundExample/scripts/deploy-ios.sh +11 -0
  97. package/example/RNBackgroundExample/scripts/postinstall.sh +13 -0
  98. package/example/RNBackgroundExample/wait-for-emulator.sh +39 -0
  99. package/example/RNBackgroundExample/yarn.lock +8165 -0
  100. package/index.d.ts +154 -0
  101. package/ios/VydiaRNFileUploader.h +10 -0
  102. package/ios/VydiaRNFileUploader.m +457 -0
  103. package/ios/VydiaRNFileUploader.xcodeproj/project.pbxproj +254 -0
  104. package/package.json +37 -0
  105. package/react-native-upload.podspec +23 -0
  106. package/src/index.js +151 -0
@@ -0,0 +1,991 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 00E356F31AD99517003FC87E /* RNBackgroundExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* RNBackgroundExampleTests.m */; };
11
+ 12164684D9AEA96BF779937C /* libPods-RNBackgroundExample-tvOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 58233A2DF66C8C6166765E6E /* libPods-RNBackgroundExample-tvOS.a */; };
12
+ 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
13
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
14
+ 13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
15
+ 29535F4924F83FC70097787C /* App.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29535F4824F83FC70097787C /* App.swift */; };
16
+ 29F1BD0324F6E00900502923 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 29F1BD0224F6E00900502923 /* LaunchScreen.storyboard */; };
17
+ 29F1BD0424F6E00900502923 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 29F1BD0224F6E00900502923 /* LaunchScreen.storyboard */; };
18
+ 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; };
19
+ 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
20
+ 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
21
+ 2DCD954D1E0B4F2C00145EB5 /* RNBackgroundExampleTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* RNBackgroundExampleTests.m */; };
22
+ 43A3E07C5A51481EF8C9705D /* libPods-RNBackgroundExample.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6355312C2B5407FB1A454342 /* libPods-RNBackgroundExample.a */; };
23
+ 5B636E22053D7E6A939377A0 /* libPods-RNBackgroundExample-RNBackgroundExampleTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7C37FB7F638A6A104556586E /* libPods-RNBackgroundExample-RNBackgroundExampleTests.a */; };
24
+ 80A9FB58DBDAD584DFACC466 /* libPods-RNBackgroundExample-tvOSTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = CE335F7DAB54CB6E0337713F /* libPods-RNBackgroundExample-tvOSTests.a */; };
25
+ /* End PBXBuildFile section */
26
+
27
+ /* Begin PBXContainerItemProxy section */
28
+ 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
29
+ isa = PBXContainerItemProxy;
30
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
31
+ proxyType = 1;
32
+ remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
33
+ remoteInfo = RNBackgroundExample;
34
+ };
35
+ 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */ = {
36
+ isa = PBXContainerItemProxy;
37
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
38
+ proxyType = 1;
39
+ remoteGlobalIDString = 2D02E47A1E0B4A5D006451C7;
40
+ remoteInfo = "RNBackgroundExample-tvOS";
41
+ };
42
+ /* End PBXContainerItemProxy section */
43
+
44
+ /* Begin PBXFileReference section */
45
+ 008F07F21AC5B25A0029DE68 /* main.jsbundle */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = main.jsbundle; sourceTree = "<group>"; };
46
+ 00E356EE1AD99517003FC87E /* RNBackgroundExampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RNBackgroundExampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
47
+ 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
48
+ 00E356F21AD99517003FC87E /* RNBackgroundExampleTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RNBackgroundExampleTests.m; sourceTree = "<group>"; };
49
+ 13B07F961A680F5B00A75B9A /* RNBackgroundExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RNBackgroundExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
50
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = RNBackgroundExample/AppDelegate.h; sourceTree = "<group>"; };
51
+ 13B07FB01A68108700A75B9A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = RNBackgroundExample/AppDelegate.m; sourceTree = "<group>"; };
52
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = RNBackgroundExample/Images.xcassets; sourceTree = "<group>"; };
53
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = RNBackgroundExample/Info.plist; sourceTree = "<group>"; };
54
+ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = RNBackgroundExample/main.m; sourceTree = "<group>"; };
55
+ 192F247A2FB83B6E10A57DF3 /* Pods-RNBackgroundExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNBackgroundExampleTests.release.xcconfig"; path = "Target Support Files/Pods-RNBackgroundExampleTests/Pods-RNBackgroundExampleTests.release.xcconfig"; sourceTree = "<group>"; };
56
+ 1A2D1F07459D1A0DB2654B7B /* Pods-RNBackgroundExample-RNBackgroundExampleTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNBackgroundExample-RNBackgroundExampleTests.release.xcconfig"; path = "Target Support Files/Pods-RNBackgroundExample-RNBackgroundExampleTests/Pods-RNBackgroundExample-RNBackgroundExampleTests.release.xcconfig"; sourceTree = "<group>"; };
57
+ 29535F4724F83FC70097787C /* RNBackgroundExample-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "RNBackgroundExample-Bridging-Header.h"; sourceTree = "<group>"; };
58
+ 29535F4824F83FC70097787C /* App.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = App.swift; sourceTree = "<group>"; };
59
+ 29F1BD0224F6E00900502923 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = RNBackgroundExample/LaunchScreen.storyboard; sourceTree = "<group>"; };
60
+ 2D02E47B1E0B4A5D006451C7 /* RNBackgroundExample-tvOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "RNBackgroundExample-tvOS.app"; sourceTree = BUILT_PRODUCTS_DIR; };
61
+ 2D02E4901E0B4A5D006451C7 /* RNBackgroundExample-tvOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "RNBackgroundExample-tvOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
62
+ 58233A2DF66C8C6166765E6E /* libPods-RNBackgroundExample-tvOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-RNBackgroundExample-tvOS.a"; sourceTree = BUILT_PRODUCTS_DIR; };
63
+ 6355312C2B5407FB1A454342 /* libPods-RNBackgroundExample.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-RNBackgroundExample.a"; sourceTree = BUILT_PRODUCTS_DIR; };
64
+ 6B0F341F6828B66308A1C24B /* Pods-RNBackgroundExample-tvOS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNBackgroundExample-tvOS.release.xcconfig"; path = "Target Support Files/Pods-RNBackgroundExample-tvOS/Pods-RNBackgroundExample-tvOS.release.xcconfig"; sourceTree = "<group>"; };
65
+ 7C37FB7F638A6A104556586E /* libPods-RNBackgroundExample-RNBackgroundExampleTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-RNBackgroundExample-RNBackgroundExampleTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
66
+ 7CFA0000B7083D59A84627BE /* Pods-RNBackgroundExample-tvOSTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNBackgroundExample-tvOSTests.debug.xcconfig"; path = "Target Support Files/Pods-RNBackgroundExample-tvOSTests/Pods-RNBackgroundExample-tvOSTests.debug.xcconfig"; sourceTree = "<group>"; };
67
+ 86C2167B968C66F579F0B252 /* Pods-RNBackgroundExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNBackgroundExample.debug.xcconfig"; path = "Target Support Files/Pods-RNBackgroundExample/Pods-RNBackgroundExample.debug.xcconfig"; sourceTree = "<group>"; };
68
+ 932B2E1C5F0C483A80708238 /* Pods-RNBackgroundExample-RNBackgroundExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNBackgroundExample-RNBackgroundExampleTests.debug.xcconfig"; path = "Target Support Files/Pods-RNBackgroundExample-RNBackgroundExampleTests/Pods-RNBackgroundExample-RNBackgroundExampleTests.debug.xcconfig"; sourceTree = "<group>"; };
69
+ A8EB4EA2AA6560A43B0F8D66 /* Pods-RNBackgroundExample-tvOSTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNBackgroundExample-tvOSTests.release.xcconfig"; path = "Target Support Files/Pods-RNBackgroundExample-tvOSTests/Pods-RNBackgroundExample-tvOSTests.release.xcconfig"; sourceTree = "<group>"; };
70
+ BB19BEAAB0AA53E19D1E78EC /* Pods-RNBackgroundExampleTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNBackgroundExampleTests.debug.xcconfig"; path = "Target Support Files/Pods-RNBackgroundExampleTests/Pods-RNBackgroundExampleTests.debug.xcconfig"; sourceTree = "<group>"; };
71
+ C7E73CCD13C30F71B0347914 /* Pods-RNBackgroundExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNBackgroundExample.release.xcconfig"; path = "Target Support Files/Pods-RNBackgroundExample/Pods-RNBackgroundExample.release.xcconfig"; sourceTree = "<group>"; };
72
+ CE335F7DAB54CB6E0337713F /* libPods-RNBackgroundExample-tvOSTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-RNBackgroundExample-tvOSTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
73
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
74
+ ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; };
75
+ EE91229EA4D50C4123FD20C0 /* Pods-RNBackgroundExample-tvOS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RNBackgroundExample-tvOS.debug.xcconfig"; path = "Target Support Files/Pods-RNBackgroundExample-tvOS/Pods-RNBackgroundExample-tvOS.debug.xcconfig"; sourceTree = "<group>"; };
76
+ /* End PBXFileReference section */
77
+
78
+ /* Begin PBXFrameworksBuildPhase section */
79
+ 00E356EB1AD99517003FC87E /* Frameworks */ = {
80
+ isa = PBXFrameworksBuildPhase;
81
+ buildActionMask = 2147483647;
82
+ files = (
83
+ 5B636E22053D7E6A939377A0 /* libPods-RNBackgroundExample-RNBackgroundExampleTests.a in Frameworks */,
84
+ );
85
+ runOnlyForDeploymentPostprocessing = 0;
86
+ };
87
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
88
+ isa = PBXFrameworksBuildPhase;
89
+ buildActionMask = 2147483647;
90
+ files = (
91
+ 43A3E07C5A51481EF8C9705D /* libPods-RNBackgroundExample.a in Frameworks */,
92
+ );
93
+ runOnlyForDeploymentPostprocessing = 0;
94
+ };
95
+ 2D02E4781E0B4A5D006451C7 /* Frameworks */ = {
96
+ isa = PBXFrameworksBuildPhase;
97
+ buildActionMask = 2147483647;
98
+ files = (
99
+ 12164684D9AEA96BF779937C /* libPods-RNBackgroundExample-tvOS.a in Frameworks */,
100
+ );
101
+ runOnlyForDeploymentPostprocessing = 0;
102
+ };
103
+ 2D02E48D1E0B4A5D006451C7 /* Frameworks */ = {
104
+ isa = PBXFrameworksBuildPhase;
105
+ buildActionMask = 2147483647;
106
+ files = (
107
+ 80A9FB58DBDAD584DFACC466 /* libPods-RNBackgroundExample-tvOSTests.a in Frameworks */,
108
+ );
109
+ runOnlyForDeploymentPostprocessing = 0;
110
+ };
111
+ /* End PBXFrameworksBuildPhase section */
112
+
113
+ /* Begin PBXGroup section */
114
+ 00E356EF1AD99517003FC87E /* RNBackgroundExampleTests */ = {
115
+ isa = PBXGroup;
116
+ children = (
117
+ 00E356F21AD99517003FC87E /* RNBackgroundExampleTests.m */,
118
+ 00E356F01AD99517003FC87E /* Supporting Files */,
119
+ );
120
+ path = RNBackgroundExampleTests;
121
+ sourceTree = "<group>";
122
+ };
123
+ 00E356F01AD99517003FC87E /* Supporting Files */ = {
124
+ isa = PBXGroup;
125
+ children = (
126
+ 00E356F11AD99517003FC87E /* Info.plist */,
127
+ );
128
+ name = "Supporting Files";
129
+ sourceTree = "<group>";
130
+ };
131
+ 13B07FAE1A68108700A75B9A /* RNBackgroundExample */ = {
132
+ isa = PBXGroup;
133
+ children = (
134
+ 29F1BD0224F6E00900502923 /* LaunchScreen.storyboard */,
135
+ 008F07F21AC5B25A0029DE68 /* main.jsbundle */,
136
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
137
+ 13B07FB01A68108700A75B9A /* AppDelegate.m */,
138
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
139
+ 13B07FB61A68108700A75B9A /* Info.plist */,
140
+ 13B07FB71A68108700A75B9A /* main.m */,
141
+ 29535F4824F83FC70097787C /* App.swift */,
142
+ 29535F4724F83FC70097787C /* RNBackgroundExample-Bridging-Header.h */,
143
+ );
144
+ name = RNBackgroundExample;
145
+ sourceTree = "<group>";
146
+ };
147
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
148
+ isa = PBXGroup;
149
+ children = (
150
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
151
+ ED2971642150620600B7C4FE /* JavaScriptCore.framework */,
152
+ 6355312C2B5407FB1A454342 /* libPods-RNBackgroundExample.a */,
153
+ 58233A2DF66C8C6166765E6E /* libPods-RNBackgroundExample-tvOS.a */,
154
+ CE335F7DAB54CB6E0337713F /* libPods-RNBackgroundExample-tvOSTests.a */,
155
+ 7C37FB7F638A6A104556586E /* libPods-RNBackgroundExample-RNBackgroundExampleTests.a */,
156
+ );
157
+ name = Frameworks;
158
+ sourceTree = "<group>";
159
+ };
160
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
161
+ isa = PBXGroup;
162
+ children = (
163
+ );
164
+ name = Libraries;
165
+ sourceTree = "<group>";
166
+ };
167
+ 83CBB9F61A601CBA00E9B192 = {
168
+ isa = PBXGroup;
169
+ children = (
170
+ 13B07FAE1A68108700A75B9A /* RNBackgroundExample */,
171
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
172
+ 00E356EF1AD99517003FC87E /* RNBackgroundExampleTests */,
173
+ 83CBBA001A601CBA00E9B192 /* Products */,
174
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
175
+ FB6A6A4FD182259F935CC2D4 /* Pods */,
176
+ );
177
+ indentWidth = 2;
178
+ sourceTree = "<group>";
179
+ tabWidth = 2;
180
+ usesTabs = 0;
181
+ };
182
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
183
+ isa = PBXGroup;
184
+ children = (
185
+ 13B07F961A680F5B00A75B9A /* RNBackgroundExample.app */,
186
+ 00E356EE1AD99517003FC87E /* RNBackgroundExampleTests.xctest */,
187
+ 2D02E47B1E0B4A5D006451C7 /* RNBackgroundExample-tvOS.app */,
188
+ 2D02E4901E0B4A5D006451C7 /* RNBackgroundExample-tvOSTests.xctest */,
189
+ );
190
+ name = Products;
191
+ sourceTree = "<group>";
192
+ };
193
+ FB6A6A4FD182259F935CC2D4 /* Pods */ = {
194
+ isa = PBXGroup;
195
+ children = (
196
+ 86C2167B968C66F579F0B252 /* Pods-RNBackgroundExample.debug.xcconfig */,
197
+ C7E73CCD13C30F71B0347914 /* Pods-RNBackgroundExample.release.xcconfig */,
198
+ EE91229EA4D50C4123FD20C0 /* Pods-RNBackgroundExample-tvOS.debug.xcconfig */,
199
+ 6B0F341F6828B66308A1C24B /* Pods-RNBackgroundExample-tvOS.release.xcconfig */,
200
+ 7CFA0000B7083D59A84627BE /* Pods-RNBackgroundExample-tvOSTests.debug.xcconfig */,
201
+ A8EB4EA2AA6560A43B0F8D66 /* Pods-RNBackgroundExample-tvOSTests.release.xcconfig */,
202
+ BB19BEAAB0AA53E19D1E78EC /* Pods-RNBackgroundExampleTests.debug.xcconfig */,
203
+ 192F247A2FB83B6E10A57DF3 /* Pods-RNBackgroundExampleTests.release.xcconfig */,
204
+ 932B2E1C5F0C483A80708238 /* Pods-RNBackgroundExample-RNBackgroundExampleTests.debug.xcconfig */,
205
+ 1A2D1F07459D1A0DB2654B7B /* Pods-RNBackgroundExample-RNBackgroundExampleTests.release.xcconfig */,
206
+ );
207
+ path = Pods;
208
+ sourceTree = "<group>";
209
+ };
210
+ /* End PBXGroup section */
211
+
212
+ /* Begin PBXNativeTarget section */
213
+ 00E356ED1AD99517003FC87E /* RNBackgroundExampleTests */ = {
214
+ isa = PBXNativeTarget;
215
+ buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "RNBackgroundExampleTests" */;
216
+ buildPhases = (
217
+ 85DE3A1E74F5C4ACD72452B8 /* [CP] Check Pods Manifest.lock */,
218
+ 00E356EA1AD99517003FC87E /* Sources */,
219
+ 00E356EB1AD99517003FC87E /* Frameworks */,
220
+ 00E356EC1AD99517003FC87E /* Resources */,
221
+ CFA072526EB78916A3FA7CAE /* [CP] Copy Pods Resources */,
222
+ );
223
+ buildRules = (
224
+ );
225
+ dependencies = (
226
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */,
227
+ );
228
+ name = RNBackgroundExampleTests;
229
+ productName = RNBackgroundExampleTests;
230
+ productReference = 00E356EE1AD99517003FC87E /* RNBackgroundExampleTests.xctest */;
231
+ productType = "com.apple.product-type.bundle.unit-test";
232
+ };
233
+ 13B07F861A680F5B00A75B9A /* RNBackgroundExample */ = {
234
+ isa = PBXNativeTarget;
235
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RNBackgroundExample" */;
236
+ buildPhases = (
237
+ 73F2A01FCACF4CC28AA47165 /* [CP] Check Pods Manifest.lock */,
238
+ FD10A7F022414F080027D42C /* Start Packager */,
239
+ 13B07F871A680F5B00A75B9A /* Sources */,
240
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
241
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
242
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
243
+ 29F1BD0624F6E35400502923 /* [CP] Copy Pods Resources */,
244
+ );
245
+ buildRules = (
246
+ );
247
+ dependencies = (
248
+ );
249
+ name = RNBackgroundExample;
250
+ productName = RNBackgroundExample;
251
+ productReference = 13B07F961A680F5B00A75B9A /* RNBackgroundExample.app */;
252
+ productType = "com.apple.product-type.application";
253
+ };
254
+ 2D02E47A1E0B4A5D006451C7 /* RNBackgroundExample-tvOS */ = {
255
+ isa = PBXNativeTarget;
256
+ buildConfigurationList = 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RNBackgroundExample-tvOS" */;
257
+ buildPhases = (
258
+ 4E2BCC112314DEC167869E11 /* [CP] Check Pods Manifest.lock */,
259
+ FD10A7F122414F3F0027D42C /* Start Packager */,
260
+ 2D02E4771E0B4A5D006451C7 /* Sources */,
261
+ 2D02E4781E0B4A5D006451C7 /* Frameworks */,
262
+ 2D02E4791E0B4A5D006451C7 /* Resources */,
263
+ 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */,
264
+ );
265
+ buildRules = (
266
+ );
267
+ dependencies = (
268
+ );
269
+ name = "RNBackgroundExample-tvOS";
270
+ productName = "RNBackgroundExample-tvOS";
271
+ productReference = 2D02E47B1E0B4A5D006451C7 /* RNBackgroundExample-tvOS.app */;
272
+ productType = "com.apple.product-type.application";
273
+ };
274
+ 2D02E48F1E0B4A5D006451C7 /* RNBackgroundExample-tvOSTests */ = {
275
+ isa = PBXNativeTarget;
276
+ buildConfigurationList = 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RNBackgroundExample-tvOSTests" */;
277
+ buildPhases = (
278
+ 66D1F50246C105A0EBF2D18E /* [CP] Check Pods Manifest.lock */,
279
+ 2D02E48C1E0B4A5D006451C7 /* Sources */,
280
+ 2D02E48D1E0B4A5D006451C7 /* Frameworks */,
281
+ 2D02E48E1E0B4A5D006451C7 /* Resources */,
282
+ );
283
+ buildRules = (
284
+ );
285
+ dependencies = (
286
+ 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */,
287
+ );
288
+ name = "RNBackgroundExample-tvOSTests";
289
+ productName = "RNBackgroundExample-tvOSTests";
290
+ productReference = 2D02E4901E0B4A5D006451C7 /* RNBackgroundExample-tvOSTests.xctest */;
291
+ productType = "com.apple.product-type.bundle.unit-test";
292
+ };
293
+ /* End PBXNativeTarget section */
294
+
295
+ /* Begin PBXProject section */
296
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
297
+ isa = PBXProject;
298
+ attributes = {
299
+ LastUpgradeCheck = 0940;
300
+ ORGANIZATIONNAME = Facebook;
301
+ TargetAttributes = {
302
+ 00E356ED1AD99517003FC87E = {
303
+ CreatedOnToolsVersion = 6.2;
304
+ TestTargetID = 13B07F861A680F5B00A75B9A;
305
+ };
306
+ 13B07F861A680F5B00A75B9A = {
307
+ LastSwiftMigration = 1160;
308
+ };
309
+ 2D02E47A1E0B4A5D006451C7 = {
310
+ CreatedOnToolsVersion = 8.2.1;
311
+ ProvisioningStyle = Automatic;
312
+ };
313
+ 2D02E48F1E0B4A5D006451C7 = {
314
+ CreatedOnToolsVersion = 8.2.1;
315
+ ProvisioningStyle = Automatic;
316
+ TestTargetID = 2D02E47A1E0B4A5D006451C7;
317
+ };
318
+ };
319
+ };
320
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RNBackgroundExample" */;
321
+ compatibilityVersion = "Xcode 3.2";
322
+ developmentRegion = English;
323
+ hasScannedForEncodings = 0;
324
+ knownRegions = (
325
+ English,
326
+ en,
327
+ Base,
328
+ );
329
+ mainGroup = 83CBB9F61A601CBA00E9B192;
330
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
331
+ projectDirPath = "";
332
+ projectRoot = "";
333
+ targets = (
334
+ 13B07F861A680F5B00A75B9A /* RNBackgroundExample */,
335
+ 00E356ED1AD99517003FC87E /* RNBackgroundExampleTests */,
336
+ 2D02E47A1E0B4A5D006451C7 /* RNBackgroundExample-tvOS */,
337
+ 2D02E48F1E0B4A5D006451C7 /* RNBackgroundExample-tvOSTests */,
338
+ );
339
+ };
340
+ /* End PBXProject section */
341
+
342
+ /* Begin PBXResourcesBuildPhase section */
343
+ 00E356EC1AD99517003FC87E /* Resources */ = {
344
+ isa = PBXResourcesBuildPhase;
345
+ buildActionMask = 2147483647;
346
+ files = (
347
+ );
348
+ runOnlyForDeploymentPostprocessing = 0;
349
+ };
350
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
351
+ isa = PBXResourcesBuildPhase;
352
+ buildActionMask = 2147483647;
353
+ files = (
354
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
355
+ 29F1BD0324F6E00900502923 /* LaunchScreen.storyboard in Resources */,
356
+ );
357
+ runOnlyForDeploymentPostprocessing = 0;
358
+ };
359
+ 2D02E4791E0B4A5D006451C7 /* Resources */ = {
360
+ isa = PBXResourcesBuildPhase;
361
+ buildActionMask = 2147483647;
362
+ files = (
363
+ 2D02E4BD1E0B4A84006451C7 /* Images.xcassets in Resources */,
364
+ 29F1BD0424F6E00900502923 /* LaunchScreen.storyboard in Resources */,
365
+ );
366
+ runOnlyForDeploymentPostprocessing = 0;
367
+ };
368
+ 2D02E48E1E0B4A5D006451C7 /* Resources */ = {
369
+ isa = PBXResourcesBuildPhase;
370
+ buildActionMask = 2147483647;
371
+ files = (
372
+ );
373
+ runOnlyForDeploymentPostprocessing = 0;
374
+ };
375
+ /* End PBXResourcesBuildPhase section */
376
+
377
+ /* Begin PBXShellScriptBuildPhase section */
378
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
379
+ isa = PBXShellScriptBuildPhase;
380
+ buildActionMask = 2147483647;
381
+ files = (
382
+ );
383
+ inputPaths = (
384
+ );
385
+ name = "Bundle React Native code and images";
386
+ outputPaths = (
387
+ );
388
+ runOnlyForDeploymentPostprocessing = 0;
389
+ shellPath = /bin/sh;
390
+ shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n";
391
+ };
392
+ 29F1BD0624F6E35400502923 /* [CP] Copy Pods Resources */ = {
393
+ isa = PBXShellScriptBuildPhase;
394
+ buildActionMask = 2147483647;
395
+ files = (
396
+ );
397
+ inputPaths = (
398
+ "${PODS_ROOT}/Target Support Files/Pods-RNBackgroundExample/Pods-RNBackgroundExample-resources.sh",
399
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
400
+ );
401
+ name = "[CP] Copy Pods Resources";
402
+ outputPaths = (
403
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
404
+ );
405
+ runOnlyForDeploymentPostprocessing = 0;
406
+ shellPath = /bin/sh;
407
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RNBackgroundExample/Pods-RNBackgroundExample-resources.sh\"\n";
408
+ showEnvVarsInLog = 0;
409
+ };
410
+ 2D02E4CB1E0B4B27006451C7 /* Bundle React Native Code And Images */ = {
411
+ isa = PBXShellScriptBuildPhase;
412
+ buildActionMask = 2147483647;
413
+ files = (
414
+ );
415
+ inputPaths = (
416
+ );
417
+ name = "Bundle React Native Code And Images";
418
+ outputPaths = (
419
+ );
420
+ runOnlyForDeploymentPostprocessing = 0;
421
+ shellPath = /bin/sh;
422
+ shellScript = "export NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh";
423
+ };
424
+ 4E2BCC112314DEC167869E11 /* [CP] Check Pods Manifest.lock */ = {
425
+ isa = PBXShellScriptBuildPhase;
426
+ buildActionMask = 2147483647;
427
+ files = (
428
+ );
429
+ inputFileListPaths = (
430
+ );
431
+ inputPaths = (
432
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
433
+ "${PODS_ROOT}/Manifest.lock",
434
+ );
435
+ name = "[CP] Check Pods Manifest.lock";
436
+ outputFileListPaths = (
437
+ );
438
+ outputPaths = (
439
+ "$(DERIVED_FILE_DIR)/Pods-RNBackgroundExample-tvOS-checkManifestLockResult.txt",
440
+ );
441
+ runOnlyForDeploymentPostprocessing = 0;
442
+ shellPath = /bin/sh;
443
+ 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";
444
+ showEnvVarsInLog = 0;
445
+ };
446
+ 66D1F50246C105A0EBF2D18E /* [CP] Check Pods Manifest.lock */ = {
447
+ isa = PBXShellScriptBuildPhase;
448
+ buildActionMask = 2147483647;
449
+ files = (
450
+ );
451
+ inputFileListPaths = (
452
+ );
453
+ inputPaths = (
454
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
455
+ "${PODS_ROOT}/Manifest.lock",
456
+ );
457
+ name = "[CP] Check Pods Manifest.lock";
458
+ outputFileListPaths = (
459
+ );
460
+ outputPaths = (
461
+ "$(DERIVED_FILE_DIR)/Pods-RNBackgroundExample-tvOSTests-checkManifestLockResult.txt",
462
+ );
463
+ runOnlyForDeploymentPostprocessing = 0;
464
+ shellPath = /bin/sh;
465
+ 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";
466
+ showEnvVarsInLog = 0;
467
+ };
468
+ 73F2A01FCACF4CC28AA47165 /* [CP] Check Pods Manifest.lock */ = {
469
+ isa = PBXShellScriptBuildPhase;
470
+ buildActionMask = 2147483647;
471
+ files = (
472
+ );
473
+ inputFileListPaths = (
474
+ );
475
+ inputPaths = (
476
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
477
+ "${PODS_ROOT}/Manifest.lock",
478
+ );
479
+ name = "[CP] Check Pods Manifest.lock";
480
+ outputFileListPaths = (
481
+ );
482
+ outputPaths = (
483
+ "$(DERIVED_FILE_DIR)/Pods-RNBackgroundExample-checkManifestLockResult.txt",
484
+ );
485
+ runOnlyForDeploymentPostprocessing = 0;
486
+ shellPath = /bin/sh;
487
+ 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";
488
+ showEnvVarsInLog = 0;
489
+ };
490
+ 85DE3A1E74F5C4ACD72452B8 /* [CP] Check Pods Manifest.lock */ = {
491
+ isa = PBXShellScriptBuildPhase;
492
+ buildActionMask = 2147483647;
493
+ files = (
494
+ );
495
+ inputFileListPaths = (
496
+ );
497
+ inputPaths = (
498
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
499
+ "${PODS_ROOT}/Manifest.lock",
500
+ );
501
+ name = "[CP] Check Pods Manifest.lock";
502
+ outputFileListPaths = (
503
+ );
504
+ outputPaths = (
505
+ "$(DERIVED_FILE_DIR)/Pods-RNBackgroundExample-RNBackgroundExampleTests-checkManifestLockResult.txt",
506
+ );
507
+ runOnlyForDeploymentPostprocessing = 0;
508
+ shellPath = /bin/sh;
509
+ 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";
510
+ showEnvVarsInLog = 0;
511
+ };
512
+ CFA072526EB78916A3FA7CAE /* [CP] Copy Pods Resources */ = {
513
+ isa = PBXShellScriptBuildPhase;
514
+ buildActionMask = 2147483647;
515
+ files = (
516
+ );
517
+ inputPaths = (
518
+ "${PODS_ROOT}/Target Support Files/Pods-RNBackgroundExample-RNBackgroundExampleTests/Pods-RNBackgroundExample-RNBackgroundExampleTests-resources.sh",
519
+ "${PODS_CONFIGURATION_BUILD_DIR}/React-Core/AccessibilityResources.bundle",
520
+ );
521
+ name = "[CP] Copy Pods Resources";
522
+ outputPaths = (
523
+ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AccessibilityResources.bundle",
524
+ );
525
+ runOnlyForDeploymentPostprocessing = 0;
526
+ shellPath = /bin/sh;
527
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-RNBackgroundExample-RNBackgroundExampleTests/Pods-RNBackgroundExample-RNBackgroundExampleTests-resources.sh\"\n";
528
+ showEnvVarsInLog = 0;
529
+ };
530
+ FD10A7F022414F080027D42C /* Start Packager */ = {
531
+ isa = PBXShellScriptBuildPhase;
532
+ buildActionMask = 2147483647;
533
+ files = (
534
+ );
535
+ inputFileListPaths = (
536
+ );
537
+ inputPaths = (
538
+ );
539
+ name = "Start Packager";
540
+ outputFileListPaths = (
541
+ );
542
+ outputPaths = (
543
+ );
544
+ runOnlyForDeploymentPostprocessing = 0;
545
+ shellPath = /bin/sh;
546
+ shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
547
+ showEnvVarsInLog = 0;
548
+ };
549
+ FD10A7F122414F3F0027D42C /* Start Packager */ = {
550
+ isa = PBXShellScriptBuildPhase;
551
+ buildActionMask = 2147483647;
552
+ files = (
553
+ );
554
+ inputFileListPaths = (
555
+ );
556
+ inputPaths = (
557
+ );
558
+ name = "Start Packager";
559
+ outputFileListPaths = (
560
+ );
561
+ outputPaths = (
562
+ );
563
+ runOnlyForDeploymentPostprocessing = 0;
564
+ shellPath = /bin/sh;
565
+ shellScript = "export RCT_METRO_PORT=\"${RCT_METRO_PORT:=8081}\"\necho \"export RCT_METRO_PORT=${RCT_METRO_PORT}\" > \"${SRCROOT}/../node_modules/react-native/scripts/.packager.env\"\nif [ -z \"${RCT_NO_LAUNCH_PACKAGER+xxx}\" ] ; then\n if nc -w 5 -z localhost ${RCT_METRO_PORT} ; then\n if ! curl -s \"http://localhost:${RCT_METRO_PORT}/status\" | grep -q \"packager-status:running\" ; then\n echo \"Port ${RCT_METRO_PORT} already in use, packager is either not running or not running correctly\"\n exit 2\n fi\n else\n open \"$SRCROOT/../node_modules/react-native/scripts/launchPackager.command\" || echo \"Can't start packager automatically\"\n fi\nfi\n";
566
+ showEnvVarsInLog = 0;
567
+ };
568
+ /* End PBXShellScriptBuildPhase section */
569
+
570
+ /* Begin PBXSourcesBuildPhase section */
571
+ 00E356EA1AD99517003FC87E /* Sources */ = {
572
+ isa = PBXSourcesBuildPhase;
573
+ buildActionMask = 2147483647;
574
+ files = (
575
+ 00E356F31AD99517003FC87E /* RNBackgroundExampleTests.m in Sources */,
576
+ );
577
+ runOnlyForDeploymentPostprocessing = 0;
578
+ };
579
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
580
+ isa = PBXSourcesBuildPhase;
581
+ buildActionMask = 2147483647;
582
+ files = (
583
+ 29535F4924F83FC70097787C /* App.swift in Sources */,
584
+ 13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */,
585
+ 13B07FC11A68108700A75B9A /* main.m in Sources */,
586
+ );
587
+ runOnlyForDeploymentPostprocessing = 0;
588
+ };
589
+ 2D02E4771E0B4A5D006451C7 /* Sources */ = {
590
+ isa = PBXSourcesBuildPhase;
591
+ buildActionMask = 2147483647;
592
+ files = (
593
+ 2D02E4BF1E0B4AB3006451C7 /* main.m in Sources */,
594
+ 2D02E4BC1E0B4A80006451C7 /* AppDelegate.m in Sources */,
595
+ );
596
+ runOnlyForDeploymentPostprocessing = 0;
597
+ };
598
+ 2D02E48C1E0B4A5D006451C7 /* Sources */ = {
599
+ isa = PBXSourcesBuildPhase;
600
+ buildActionMask = 2147483647;
601
+ files = (
602
+ 2DCD954D1E0B4F2C00145EB5 /* RNBackgroundExampleTests.m in Sources */,
603
+ );
604
+ runOnlyForDeploymentPostprocessing = 0;
605
+ };
606
+ /* End PBXSourcesBuildPhase section */
607
+
608
+ /* Begin PBXTargetDependency section */
609
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
610
+ isa = PBXTargetDependency;
611
+ target = 13B07F861A680F5B00A75B9A /* RNBackgroundExample */;
612
+ targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
613
+ };
614
+ 2D02E4921E0B4A5D006451C7 /* PBXTargetDependency */ = {
615
+ isa = PBXTargetDependency;
616
+ target = 2D02E47A1E0B4A5D006451C7 /* RNBackgroundExample-tvOS */;
617
+ targetProxy = 2D02E4911E0B4A5D006451C7 /* PBXContainerItemProxy */;
618
+ };
619
+ /* End PBXTargetDependency section */
620
+
621
+ /* Begin XCBuildConfiguration section */
622
+ 00E356F61AD99517003FC87E /* Debug */ = {
623
+ isa = XCBuildConfiguration;
624
+ baseConfigurationReference = 932B2E1C5F0C483A80708238 /* Pods-RNBackgroundExample-RNBackgroundExampleTests.debug.xcconfig */;
625
+ buildSettings = {
626
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
627
+ BUNDLE_LOADER = "$(TEST_HOST)";
628
+ ENABLE_BITCODE = NO;
629
+ GCC_PREPROCESSOR_DEFINITIONS = (
630
+ "DEBUG=1",
631
+ "$(inherited)",
632
+ );
633
+ INFOPLIST_FILE = RNBackgroundExampleTests/Info.plist;
634
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0;
635
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
636
+ NEW_SETTING = "";
637
+ NEW_SETTING1 = "";
638
+ OTHER_LDFLAGS = (
639
+ "-ObjC",
640
+ "-lc++",
641
+ "$(inherited)",
642
+ );
643
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
644
+ PRODUCT_NAME = "$(TARGET_NAME)";
645
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNBackgroundExample.app/RNBackgroundExample";
646
+ };
647
+ name = Debug;
648
+ };
649
+ 00E356F71AD99517003FC87E /* Release */ = {
650
+ isa = XCBuildConfiguration;
651
+ baseConfigurationReference = 1A2D1F07459D1A0DB2654B7B /* Pods-RNBackgroundExample-RNBackgroundExampleTests.release.xcconfig */;
652
+ buildSettings = {
653
+ ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
654
+ BUNDLE_LOADER = "$(TEST_HOST)";
655
+ COPY_PHASE_STRIP = NO;
656
+ INFOPLIST_FILE = RNBackgroundExampleTests/Info.plist;
657
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0;
658
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
659
+ NEW_SETTING = "";
660
+ NEW_SETTING1 = "";
661
+ OTHER_LDFLAGS = (
662
+ "-ObjC",
663
+ "-lc++",
664
+ "$(inherited)",
665
+ );
666
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
667
+ PRODUCT_NAME = "$(TARGET_NAME)";
668
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNBackgroundExample.app/RNBackgroundExample";
669
+ };
670
+ name = Release;
671
+ };
672
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
673
+ isa = XCBuildConfiguration;
674
+ baseConfigurationReference = 86C2167B968C66F579F0B252 /* Pods-RNBackgroundExample.debug.xcconfig */;
675
+ buildSettings = {
676
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
677
+ CLANG_ENABLE_MODULES = YES;
678
+ CURRENT_PROJECT_VERSION = 1;
679
+ DEAD_CODE_STRIPPING = NO;
680
+ ENABLE_BITCODE = NO;
681
+ INFOPLIST_FILE = RNBackgroundExample/Info.plist;
682
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
683
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
684
+ OTHER_LDFLAGS = (
685
+ "$(inherited)",
686
+ "-ObjC",
687
+ "-lc++",
688
+ );
689
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
690
+ PRODUCT_NAME = RNBackgroundExample;
691
+ SWIFT_OBJC_BRIDGING_HEADER = "RNBackgroundExample-Bridging-Header.h";
692
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
693
+ SWIFT_VERSION = 5.0;
694
+ VERSIONING_SYSTEM = "apple-generic";
695
+ };
696
+ name = Debug;
697
+ };
698
+ 13B07F951A680F5B00A75B9A /* Release */ = {
699
+ isa = XCBuildConfiguration;
700
+ baseConfigurationReference = C7E73CCD13C30F71B0347914 /* Pods-RNBackgroundExample.release.xcconfig */;
701
+ buildSettings = {
702
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
703
+ CLANG_ENABLE_MODULES = YES;
704
+ CURRENT_PROJECT_VERSION = 1;
705
+ INFOPLIST_FILE = RNBackgroundExample/Info.plist;
706
+ IPHONEOS_DEPLOYMENT_TARGET = 10.0;
707
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
708
+ OTHER_LDFLAGS = (
709
+ "$(inherited)",
710
+ "-ObjC",
711
+ "-lc++",
712
+ );
713
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
714
+ PRODUCT_NAME = RNBackgroundExample;
715
+ SWIFT_OBJC_BRIDGING_HEADER = "RNBackgroundExample-Bridging-Header.h";
716
+ SWIFT_VERSION = 5.0;
717
+ VERSIONING_SYSTEM = "apple-generic";
718
+ };
719
+ name = Release;
720
+ };
721
+ 2D02E4971E0B4A5E006451C7 /* Debug */ = {
722
+ isa = XCBuildConfiguration;
723
+ baseConfigurationReference = EE91229EA4D50C4123FD20C0 /* Pods-RNBackgroundExample-tvOS.debug.xcconfig */;
724
+ buildSettings = {
725
+ ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
726
+ ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
727
+ CLANG_ANALYZER_NONNULL = YES;
728
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
729
+ CLANG_WARN_INFINITE_RECURSION = YES;
730
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
731
+ DEBUG_INFORMATION_FORMAT = dwarf;
732
+ ENABLE_BITCODE = NO;
733
+ ENABLE_TESTABILITY = YES;
734
+ GCC_NO_COMMON_BLOCKS = YES;
735
+ INFOPLIST_FILE = "RNBackgroundExample-tvOS/Info.plist";
736
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
737
+ NEW_SETTING = "";
738
+ NEW_SETTING1 = "";
739
+ OTHER_LDFLAGS = (
740
+ "$(inherited)",
741
+ "-ObjC",
742
+ "-lc++",
743
+ );
744
+ PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RNBackgroundExample-tvOS";
745
+ PRODUCT_NAME = "$(TARGET_NAME)";
746
+ SDKROOT = appletvos;
747
+ TARGETED_DEVICE_FAMILY = 3;
748
+ TVOS_DEPLOYMENT_TARGET = 9.2;
749
+ };
750
+ name = Debug;
751
+ };
752
+ 2D02E4981E0B4A5E006451C7 /* Release */ = {
753
+ isa = XCBuildConfiguration;
754
+ baseConfigurationReference = 6B0F341F6828B66308A1C24B /* Pods-RNBackgroundExample-tvOS.release.xcconfig */;
755
+ buildSettings = {
756
+ ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
757
+ ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
758
+ CLANG_ANALYZER_NONNULL = YES;
759
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
760
+ CLANG_WARN_INFINITE_RECURSION = YES;
761
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
762
+ COPY_PHASE_STRIP = NO;
763
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
764
+ GCC_NO_COMMON_BLOCKS = YES;
765
+ INFOPLIST_FILE = "RNBackgroundExample-tvOS/Info.plist";
766
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
767
+ NEW_SETTING = "";
768
+ NEW_SETTING1 = "";
769
+ OTHER_LDFLAGS = (
770
+ "$(inherited)",
771
+ "-ObjC",
772
+ "-lc++",
773
+ );
774
+ PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RNBackgroundExample-tvOS";
775
+ PRODUCT_NAME = "$(TARGET_NAME)";
776
+ SDKROOT = appletvos;
777
+ TARGETED_DEVICE_FAMILY = 3;
778
+ TVOS_DEPLOYMENT_TARGET = 9.2;
779
+ };
780
+ name = Release;
781
+ };
782
+ 2D02E4991E0B4A5E006451C7 /* Debug */ = {
783
+ isa = XCBuildConfiguration;
784
+ baseConfigurationReference = 7CFA0000B7083D59A84627BE /* Pods-RNBackgroundExample-tvOSTests.debug.xcconfig */;
785
+ buildSettings = {
786
+ BUNDLE_LOADER = "$(TEST_HOST)";
787
+ CLANG_ANALYZER_NONNULL = YES;
788
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
789
+ CLANG_WARN_INFINITE_RECURSION = YES;
790
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
791
+ DEBUG_INFORMATION_FORMAT = dwarf;
792
+ ENABLE_BITCODE = NO;
793
+ ENABLE_TESTABILITY = YES;
794
+ GCC_NO_COMMON_BLOCKS = YES;
795
+ INFOPLIST_FILE = "RNBackgroundExample-tvOSTests/Info.plist";
796
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
797
+ NEW_SETTING = "";
798
+ NEW_SETTING1 = "";
799
+ OTHER_LDFLAGS = (
800
+ "$(inherited)",
801
+ "-ObjC",
802
+ "-lc++",
803
+ );
804
+ PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RNBackgroundExample-tvOSTests";
805
+ PRODUCT_NAME = "$(TARGET_NAME)";
806
+ SDKROOT = appletvos;
807
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNBackgroundExample-tvOS.app/RNBackgroundExample-tvOS";
808
+ TVOS_DEPLOYMENT_TARGET = 10.1;
809
+ };
810
+ name = Debug;
811
+ };
812
+ 2D02E49A1E0B4A5E006451C7 /* Release */ = {
813
+ isa = XCBuildConfiguration;
814
+ baseConfigurationReference = A8EB4EA2AA6560A43B0F8D66 /* Pods-RNBackgroundExample-tvOSTests.release.xcconfig */;
815
+ buildSettings = {
816
+ BUNDLE_LOADER = "$(TEST_HOST)";
817
+ CLANG_ANALYZER_NONNULL = YES;
818
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
819
+ CLANG_WARN_INFINITE_RECURSION = YES;
820
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
821
+ COPY_PHASE_STRIP = NO;
822
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
823
+ GCC_NO_COMMON_BLOCKS = YES;
824
+ INFOPLIST_FILE = "RNBackgroundExample-tvOSTests/Info.plist";
825
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
826
+ NEW_SETTING = "";
827
+ NEW_SETTING1 = "";
828
+ OTHER_LDFLAGS = (
829
+ "$(inherited)",
830
+ "-ObjC",
831
+ "-lc++",
832
+ );
833
+ PRODUCT_BUNDLE_IDENTIFIER = "com.facebook.REACT.RNBackgroundExample-tvOSTests";
834
+ PRODUCT_NAME = "$(TARGET_NAME)";
835
+ SDKROOT = appletvos;
836
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/RNBackgroundExample-tvOS.app/RNBackgroundExample-tvOS";
837
+ TVOS_DEPLOYMENT_TARGET = 10.1;
838
+ };
839
+ name = Release;
840
+ };
841
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
842
+ isa = XCBuildConfiguration;
843
+ buildSettings = {
844
+ ALWAYS_SEARCH_USER_PATHS = NO;
845
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
846
+ CLANG_CXX_LIBRARY = "libc++";
847
+ CLANG_ENABLE_MODULES = YES;
848
+ CLANG_ENABLE_OBJC_ARC = YES;
849
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
850
+ CLANG_WARN_BOOL_CONVERSION = YES;
851
+ CLANG_WARN_COMMA = YES;
852
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
853
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
854
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
855
+ CLANG_WARN_EMPTY_BODY = YES;
856
+ CLANG_WARN_ENUM_CONVERSION = YES;
857
+ CLANG_WARN_INFINITE_RECURSION = YES;
858
+ CLANG_WARN_INT_CONVERSION = YES;
859
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
860
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
861
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
862
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
863
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
864
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
865
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
866
+ CLANG_WARN_UNREACHABLE_CODE = YES;
867
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
868
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
869
+ COPY_PHASE_STRIP = NO;
870
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
871
+ ENABLE_TESTABILITY = YES;
872
+ GCC_C_LANGUAGE_STANDARD = gnu99;
873
+ GCC_DYNAMIC_NO_PIC = NO;
874
+ GCC_NO_COMMON_BLOCKS = YES;
875
+ GCC_OPTIMIZATION_LEVEL = 0;
876
+ GCC_PREPROCESSOR_DEFINITIONS = (
877
+ "DEBUG=1",
878
+ "$(inherited)",
879
+ );
880
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
881
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
882
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
883
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
884
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
885
+ GCC_WARN_UNUSED_FUNCTION = YES;
886
+ GCC_WARN_UNUSED_VARIABLE = YES;
887
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0;
888
+ MTL_ENABLE_DEBUG_INFO = YES;
889
+ ONLY_ACTIVE_ARCH = YES;
890
+ SDKROOT = iphoneos;
891
+ };
892
+ name = Debug;
893
+ };
894
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
895
+ isa = XCBuildConfiguration;
896
+ buildSettings = {
897
+ ALWAYS_SEARCH_USER_PATHS = NO;
898
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
899
+ CLANG_CXX_LIBRARY = "libc++";
900
+ CLANG_ENABLE_MODULES = YES;
901
+ CLANG_ENABLE_OBJC_ARC = YES;
902
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
903
+ CLANG_WARN_BOOL_CONVERSION = YES;
904
+ CLANG_WARN_COMMA = YES;
905
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
906
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
907
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
908
+ CLANG_WARN_EMPTY_BODY = YES;
909
+ CLANG_WARN_ENUM_CONVERSION = YES;
910
+ CLANG_WARN_INFINITE_RECURSION = YES;
911
+ CLANG_WARN_INT_CONVERSION = YES;
912
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
913
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
914
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
915
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
916
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
917
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
918
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
919
+ CLANG_WARN_UNREACHABLE_CODE = YES;
920
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
921
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
922
+ COPY_PHASE_STRIP = YES;
923
+ ENABLE_NS_ASSERTIONS = NO;
924
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
925
+ GCC_C_LANGUAGE_STANDARD = gnu99;
926
+ GCC_NO_COMMON_BLOCKS = YES;
927
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
928
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
929
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
930
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
931
+ GCC_WARN_UNUSED_FUNCTION = YES;
932
+ GCC_WARN_UNUSED_VARIABLE = YES;
933
+ IPHONEOS_DEPLOYMENT_TARGET = 9.0;
934
+ MTL_ENABLE_DEBUG_INFO = NO;
935
+ SDKROOT = iphoneos;
936
+ VALIDATE_PRODUCT = YES;
937
+ };
938
+ name = Release;
939
+ };
940
+ /* End XCBuildConfiguration section */
941
+
942
+ /* Begin XCConfigurationList section */
943
+ 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "RNBackgroundExampleTests" */ = {
944
+ isa = XCConfigurationList;
945
+ buildConfigurations = (
946
+ 00E356F61AD99517003FC87E /* Debug */,
947
+ 00E356F71AD99517003FC87E /* Release */,
948
+ );
949
+ defaultConfigurationIsVisible = 0;
950
+ defaultConfigurationName = Release;
951
+ };
952
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "RNBackgroundExample" */ = {
953
+ isa = XCConfigurationList;
954
+ buildConfigurations = (
955
+ 13B07F941A680F5B00A75B9A /* Debug */,
956
+ 13B07F951A680F5B00A75B9A /* Release */,
957
+ );
958
+ defaultConfigurationIsVisible = 0;
959
+ defaultConfigurationName = Release;
960
+ };
961
+ 2D02E4BA1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RNBackgroundExample-tvOS" */ = {
962
+ isa = XCConfigurationList;
963
+ buildConfigurations = (
964
+ 2D02E4971E0B4A5E006451C7 /* Debug */,
965
+ 2D02E4981E0B4A5E006451C7 /* Release */,
966
+ );
967
+ defaultConfigurationIsVisible = 0;
968
+ defaultConfigurationName = Release;
969
+ };
970
+ 2D02E4BB1E0B4A5E006451C7 /* Build configuration list for PBXNativeTarget "RNBackgroundExample-tvOSTests" */ = {
971
+ isa = XCConfigurationList;
972
+ buildConfigurations = (
973
+ 2D02E4991E0B4A5E006451C7 /* Debug */,
974
+ 2D02E49A1E0B4A5E006451C7 /* Release */,
975
+ );
976
+ defaultConfigurationIsVisible = 0;
977
+ defaultConfigurationName = Release;
978
+ };
979
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "RNBackgroundExample" */ = {
980
+ isa = XCConfigurationList;
981
+ buildConfigurations = (
982
+ 83CBBA201A601CBA00E9B192 /* Debug */,
983
+ 83CBBA211A601CBA00E9B192 /* Release */,
984
+ );
985
+ defaultConfigurationIsVisible = 0;
986
+ defaultConfigurationName = Release;
987
+ };
988
+ /* End XCConfigurationList section */
989
+ };
990
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
991
+ }