@moustafahelmi/react-native-quran-app 1.4.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 (131) hide show
  1. package/.bundle/config +2 -0
  2. package/.eslintrc.js +4 -0
  3. package/.prettierrc.js +7 -0
  4. package/.watchmanconfig +1 -0
  5. package/App.tsx +23 -0
  6. package/Gemfile +9 -0
  7. package/Gemfile.lock +105 -0
  8. package/MIGRATION.md +163 -0
  9. package/README.md +210 -0
  10. package/ReactotronConfig.js +7 -0
  11. package/__tests__/App.test.tsx +17 -0
  12. package/android/app/build.gradle +118 -0
  13. package/android/app/debug.keystore +0 -0
  14. package/android/app/proguard-rules.pro +10 -0
  15. package/android/app/src/debug/AndroidManifest.xml +9 -0
  16. package/android/app/src/main/AndroidManifest.xml +25 -0
  17. package/android/app/src/main/assets/fonts/Cairo.ttf +0 -0
  18. package/android/app/src/main/assets/fonts/QCF_BSML.ttf +0 -0
  19. package/android/app/src/main/assets/fonts/QCF_P001.ttf +0 -0
  20. package/android/app/src/main/java/com/quranapp/MainActivity.kt +22 -0
  21. package/android/app/src/main/java/com/quranapp/MainApplication.kt +43 -0
  22. package/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  23. package/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  24. package/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  25. package/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  26. package/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  27. package/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  28. package/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  29. package/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  30. package/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  31. package/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  32. package/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  33. package/android/app/src/main/res/values/strings.xml +3 -0
  34. package/android/app/src/main/res/values/styles.xml +9 -0
  35. package/android/build.gradle +21 -0
  36. package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  37. package/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  38. package/android/gradle.properties +41 -0
  39. package/android/gradlew +249 -0
  40. package/android/gradlew.bat +92 -0
  41. package/android/link-assets-manifest.json +17 -0
  42. package/android/settings.gradle +4 -0
  43. package/app.json +4 -0
  44. package/babel.config.js +3 -0
  45. package/index.js +11 -0
  46. package/ios/.xcode.env +11 -0
  47. package/ios/Podfile +40 -0
  48. package/ios/Podfile.lock +1460 -0
  49. package/ios/QuranApp/AppDelegate.h +6 -0
  50. package/ios/QuranApp/AppDelegate.mm +31 -0
  51. package/ios/QuranApp/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  52. package/ios/QuranApp/Images.xcassets/Contents.json +6 -0
  53. package/ios/QuranApp/Info.plist +57 -0
  54. package/ios/QuranApp/LaunchScreen.storyboard +47 -0
  55. package/ios/QuranApp/PrivacyInfo.xcprivacy +38 -0
  56. package/ios/QuranApp/main.m +10 -0
  57. package/ios/QuranApp.xcodeproj/project.pbxproj +729 -0
  58. package/ios/QuranApp.xcodeproj/xcshareddata/xcschemes/QuranApp.xcscheme +88 -0
  59. package/ios/QuranApp.xcworkspace/contents.xcworkspacedata +10 -0
  60. package/ios/QuranAppTests/Info.plist +24 -0
  61. package/ios/QuranAppTests/QuranAppTests.m +66 -0
  62. package/ios/link-assets-manifest.json +17 -0
  63. package/jest.config.js +3 -0
  64. package/metro.config.js +11 -0
  65. package/package.json +54 -0
  66. package/react-native.config.js +7 -0
  67. package/screenshots/1.png +0 -0
  68. package/screenshots/2.png +0 -0
  69. package/screenshots/3.png +0 -0
  70. package/screenshots/4.png +0 -0
  71. package/screenshots/5.png +0 -0
  72. package/src/assets/fonts/Cairo.ttf +0 -0
  73. package/src/assets/fonts/QCF_BSML.ttf +0 -0
  74. package/src/assets/fonts/QCF_P001.ttf +0 -0
  75. package/src/assets/images/bookmark.png +0 -0
  76. package/src/assets/images/close.png +0 -0
  77. package/src/assets/images/copy.png +0 -0
  78. package/src/assets/images/down-chevron.png +0 -0
  79. package/src/assets/images/mushafFrame.png +0 -0
  80. package/src/assets/images/pause.png +0 -0
  81. package/src/assets/images/play-button.png +0 -0
  82. package/src/assets/images/play.svg +16 -0
  83. package/src/assets/images/playNext.png +0 -0
  84. package/src/assets/images/surahNameFrame.png +0 -0
  85. package/src/common/chapters.ts +1346 -0
  86. package/src/common/constants.ts +27 -0
  87. package/src/common/images.ts +13 -0
  88. package/src/common/index.ts +8 -0
  89. package/src/common/juzs.ts +411 -0
  90. package/src/common/priorityPages.ts +46 -0
  91. package/src/common/themes.ts +7 -0
  92. package/src/components/index.ts +3 -0
  93. package/src/components/lists/index.ts +3 -0
  94. package/src/components/lists/pageVersesList.tsx +220 -0
  95. package/src/components/lists/verseLinesWordsList.tsx +90 -0
  96. package/src/components/modals/index.ts +3 -0
  97. package/src/components/modals/optionsModal.tsx +126 -0
  98. package/src/components/modals/recitersModal.tsx +118 -0
  99. package/src/components/sections/audioPlayer.tsx +185 -0
  100. package/src/components/sections/audioPlayerControls.tsx +100 -0
  101. package/src/components/sections/index.ts +4 -0
  102. package/src/components/sections/loader.tsx +33 -0
  103. package/src/helpers/index.ts +1 -0
  104. package/src/helpers/quranHelpers.tsx +17 -0
  105. package/src/hooks/apis/index.ts +10 -0
  106. package/src/hooks/apis/useGetChapterAudio.ts +111 -0
  107. package/src/hooks/apis/useGetChapterByPage.ts +166 -0
  108. package/src/hooks/apis/useGetChapterLookup.ts +31 -0
  109. package/src/hooks/apis/useGetReciters.ts +44 -0
  110. package/src/hooks/controllers/index.ts +25 -0
  111. package/src/hooks/controllers/useAudioPlayerController.tsx +63 -0
  112. package/src/hooks/controllers/useOptionsModalController.ts +99 -0
  113. package/src/hooks/controllers/usePageFontFileController.ts +255 -0
  114. package/src/hooks/controllers/usePageLineController.ts +108 -0
  115. package/src/hooks/helpers/index.ts +6 -0
  116. package/src/hooks/helpers/useQuranFontPreloader.ts +225 -0
  117. package/src/hooks/index.ts +3 -0
  118. package/src/index.ts +5 -0
  119. package/src/layouts/bismillahText.tsx +18 -0
  120. package/src/layouts/index.ts +4 -0
  121. package/src/layouts/quranChapterHeader.tsx +49 -0
  122. package/src/layouts/quranPageLayout.tsx +178 -0
  123. package/src/types/global.d.ts +7 -0
  124. package/src/types/index.ts +212 -0
  125. package/src/utils/axiosInstance.ts +7 -0
  126. package/src/utils/fileHandlers.ts +96 -0
  127. package/src/utils/handleBeforeAndAfterCurrentVerse.ts +41 -0
  128. package/src/utils/index.ts +6 -0
  129. package/src/utils/matrics.ts +37 -0
  130. package/tsconfig.json +3 -0
  131. package/videos/1.gif +0 -0
@@ -0,0 +1,729 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 54;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 00E356F31AD99517003FC87E /* QuranAppTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* QuranAppTests.m */; };
11
+ 0C80B921A6F3F58F76C31292 /* libPods-QuranApp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-QuranApp.a */; };
12
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
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
+ 61678751EF8946BDAF04B00B /* QCF_P001.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F4C2E2E6078F42EE9223A46C /* QCF_P001.ttf */; };
16
+ 630ACDC2D34340959A060709 /* QCF_BSML.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5F7CF40012A447B2815EE2A5 /* QCF_BSML.ttf */; };
17
+ 7699B88040F8A987B510C191 /* libPods-QuranApp-QuranAppTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-QuranApp-QuranAppTests.a */; };
18
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
19
+ FB6F81D62C2541C093A276CB /* Cairo.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 867D0058DC5340E3B4D525ED /* Cairo.ttf */; };
20
+ /* End PBXBuildFile section */
21
+
22
+ /* Begin PBXContainerItemProxy section */
23
+ 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = {
24
+ isa = PBXContainerItemProxy;
25
+ containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */;
26
+ proxyType = 1;
27
+ remoteGlobalIDString = 13B07F861A680F5B00A75B9A;
28
+ remoteInfo = QuranApp;
29
+ };
30
+ /* End PBXContainerItemProxy section */
31
+
32
+ /* Begin PBXFileReference section */
33
+ 00E356EE1AD99517003FC87E /* QuranAppTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = QuranAppTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
34
+ 00E356F11AD99517003FC87E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
35
+ 00E356F21AD99517003FC87E /* QuranAppTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = QuranAppTests.m; sourceTree = "<group>"; };
36
+ 13B07F961A680F5B00A75B9A /* QuranApp.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = QuranApp.app; sourceTree = BUILT_PRODUCTS_DIR; };
37
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = QuranApp/AppDelegate.h; sourceTree = "<group>"; };
38
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = AppDelegate.mm; path = QuranApp/AppDelegate.mm; sourceTree = "<group>"; };
39
+ 13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = QuranApp/Images.xcassets; sourceTree = "<group>"; };
40
+ 13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = QuranApp/Info.plist; sourceTree = "<group>"; };
41
+ 13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = QuranApp/main.m; sourceTree = "<group>"; };
42
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = QuranApp/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
43
+ 19F6CBCC0A4E27FBF8BF4A61 /* libPods-QuranApp-QuranAppTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-QuranApp-QuranAppTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
44
+ 3B4392A12AC88292D35C810B /* Pods-QuranApp.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-QuranApp.debug.xcconfig"; path = "Target Support Files/Pods-QuranApp/Pods-QuranApp.debug.xcconfig"; sourceTree = "<group>"; };
45
+ 5709B34CF0A7D63546082F79 /* Pods-QuranApp.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-QuranApp.release.xcconfig"; path = "Target Support Files/Pods-QuranApp/Pods-QuranApp.release.xcconfig"; sourceTree = "<group>"; };
46
+ 5B7EB9410499542E8C5724F5 /* Pods-QuranApp-QuranAppTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-QuranApp-QuranAppTests.debug.xcconfig"; path = "Target Support Files/Pods-QuranApp-QuranAppTests/Pods-QuranApp-QuranAppTests.debug.xcconfig"; sourceTree = "<group>"; };
47
+ 5DCACB8F33CDC322A6C60F78 /* libPods-QuranApp.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-QuranApp.a"; sourceTree = BUILT_PRODUCTS_DIR; };
48
+ 5F7CF40012A447B2815EE2A5 /* QCF_BSML.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = QCF_BSML.ttf; path = ../src/assets/fonts/QCF_BSML.ttf; sourceTree = "<group>"; };
49
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = QuranApp/LaunchScreen.storyboard; sourceTree = "<group>"; };
50
+ 867D0058DC5340E3B4D525ED /* Cairo.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = Cairo.ttf; path = ../src/assets/fonts/Cairo.ttf; sourceTree = "<group>"; };
51
+ 89C6BE57DB24E9ADA2F236DE /* Pods-QuranApp-QuranAppTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-QuranApp-QuranAppTests.release.xcconfig"; path = "Target Support Files/Pods-QuranApp-QuranAppTests/Pods-QuranApp-QuranAppTests.release.xcconfig"; sourceTree = "<group>"; };
52
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
53
+ F4C2E2E6078F42EE9223A46C /* QCF_P001.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = undefined; includeInIndex = 0; lastKnownFileType = unknown; name = QCF_P001.ttf; path = ../src/assets/fonts/QCF_P001.ttf; sourceTree = "<group>"; };
54
+ /* End PBXFileReference section */
55
+
56
+ /* Begin PBXFrameworksBuildPhase section */
57
+ 00E356EB1AD99517003FC87E /* Frameworks */ = {
58
+ isa = PBXFrameworksBuildPhase;
59
+ buildActionMask = 2147483647;
60
+ files = (
61
+ 7699B88040F8A987B510C191 /* libPods-QuranApp-QuranAppTests.a in Frameworks */,
62
+ );
63
+ runOnlyForDeploymentPostprocessing = 0;
64
+ };
65
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
66
+ isa = PBXFrameworksBuildPhase;
67
+ buildActionMask = 2147483647;
68
+ files = (
69
+ 0C80B921A6F3F58F76C31292 /* libPods-QuranApp.a in Frameworks */,
70
+ );
71
+ runOnlyForDeploymentPostprocessing = 0;
72
+ };
73
+ /* End PBXFrameworksBuildPhase section */
74
+
75
+ /* Begin PBXGroup section */
76
+ 00E356EF1AD99517003FC87E /* QuranAppTests */ = {
77
+ isa = PBXGroup;
78
+ children = (
79
+ 00E356F21AD99517003FC87E /* QuranAppTests.m */,
80
+ 00E356F01AD99517003FC87E /* Supporting Files */,
81
+ );
82
+ path = QuranAppTests;
83
+ sourceTree = "<group>";
84
+ };
85
+ 00E356F01AD99517003FC87E /* Supporting Files */ = {
86
+ isa = PBXGroup;
87
+ children = (
88
+ 00E356F11AD99517003FC87E /* Info.plist */,
89
+ );
90
+ name = "Supporting Files";
91
+ sourceTree = "<group>";
92
+ };
93
+ 13B07FAE1A68108700A75B9A /* QuranApp */ = {
94
+ isa = PBXGroup;
95
+ children = (
96
+ 13B07FAF1A68108700A75B9A /* AppDelegate.h */,
97
+ 13B07FB01A68108700A75B9A /* AppDelegate.mm */,
98
+ 13B07FB51A68108700A75B9A /* Images.xcassets */,
99
+ 13B07FB61A68108700A75B9A /* Info.plist */,
100
+ 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
101
+ 13B07FB71A68108700A75B9A /* main.m */,
102
+ 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
103
+ );
104
+ name = QuranApp;
105
+ sourceTree = "<group>";
106
+ };
107
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
108
+ isa = PBXGroup;
109
+ children = (
110
+ ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
111
+ 5DCACB8F33CDC322A6C60F78 /* libPods-QuranApp.a */,
112
+ 19F6CBCC0A4E27FBF8BF4A61 /* libPods-QuranApp-QuranAppTests.a */,
113
+ );
114
+ name = Frameworks;
115
+ sourceTree = "<group>";
116
+ };
117
+ 467BAC5EA30B44349C02639E /* Resources */ = {
118
+ isa = PBXGroup;
119
+ children = (
120
+ 5F7CF40012A447B2815EE2A5 /* QCF_BSML.ttf */,
121
+ F4C2E2E6078F42EE9223A46C /* QCF_P001.ttf */,
122
+ 867D0058DC5340E3B4D525ED /* Cairo.ttf */,
123
+ );
124
+ name = Resources;
125
+ path = "";
126
+ sourceTree = "<group>";
127
+ };
128
+ 832341AE1AAA6A7D00B99B32 /* Libraries */ = {
129
+ isa = PBXGroup;
130
+ children = (
131
+ );
132
+ name = Libraries;
133
+ sourceTree = "<group>";
134
+ };
135
+ 83CBB9F61A601CBA00E9B192 = {
136
+ isa = PBXGroup;
137
+ children = (
138
+ 13B07FAE1A68108700A75B9A /* QuranApp */,
139
+ 832341AE1AAA6A7D00B99B32 /* Libraries */,
140
+ 00E356EF1AD99517003FC87E /* QuranAppTests */,
141
+ 83CBBA001A601CBA00E9B192 /* Products */,
142
+ 2D16E6871FA4F8E400B85C8A /* Frameworks */,
143
+ BBD78D7AC51CEA395F1C20DB /* Pods */,
144
+ 467BAC5EA30B44349C02639E /* Resources */,
145
+ );
146
+ indentWidth = 2;
147
+ sourceTree = "<group>";
148
+ tabWidth = 2;
149
+ usesTabs = 0;
150
+ };
151
+ 83CBBA001A601CBA00E9B192 /* Products */ = {
152
+ isa = PBXGroup;
153
+ children = (
154
+ 13B07F961A680F5B00A75B9A /* QuranApp.app */,
155
+ 00E356EE1AD99517003FC87E /* QuranAppTests.xctest */,
156
+ );
157
+ name = Products;
158
+ sourceTree = "<group>";
159
+ };
160
+ BBD78D7AC51CEA395F1C20DB /* Pods */ = {
161
+ isa = PBXGroup;
162
+ children = (
163
+ 3B4392A12AC88292D35C810B /* Pods-QuranApp.debug.xcconfig */,
164
+ 5709B34CF0A7D63546082F79 /* Pods-QuranApp.release.xcconfig */,
165
+ 5B7EB9410499542E8C5724F5 /* Pods-QuranApp-QuranAppTests.debug.xcconfig */,
166
+ 89C6BE57DB24E9ADA2F236DE /* Pods-QuranApp-QuranAppTests.release.xcconfig */,
167
+ );
168
+ path = Pods;
169
+ sourceTree = "<group>";
170
+ };
171
+ /* End PBXGroup section */
172
+
173
+ /* Begin PBXNativeTarget section */
174
+ 00E356ED1AD99517003FC87E /* QuranAppTests */ = {
175
+ isa = PBXNativeTarget;
176
+ buildConfigurationList = 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "QuranAppTests" */;
177
+ buildPhases = (
178
+ A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */,
179
+ 00E356EA1AD99517003FC87E /* Sources */,
180
+ 00E356EB1AD99517003FC87E /* Frameworks */,
181
+ 00E356EC1AD99517003FC87E /* Resources */,
182
+ C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */,
183
+ F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */,
184
+ );
185
+ buildRules = (
186
+ );
187
+ dependencies = (
188
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */,
189
+ );
190
+ name = QuranAppTests;
191
+ productName = QuranAppTests;
192
+ productReference = 00E356EE1AD99517003FC87E /* QuranAppTests.xctest */;
193
+ productType = "com.apple.product-type.bundle.unit-test";
194
+ };
195
+ 13B07F861A680F5B00A75B9A /* QuranApp */ = {
196
+ isa = PBXNativeTarget;
197
+ buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "QuranApp" */;
198
+ buildPhases = (
199
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
200
+ 13B07F871A680F5B00A75B9A /* Sources */,
201
+ 13B07F8C1A680F5B00A75B9A /* Frameworks */,
202
+ 13B07F8E1A680F5B00A75B9A /* Resources */,
203
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
204
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
205
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
206
+ );
207
+ buildRules = (
208
+ );
209
+ dependencies = (
210
+ );
211
+ name = QuranApp;
212
+ productName = QuranApp;
213
+ productReference = 13B07F961A680F5B00A75B9A /* QuranApp.app */;
214
+ productType = "com.apple.product-type.application";
215
+ };
216
+ /* End PBXNativeTarget section */
217
+
218
+ /* Begin PBXProject section */
219
+ 83CBB9F71A601CBA00E9B192 /* Project object */ = {
220
+ isa = PBXProject;
221
+ attributes = {
222
+ LastUpgradeCheck = 1210;
223
+ TargetAttributes = {
224
+ 00E356ED1AD99517003FC87E = {
225
+ CreatedOnToolsVersion = 6.2;
226
+ TestTargetID = 13B07F861A680F5B00A75B9A;
227
+ };
228
+ 13B07F861A680F5B00A75B9A = {
229
+ LastSwiftMigration = 1120;
230
+ };
231
+ };
232
+ };
233
+ buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "QuranApp" */;
234
+ compatibilityVersion = "Xcode 12.0";
235
+ developmentRegion = en;
236
+ hasScannedForEncodings = 0;
237
+ knownRegions = (
238
+ en,
239
+ Base,
240
+ );
241
+ mainGroup = 83CBB9F61A601CBA00E9B192;
242
+ productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
243
+ projectDirPath = "";
244
+ projectRoot = "";
245
+ targets = (
246
+ 13B07F861A680F5B00A75B9A /* QuranApp */,
247
+ 00E356ED1AD99517003FC87E /* QuranAppTests */,
248
+ );
249
+ };
250
+ /* End PBXProject section */
251
+
252
+ /* Begin PBXResourcesBuildPhase section */
253
+ 00E356EC1AD99517003FC87E /* Resources */ = {
254
+ isa = PBXResourcesBuildPhase;
255
+ buildActionMask = 2147483647;
256
+ files = (
257
+ );
258
+ runOnlyForDeploymentPostprocessing = 0;
259
+ };
260
+ 13B07F8E1A680F5B00A75B9A /* Resources */ = {
261
+ isa = PBXResourcesBuildPhase;
262
+ buildActionMask = 2147483647;
263
+ files = (
264
+ 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
265
+ 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
266
+ 630ACDC2D34340959A060709 /* QCF_BSML.ttf in Resources */,
267
+ 61678751EF8946BDAF04B00B /* QCF_P001.ttf in Resources */,
268
+ FB6F81D62C2541C093A276CB /* Cairo.ttf in Resources */,
269
+ );
270
+ runOnlyForDeploymentPostprocessing = 0;
271
+ };
272
+ /* End PBXResourcesBuildPhase section */
273
+
274
+ /* Begin PBXShellScriptBuildPhase section */
275
+ 00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
276
+ isa = PBXShellScriptBuildPhase;
277
+ buildActionMask = 2147483647;
278
+ files = (
279
+ );
280
+ inputPaths = (
281
+ "$(SRCROOT)/.xcode.env.local",
282
+ "$(SRCROOT)/.xcode.env",
283
+ );
284
+ name = "Bundle React Native code and images";
285
+ outputPaths = (
286
+ );
287
+ runOnlyForDeploymentPostprocessing = 0;
288
+ shellPath = /bin/sh;
289
+ shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
290
+ };
291
+ 00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
292
+ isa = PBXShellScriptBuildPhase;
293
+ buildActionMask = 2147483647;
294
+ files = (
295
+ );
296
+ inputFileListPaths = (
297
+ "${PODS_ROOT}/Target Support Files/Pods-QuranApp/Pods-QuranApp-frameworks-${CONFIGURATION}-input-files.xcfilelist",
298
+ );
299
+ name = "[CP] Embed Pods Frameworks";
300
+ outputFileListPaths = (
301
+ "${PODS_ROOT}/Target Support Files/Pods-QuranApp/Pods-QuranApp-frameworks-${CONFIGURATION}-output-files.xcfilelist",
302
+ );
303
+ runOnlyForDeploymentPostprocessing = 0;
304
+ shellPath = /bin/sh;
305
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-QuranApp/Pods-QuranApp-frameworks.sh\"\n";
306
+ showEnvVarsInLog = 0;
307
+ };
308
+ A55EABD7B0C7F3A422A6CC61 /* [CP] Check Pods Manifest.lock */ = {
309
+ isa = PBXShellScriptBuildPhase;
310
+ buildActionMask = 2147483647;
311
+ files = (
312
+ );
313
+ inputFileListPaths = (
314
+ );
315
+ inputPaths = (
316
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
317
+ "${PODS_ROOT}/Manifest.lock",
318
+ );
319
+ name = "[CP] Check Pods Manifest.lock";
320
+ outputFileListPaths = (
321
+ );
322
+ outputPaths = (
323
+ "$(DERIVED_FILE_DIR)/Pods-QuranApp-QuranAppTests-checkManifestLockResult.txt",
324
+ );
325
+ runOnlyForDeploymentPostprocessing = 0;
326
+ shellPath = /bin/sh;
327
+ 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";
328
+ showEnvVarsInLog = 0;
329
+ };
330
+ C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
331
+ isa = PBXShellScriptBuildPhase;
332
+ buildActionMask = 2147483647;
333
+ files = (
334
+ );
335
+ inputFileListPaths = (
336
+ );
337
+ inputPaths = (
338
+ "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
339
+ "${PODS_ROOT}/Manifest.lock",
340
+ );
341
+ name = "[CP] Check Pods Manifest.lock";
342
+ outputFileListPaths = (
343
+ );
344
+ outputPaths = (
345
+ "$(DERIVED_FILE_DIR)/Pods-QuranApp-checkManifestLockResult.txt",
346
+ );
347
+ runOnlyForDeploymentPostprocessing = 0;
348
+ shellPath = /bin/sh;
349
+ 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";
350
+ showEnvVarsInLog = 0;
351
+ };
352
+ C59DA0FBD6956966B86A3779 /* [CP] Embed Pods Frameworks */ = {
353
+ isa = PBXShellScriptBuildPhase;
354
+ buildActionMask = 2147483647;
355
+ files = (
356
+ );
357
+ inputFileListPaths = (
358
+ "${PODS_ROOT}/Target Support Files/Pods-QuranApp-QuranAppTests/Pods-QuranApp-QuranAppTests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
359
+ );
360
+ name = "[CP] Embed Pods Frameworks";
361
+ outputFileListPaths = (
362
+ "${PODS_ROOT}/Target Support Files/Pods-QuranApp-QuranAppTests/Pods-QuranApp-QuranAppTests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
363
+ );
364
+ runOnlyForDeploymentPostprocessing = 0;
365
+ shellPath = /bin/sh;
366
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-QuranApp-QuranAppTests/Pods-QuranApp-QuranAppTests-frameworks.sh\"\n";
367
+ showEnvVarsInLog = 0;
368
+ };
369
+ E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
370
+ isa = PBXShellScriptBuildPhase;
371
+ buildActionMask = 2147483647;
372
+ files = (
373
+ );
374
+ inputFileListPaths = (
375
+ "${PODS_ROOT}/Target Support Files/Pods-QuranApp/Pods-QuranApp-resources-${CONFIGURATION}-input-files.xcfilelist",
376
+ );
377
+ name = "[CP] Copy Pods Resources";
378
+ outputFileListPaths = (
379
+ "${PODS_ROOT}/Target Support Files/Pods-QuranApp/Pods-QuranApp-resources-${CONFIGURATION}-output-files.xcfilelist",
380
+ );
381
+ runOnlyForDeploymentPostprocessing = 0;
382
+ shellPath = /bin/sh;
383
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-QuranApp/Pods-QuranApp-resources.sh\"\n";
384
+ showEnvVarsInLog = 0;
385
+ };
386
+ F6A41C54EA430FDDC6A6ED99 /* [CP] Copy Pods Resources */ = {
387
+ isa = PBXShellScriptBuildPhase;
388
+ buildActionMask = 2147483647;
389
+ files = (
390
+ );
391
+ inputFileListPaths = (
392
+ "${PODS_ROOT}/Target Support Files/Pods-QuranApp-QuranAppTests/Pods-QuranApp-QuranAppTests-resources-${CONFIGURATION}-input-files.xcfilelist",
393
+ );
394
+ name = "[CP] Copy Pods Resources";
395
+ outputFileListPaths = (
396
+ "${PODS_ROOT}/Target Support Files/Pods-QuranApp-QuranAppTests/Pods-QuranApp-QuranAppTests-resources-${CONFIGURATION}-output-files.xcfilelist",
397
+ );
398
+ runOnlyForDeploymentPostprocessing = 0;
399
+ shellPath = /bin/sh;
400
+ shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-QuranApp-QuranAppTests/Pods-QuranApp-QuranAppTests-resources.sh\"\n";
401
+ showEnvVarsInLog = 0;
402
+ };
403
+ /* End PBXShellScriptBuildPhase section */
404
+
405
+ /* Begin PBXSourcesBuildPhase section */
406
+ 00E356EA1AD99517003FC87E /* Sources */ = {
407
+ isa = PBXSourcesBuildPhase;
408
+ buildActionMask = 2147483647;
409
+ files = (
410
+ 00E356F31AD99517003FC87E /* QuranAppTests.m in Sources */,
411
+ );
412
+ runOnlyForDeploymentPostprocessing = 0;
413
+ };
414
+ 13B07F871A680F5B00A75B9A /* Sources */ = {
415
+ isa = PBXSourcesBuildPhase;
416
+ buildActionMask = 2147483647;
417
+ files = (
418
+ 13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
419
+ 13B07FC11A68108700A75B9A /* main.m in Sources */,
420
+ );
421
+ runOnlyForDeploymentPostprocessing = 0;
422
+ };
423
+ /* End PBXSourcesBuildPhase section */
424
+
425
+ /* Begin PBXTargetDependency section */
426
+ 00E356F51AD99517003FC87E /* PBXTargetDependency */ = {
427
+ isa = PBXTargetDependency;
428
+ target = 13B07F861A680F5B00A75B9A /* QuranApp */;
429
+ targetProxy = 00E356F41AD99517003FC87E /* PBXContainerItemProxy */;
430
+ };
431
+ /* End PBXTargetDependency section */
432
+
433
+ /* Begin XCBuildConfiguration section */
434
+ 00E356F61AD99517003FC87E /* Debug */ = {
435
+ isa = XCBuildConfiguration;
436
+ baseConfigurationReference = 5B7EB9410499542E8C5724F5 /* Pods-QuranApp-QuranAppTests.debug.xcconfig */;
437
+ buildSettings = {
438
+ BUNDLE_LOADER = "$(TEST_HOST)";
439
+ GCC_PREPROCESSOR_DEFINITIONS = (
440
+ "DEBUG=1",
441
+ "$(inherited)",
442
+ );
443
+ INFOPLIST_FILE = QuranAppTests/Info.plist;
444
+ IPHONEOS_DEPLOYMENT_TARGET = 13.4;
445
+ LD_RUNPATH_SEARCH_PATHS = (
446
+ "$(inherited)",
447
+ "@executable_path/Frameworks",
448
+ "@loader_path/Frameworks",
449
+ );
450
+ OTHER_LDFLAGS = (
451
+ "-ObjC",
452
+ "-lc++",
453
+ "$(inherited)",
454
+ );
455
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
456
+ PRODUCT_NAME = "$(TARGET_NAME)";
457
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/QuranApp.app/QuranApp";
458
+ };
459
+ name = Debug;
460
+ };
461
+ 00E356F71AD99517003FC87E /* Release */ = {
462
+ isa = XCBuildConfiguration;
463
+ baseConfigurationReference = 89C6BE57DB24E9ADA2F236DE /* Pods-QuranApp-QuranAppTests.release.xcconfig */;
464
+ buildSettings = {
465
+ BUNDLE_LOADER = "$(TEST_HOST)";
466
+ COPY_PHASE_STRIP = NO;
467
+ INFOPLIST_FILE = QuranAppTests/Info.plist;
468
+ IPHONEOS_DEPLOYMENT_TARGET = 13.4;
469
+ LD_RUNPATH_SEARCH_PATHS = (
470
+ "$(inherited)",
471
+ "@executable_path/Frameworks",
472
+ "@loader_path/Frameworks",
473
+ );
474
+ OTHER_LDFLAGS = (
475
+ "-ObjC",
476
+ "-lc++",
477
+ "$(inherited)",
478
+ );
479
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
480
+ PRODUCT_NAME = "$(TARGET_NAME)";
481
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/QuranApp.app/QuranApp";
482
+ };
483
+ name = Release;
484
+ };
485
+ 13B07F941A680F5B00A75B9A /* Debug */ = {
486
+ isa = XCBuildConfiguration;
487
+ baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-QuranApp.debug.xcconfig */;
488
+ buildSettings = {
489
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
490
+ CLANG_ENABLE_MODULES = YES;
491
+ CURRENT_PROJECT_VERSION = 1;
492
+ ENABLE_BITCODE = NO;
493
+ INFOPLIST_FILE = QuranApp/Info.plist;
494
+ LD_RUNPATH_SEARCH_PATHS = (
495
+ "$(inherited)",
496
+ "@executable_path/Frameworks",
497
+ );
498
+ MARKETING_VERSION = 1.0;
499
+ OTHER_LDFLAGS = (
500
+ "$(inherited)",
501
+ "-ObjC",
502
+ "-lc++",
503
+ );
504
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
505
+ PRODUCT_NAME = QuranApp;
506
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
507
+ SWIFT_VERSION = 5.0;
508
+ VERSIONING_SYSTEM = "apple-generic";
509
+ };
510
+ name = Debug;
511
+ };
512
+ 13B07F951A680F5B00A75B9A /* Release */ = {
513
+ isa = XCBuildConfiguration;
514
+ baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-QuranApp.release.xcconfig */;
515
+ buildSettings = {
516
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
517
+ CLANG_ENABLE_MODULES = YES;
518
+ CURRENT_PROJECT_VERSION = 1;
519
+ INFOPLIST_FILE = QuranApp/Info.plist;
520
+ LD_RUNPATH_SEARCH_PATHS = (
521
+ "$(inherited)",
522
+ "@executable_path/Frameworks",
523
+ );
524
+ MARKETING_VERSION = 1.0;
525
+ OTHER_LDFLAGS = (
526
+ "$(inherited)",
527
+ "-ObjC",
528
+ "-lc++",
529
+ );
530
+ PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
531
+ PRODUCT_NAME = QuranApp;
532
+ SWIFT_VERSION = 5.0;
533
+ VERSIONING_SYSTEM = "apple-generic";
534
+ };
535
+ name = Release;
536
+ };
537
+ 83CBBA201A601CBA00E9B192 /* Debug */ = {
538
+ isa = XCBuildConfiguration;
539
+ buildSettings = {
540
+ ALWAYS_SEARCH_USER_PATHS = NO;
541
+ CC = "";
542
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
543
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
544
+ CLANG_CXX_LIBRARY = "libc++";
545
+ CLANG_ENABLE_MODULES = YES;
546
+ CLANG_ENABLE_OBJC_ARC = YES;
547
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
548
+ CLANG_WARN_BOOL_CONVERSION = YES;
549
+ CLANG_WARN_COMMA = YES;
550
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
551
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
552
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
553
+ CLANG_WARN_EMPTY_BODY = YES;
554
+ CLANG_WARN_ENUM_CONVERSION = YES;
555
+ CLANG_WARN_INFINITE_RECURSION = YES;
556
+ CLANG_WARN_INT_CONVERSION = YES;
557
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
558
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
559
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
560
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
561
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
562
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
563
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
564
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
565
+ CLANG_WARN_UNREACHABLE_CODE = YES;
566
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
567
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
568
+ COPY_PHASE_STRIP = NO;
569
+ CXX = "";
570
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
571
+ ENABLE_TESTABILITY = YES;
572
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
573
+ GCC_C_LANGUAGE_STANDARD = gnu99;
574
+ GCC_DYNAMIC_NO_PIC = NO;
575
+ GCC_NO_COMMON_BLOCKS = YES;
576
+ GCC_OPTIMIZATION_LEVEL = 0;
577
+ GCC_PREPROCESSOR_DEFINITIONS = (
578
+ "DEBUG=1",
579
+ "$(inherited)",
580
+ );
581
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
582
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
583
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
584
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
585
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
586
+ GCC_WARN_UNUSED_FUNCTION = YES;
587
+ GCC_WARN_UNUSED_VARIABLE = YES;
588
+ IPHONEOS_DEPLOYMENT_TARGET = 13.4;
589
+ LD = "";
590
+ LDPLUSPLUS = "";
591
+ LD_RUNPATH_SEARCH_PATHS = (
592
+ /usr/lib/swift,
593
+ "$(inherited)",
594
+ );
595
+ LIBRARY_SEARCH_PATHS = (
596
+ "\"$(SDKROOT)/usr/lib/swift\"",
597
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
598
+ "\"$(inherited)\"",
599
+ );
600
+ MTL_ENABLE_DEBUG_INFO = YES;
601
+ ONLY_ACTIVE_ARCH = YES;
602
+ OTHER_CPLUSPLUSFLAGS = (
603
+ "$(OTHER_CFLAGS)",
604
+ "-DFOLLY_NO_CONFIG",
605
+ "-DFOLLY_MOBILE=1",
606
+ "-DFOLLY_USE_LIBCPP=1",
607
+ "-DFOLLY_CFG_NO_COROUTINES=1",
608
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
609
+ );
610
+ OTHER_LDFLAGS = (
611
+ "$(inherited)",
612
+ " ",
613
+ );
614
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
615
+ SDKROOT = iphoneos;
616
+ USE_HERMES = true;
617
+ };
618
+ name = Debug;
619
+ };
620
+ 83CBBA211A601CBA00E9B192 /* Release */ = {
621
+ isa = XCBuildConfiguration;
622
+ buildSettings = {
623
+ ALWAYS_SEARCH_USER_PATHS = NO;
624
+ CC = "";
625
+ CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
626
+ CLANG_CXX_LANGUAGE_STANDARD = "c++20";
627
+ CLANG_CXX_LIBRARY = "libc++";
628
+ CLANG_ENABLE_MODULES = YES;
629
+ CLANG_ENABLE_OBJC_ARC = YES;
630
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
631
+ CLANG_WARN_BOOL_CONVERSION = YES;
632
+ CLANG_WARN_COMMA = YES;
633
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
634
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
635
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
636
+ CLANG_WARN_EMPTY_BODY = YES;
637
+ CLANG_WARN_ENUM_CONVERSION = YES;
638
+ CLANG_WARN_INFINITE_RECURSION = YES;
639
+ CLANG_WARN_INT_CONVERSION = YES;
640
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
641
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
642
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
643
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
644
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
645
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
646
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
647
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
648
+ CLANG_WARN_UNREACHABLE_CODE = YES;
649
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
650
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
651
+ COPY_PHASE_STRIP = YES;
652
+ CXX = "";
653
+ ENABLE_NS_ASSERTIONS = NO;
654
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
655
+ "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
656
+ GCC_C_LANGUAGE_STANDARD = gnu99;
657
+ GCC_NO_COMMON_BLOCKS = YES;
658
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
659
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
660
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
661
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
662
+ GCC_WARN_UNUSED_FUNCTION = YES;
663
+ GCC_WARN_UNUSED_VARIABLE = YES;
664
+ IPHONEOS_DEPLOYMENT_TARGET = 13.4;
665
+ LD = "";
666
+ LDPLUSPLUS = "";
667
+ LD_RUNPATH_SEARCH_PATHS = (
668
+ /usr/lib/swift,
669
+ "$(inherited)",
670
+ );
671
+ LIBRARY_SEARCH_PATHS = (
672
+ "\"$(SDKROOT)/usr/lib/swift\"",
673
+ "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
674
+ "\"$(inherited)\"",
675
+ );
676
+ MTL_ENABLE_DEBUG_INFO = NO;
677
+ OTHER_CPLUSPLUSFLAGS = (
678
+ "$(OTHER_CFLAGS)",
679
+ "-DFOLLY_NO_CONFIG",
680
+ "-DFOLLY_MOBILE=1",
681
+ "-DFOLLY_USE_LIBCPP=1",
682
+ "-DFOLLY_CFG_NO_COROUTINES=1",
683
+ "-DFOLLY_HAVE_CLOCK_GETTIME=1",
684
+ );
685
+ OTHER_LDFLAGS = (
686
+ "$(inherited)",
687
+ " ",
688
+ );
689
+ REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
690
+ SDKROOT = iphoneos;
691
+ USE_HERMES = true;
692
+ VALIDATE_PRODUCT = YES;
693
+ };
694
+ name = Release;
695
+ };
696
+ /* End XCBuildConfiguration section */
697
+
698
+ /* Begin XCConfigurationList section */
699
+ 00E357021AD99517003FC87E /* Build configuration list for PBXNativeTarget "QuranAppTests" */ = {
700
+ isa = XCConfigurationList;
701
+ buildConfigurations = (
702
+ 00E356F61AD99517003FC87E /* Debug */,
703
+ 00E356F71AD99517003FC87E /* Release */,
704
+ );
705
+ defaultConfigurationIsVisible = 0;
706
+ defaultConfigurationName = Release;
707
+ };
708
+ 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "QuranApp" */ = {
709
+ isa = XCConfigurationList;
710
+ buildConfigurations = (
711
+ 13B07F941A680F5B00A75B9A /* Debug */,
712
+ 13B07F951A680F5B00A75B9A /* Release */,
713
+ );
714
+ defaultConfigurationIsVisible = 0;
715
+ defaultConfigurationName = Release;
716
+ };
717
+ 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "QuranApp" */ = {
718
+ isa = XCConfigurationList;
719
+ buildConfigurations = (
720
+ 83CBBA201A601CBA00E9B192 /* Debug */,
721
+ 83CBBA211A601CBA00E9B192 /* Release */,
722
+ );
723
+ defaultConfigurationIsVisible = 0;
724
+ defaultConfigurationName = Release;
725
+ };
726
+ /* End XCConfigurationList section */
727
+ };
728
+ rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
729
+ }