@varunindiit/create-rn-starter 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +93 -0
- package/bin/index.js +270 -0
- package/lib/prompt.js +63 -0
- package/lib/rename.js +239 -0
- package/lib/scaffold.js +110 -0
- package/lib/utils.js +122 -0
- package/package.json +38 -0
- package/template/.eslintrc.js +4 -0
- package/template/.prettierrc.js +5 -0
- package/template/.watchmanconfig +1 -0
- package/template/App.tsx +100 -0
- package/template/Gemfile +17 -0
- package/template/README.md +97 -0
- package/template/__tests__/App.test.tsx +13 -0
- package/template/_gitignore +75 -0
- package/template/android/app/build.gradle +119 -0
- package/template/android/app/debug.keystore +0 -0
- package/template/android/app/proguard-rules.pro +10 -0
- package/template/android/app/src/main/AndroidManifest.xml +45 -0
- package/template/android/app/src/main/assets/fonts/MonaSans-Black.ttf +0 -0
- package/template/android/app/src/main/assets/fonts/MonaSans-BlackItalic.ttf +0 -0
- package/template/android/app/src/main/assets/fonts/MonaSans-Bold.ttf +0 -0
- package/template/android/app/src/main/assets/fonts/MonaSans-BoldItalic.ttf +0 -0
- package/template/android/app/src/main/assets/fonts/MonaSans-ExtraBold.ttf +0 -0
- package/template/android/app/src/main/assets/fonts/MonaSans-ExtraBoldItalic.ttf +0 -0
- package/template/android/app/src/main/assets/fonts/MonaSans-ExtraLight.ttf +0 -0
- package/template/android/app/src/main/assets/fonts/MonaSans-ExtraLightItalic.ttf +0 -0
- package/template/android/app/src/main/assets/fonts/MonaSans-Italic.ttf +0 -0
- package/template/android/app/src/main/assets/fonts/MonaSans-Light.ttf +0 -0
- package/template/android/app/src/main/assets/fonts/MonaSans-LightItalic.ttf +0 -0
- package/template/android/app/src/main/assets/fonts/MonaSans-Medium.ttf +0 -0
- package/template/android/app/src/main/assets/fonts/MonaSans-MediumItalic.ttf +0 -0
- package/template/android/app/src/main/assets/fonts/MonaSans-Regular.ttf +0 -0
- package/template/android/app/src/main/assets/fonts/MonaSans-SemiBold.ttf +0 -0
- package/template/android/app/src/main/assets/fonts/MonaSans-SemiBoldItalic.ttf +0 -0
- package/template/android/app/src/main/java/com/awesomeproject/MainActivity.kt +22 -0
- package/template/android/app/src/main/java/com/awesomeproject/MainApplication.kt +27 -0
- package/template/android/app/src/main/res/drawable/launch_screen.png +0 -0
- package/template/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
- package/template/android/app/src/main/res/layout/launch_screen.xml +12 -0
- package/template/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/template/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/template/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/template/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/template/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/template/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/template/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/template/android/app/src/main/res/values/colors.xml +3 -0
- package/template/android/app/src/main/res/values/strings.xml +3 -0
- package/template/android/app/src/main/res/values/styles.xml +11 -0
- package/template/android/build.gradle +21 -0
- package/template/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/template/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/template/android/gradle.properties +44 -0
- package/template/android/gradlew +248 -0
- package/template/android/gradlew.bat +98 -0
- package/template/android/link-assets-manifest.json +69 -0
- package/template/android/settings.gradle +6 -0
- package/template/app.json +4 -0
- package/template/babel.config.js +4 -0
- package/template/declarations.d.ts +6 -0
- package/template/env.example +20 -0
- package/template/index.js +10 -0
- package/template/ios/.xcode.env +11 -0
- package/template/ios/.xcode.env.local +1 -0
- package/template/ios/AwesomeProject/AppDelegate.swift +60 -0
- package/template/ios/AwesomeProject/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/template/ios/AwesomeProject/Images.xcassets/Contents.json +6 -0
- package/template/ios/AwesomeProject/Images.xcassets/Splash.imageset/Contents.json +23 -0
- package/template/ios/AwesomeProject/Images.xcassets/Splash.imageset/Splash@1x.png +0 -0
- package/template/ios/AwesomeProject/Images.xcassets/Splash.imageset/Splash@2x.png +0 -0
- package/template/ios/AwesomeProject/Images.xcassets/Splash.imageset/Splash@3x.png +0 -0
- package/template/ios/AwesomeProject/Info.plist +89 -0
- package/template/ios/AwesomeProject/LaunchScreen.storyboard +40 -0
- package/template/ios/AwesomeProject/PrivacyInfo.xcprivacy +38 -0
- package/template/ios/AwesomeProject.xcodeproj/project.pbxproj +576 -0
- package/template/ios/AwesomeProject.xcodeproj/xcshareddata/xcschemes/AwesomeProject.xcscheme +88 -0
- package/template/ios/AwesomeProject.xcworkspace/contents.xcworkspacedata +10 -0
- package/template/ios/Podfile +68 -0
- package/template/ios/link-assets-manifest.json +69 -0
- package/template/jest.config.js +3 -0
- package/template/metro.config.js +24 -0
- package/template/package.json +68 -0
- package/template/react-native.config.js +7 -0
- package/template/src/assets/fonts/MonaSans-Black.ttf +0 -0
- package/template/src/assets/fonts/MonaSans-BlackItalic.ttf +0 -0
- package/template/src/assets/fonts/MonaSans-Bold.ttf +0 -0
- package/template/src/assets/fonts/MonaSans-BoldItalic.ttf +0 -0
- package/template/src/assets/fonts/MonaSans-ExtraBold.ttf +0 -0
- package/template/src/assets/fonts/MonaSans-ExtraBoldItalic.ttf +0 -0
- package/template/src/assets/fonts/MonaSans-ExtraLight.ttf +0 -0
- package/template/src/assets/fonts/MonaSans-ExtraLightItalic.ttf +0 -0
- package/template/src/assets/fonts/MonaSans-Italic.ttf +0 -0
- package/template/src/assets/fonts/MonaSans-Light.ttf +0 -0
- package/template/src/assets/fonts/MonaSans-LightItalic.ttf +0 -0
- package/template/src/assets/fonts/MonaSans-Medium.ttf +0 -0
- package/template/src/assets/fonts/MonaSans-MediumItalic.ttf +0 -0
- package/template/src/assets/fonts/MonaSans-Regular.ttf +0 -0
- package/template/src/assets/fonts/MonaSans-SemiBold.ttf +0 -0
- package/template/src/assets/fonts/MonaSans-SemiBoldItalic.ttf +0 -0
- package/template/src/assets/image/BackGroundAuth.png +0 -0
- package/template/src/assets/image/BackgroundVerification.png +0 -0
- package/template/src/assets/image/logo.png +0 -0
- package/template/src/assets/svg/add-circle.svg +5 -0
- package/template/src/assets/svg/airConditioning.svg +12 -0
- package/template/src/assets/svg/apple.svg +3 -0
- package/template/src/assets/svg/arrowDown.svg +3 -0
- package/template/src/assets/svg/back.svg +10 -0
- package/template/src/assets/svg/bag.svg +11 -0
- package/template/src/assets/svg/calender.svg +5 -0
- package/template/src/assets/svg/car.svg +10 -0
- package/template/src/assets/svg/carConfirm.svg +60 -0
- package/template/src/assets/svg/chatActive.svg +3 -0
- package/template/src/assets/svg/chatUnActive.svg +3 -0
- package/template/src/assets/svg/document-text.svg +6 -0
- package/template/src/assets/svg/gender.svg +11 -0
- package/template/src/assets/svg/google.svg +6 -0
- package/template/src/assets/svg/headphone.svg +3 -0
- package/template/src/assets/svg/homeActive.svg +3 -0
- package/template/src/assets/svg/homeUnActive.svg +3 -0
- package/template/src/assets/svg/logo.svg +18 -0
- package/template/src/assets/svg/logout.svg +5 -0
- package/template/src/assets/svg/maxBack.svg +4 -0
- package/template/src/assets/svg/message-text.svg +7 -0
- package/template/src/assets/svg/music.svg +5 -0
- package/template/src/assets/svg/noSmoking.svg +10 -0
- package/template/src/assets/svg/notification.svg +5 -0
- package/template/src/assets/svg/passenger.svg +4 -0
- package/template/src/assets/svg/phone.svg +3 -0
- package/template/src/assets/svg/rightArrow.svg +3 -0
- package/template/src/assets/svg/security-user.svg +5 -0
- package/template/src/assets/svg/star.svg +3 -0
- package/template/src/assets/svg/tick-circle.svg +4 -0
- package/template/src/assets/svg/trafficLight.svg +41 -0
- package/template/src/assets/svg/tripActive.svg +10 -0
- package/template/src/assets/svg/tripUnActive.svg +10 -0
- package/template/src/assets/svg/usbChargers.svg +3 -0
- package/template/src/assets/svg/user.svg +4 -0
- package/template/src/assets/svg/userActive.svg +3 -0
- package/template/src/assets/svg/userPlaceholder.svg +3 -0
- package/template/src/assets/svg/userUnActive.svg +3 -0
- package/template/src/components/AuthLayout/AuthLayout.tsx +170 -0
- package/template/src/components/AuthLayout/index.ts +1 -0
- package/template/src/components/BottomSheet/BottomSheet.tsx +73 -0
- package/template/src/components/BottomSheet/BottomSheetAlert.tsx +100 -0
- package/template/src/components/BottomSheet/CenterAlert.tsx +153 -0
- package/template/src/components/BottomSheet/index.ts +2 -0
- package/template/src/components/BottomTabBar/index.tsx +145 -0
- package/template/src/components/Button/RNButton.tsx +152 -0
- package/template/src/components/Button/index.ts +2 -0
- package/template/src/components/Common/Avatar.tsx +80 -0
- package/template/src/components/Common/Card.tsx +49 -0
- package/template/src/components/Common/CardBrandLogo.tsx +66 -0
- package/template/src/components/Common/Checkbox.tsx +65 -0
- package/template/src/components/Common/Chip.tsx +79 -0
- package/template/src/components/Common/CommonStyles.tsx +594 -0
- package/template/src/components/Common/Divider.tsx +33 -0
- package/template/src/components/Common/DriverTripCard.tsx +308 -0
- package/template/src/components/Common/Dropdown.tsx +161 -0
- package/template/src/components/Common/EmptyState.tsx +52 -0
- package/template/src/components/Common/FAB.tsx +68 -0
- package/template/src/components/Common/HeaderLocation.tsx +108 -0
- package/template/src/components/Common/Loader.tsx +23 -0
- package/template/src/components/Common/RatingStars.tsx +103 -0
- package/template/src/components/Common/RouteDots.tsx +98 -0
- package/template/src/components/Common/SegmentedControl.tsx +126 -0
- package/template/src/components/Common/SosButton.tsx +80 -0
- package/template/src/components/Common/SosSheet.tsx +344 -0
- package/template/src/components/Common/StarRating.tsx +58 -0
- package/template/src/components/Common/StatusBadge.tsx +56 -0
- package/template/src/components/Common/Toggle.tsx +66 -0
- package/template/src/components/Common/TripCard.tsx +247 -0
- package/template/src/components/Common/UploadBox.tsx +106 -0
- package/template/src/components/Container/MainContainer.tsx +76 -0
- package/template/src/components/Container/index.ts +1 -0
- package/template/src/components/Header/index.tsx +143 -0
- package/template/src/components/Icon/SvgIcons.tsx +1991 -0
- package/template/src/components/ImagePickerSheet/ImagePickerSheet.tsx +233 -0
- package/template/src/components/ImagePickerSheet/index.ts +2 -0
- package/template/src/components/Input/CountryDropdown.tsx +71 -0
- package/template/src/components/Input/OtpInput.tsx +117 -0
- package/template/src/components/Input/RNInput.tsx +138 -0
- package/template/src/components/Input/index.ts +4 -0
- package/template/src/components/Picker/DatePickerSheet.tsx +393 -0
- package/template/src/components/Picker/PassengerPickerSheet.tsx +237 -0
- package/template/src/components/Text/RNText.tsx +62 -0
- package/template/src/components/Text/index.ts +1 -0
- package/template/src/components/index.ts +44 -0
- package/template/src/hooks/useCurrentLocation.ts +72 -0
- package/template/src/localization/i18n.ts +29 -0
- package/template/src/localization/i18next.d.ts +11 -0
- package/template/src/localization/index.ts +4 -0
- package/template/src/localization/languageStorage.ts +27 -0
- package/template/src/localization/languages.ts +62 -0
- package/template/src/localization/resources/en.ts +703 -0
- package/template/src/localization/resources/fr.ts +703 -0
- package/template/src/localization/useLanguage.ts +42 -0
- package/template/src/navigation/AuthNavigation.tsx +23 -0
- package/template/src/navigation/BottomTabs.tsx +24 -0
- package/template/src/navigation/RootNavigation.tsx +27 -0
- package/template/src/navigation/RouteKey.ts +22 -0
- package/template/src/navigation/StackNavigation.tsx +52 -0
- package/template/src/navigation/paramLists.ts +25 -0
- package/template/src/redux/slice/app.ts +66 -0
- package/template/src/redux/slice/auth.ts +40 -0
- package/template/src/redux/slice/userProfile.ts +124 -0
- package/template/src/redux/store.ts +17 -0
- package/template/src/screen/auth/Login.tsx +69 -0
- package/template/src/screen/onboarding/LanguageSelection.tsx +231 -0
- package/template/src/screen/root/home/index.tsx +36 -0
- package/template/src/screen/root/profile/index.tsx +69 -0
- package/template/src/screen/shared/Chat.tsx +308 -0
- package/template/src/screen/shared/EditProfile.tsx +407 -0
- package/template/src/screen/shared/HelpSupport.tsx +678 -0
- package/template/src/screen/shared/LocationSearch.tsx +362 -0
- package/template/src/screen/shared/Messages.tsx +115 -0
- package/template/src/screen/shared/Notifications.tsx +86 -0
- package/template/src/screen/shared/PrivacyPolicy.tsx +297 -0
- package/template/src/screen/shared/Profile.tsx +118 -0
- package/template/src/screen/shared/Ratings.tsx +170 -0
- package/template/src/screen/shared/TermsConditions.tsx +315 -0
- package/template/src/screen/shared/profile/DriverProfile.tsx +262 -0
- package/template/src/screen/shared/profile/PassengerProfile.tsx +123 -0
- package/template/src/screen/shared/profile/ProfileParts.tsx +219 -0
- package/template/src/services/Config.ts +37 -0
- package/template/src/services/api.ts +37 -0
- package/template/src/services/index.ts +4 -0
- package/template/src/services/places.ts +320 -0
- package/template/src/services/storage.ts +33 -0
- package/template/src/theme/fonts.ts +30 -0
- package/template/src/theme/index.ts +3 -0
- package/template/src/theme/spacing.ts +66 -0
- package/template/src/theme/theme.ts +58 -0
- package/template/src/types/env.d.ts +8 -0
- package/template/src/types/index.ts +3 -0
- package/template/src/utils/card.ts +101 -0
- package/template/src/utils/constants.ts +39 -0
- package/template/src/utils/functions.ts +24 -0
- package/template/tsconfig.json +8 -0
|
@@ -0,0 +1,576 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 54;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
0C2943F07E7F4DE4938BB024 /* MonaSans-LightItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 80806B4F46EF4862AC548C20 /* MonaSans-LightItalic.ttf */; };
|
|
11
|
+
0C717F966009451784F1D847 /* MonaSans-Black.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E584D7ED7D5C43DDB07E4480 /* MonaSans-Black.ttf */; };
|
|
12
|
+
0C80B921A6F3F58F76C31292 /* libPods-AwesomeProject.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-AwesomeProject.a */; };
|
|
13
|
+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
|
14
|
+
1ABDF14C27CC4C7AA9E24C14 /* MonaSans-ExtraBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E52AB2AC41A04EC0AC666C56 /* MonaSans-ExtraBold.ttf */; };
|
|
15
|
+
42808AD11A844AEE907FF4B2 /* MonaSans-ExtraLightItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 924BBE36025A4A84B1EC250E /* MonaSans-ExtraLightItalic.ttf */; };
|
|
16
|
+
54D3DF2C43B54C658E1BA79C /* MonaSans-Italic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 2ED5D48EB2034EB2A5AA9662 /* MonaSans-Italic.ttf */; };
|
|
17
|
+
66651E0C08AD44C89E3EC9D7 /* MonaSans-Light.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 91C2901552B44E3EB3722D1D /* MonaSans-Light.ttf */; };
|
|
18
|
+
761780ED2CA45674006654EE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761780EC2CA45674006654EE /* AppDelegate.swift */; };
|
|
19
|
+
7C7DEAC5AE3B487180B74E5A /* MonaSans-Bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4BA9745B59F04CC980784C54 /* MonaSans-Bold.ttf */; };
|
|
20
|
+
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
|
|
21
|
+
943A9252767449AD9C70DECC /* MonaSans-ExtraBoldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 56FC6FBC2F3E469CAC8F1430 /* MonaSans-ExtraBoldItalic.ttf */; };
|
|
22
|
+
98E6D1E8086F43D5BB7634B5 /* MonaSans-ExtraLight.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 5D30F8AAD37447AF95D50C12 /* MonaSans-ExtraLight.ttf */; };
|
|
23
|
+
9F7D72DC9F8942FF9C0B70BE /* MonaSans-SemiBold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 0F69EF7D07674C428CB0E5BF /* MonaSans-SemiBold.ttf */; };
|
|
24
|
+
A02059668A554425A2D22BC3 /* MonaSans-Medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 4AC637F1158A4BF58663789F /* MonaSans-Medium.ttf */; };
|
|
25
|
+
A7AD9EBD4FFB44D080AAA644 /* MonaSans-MediumItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = E21A7CD19ED9425CBE11D220 /* MonaSans-MediumItalic.ttf */; };
|
|
26
|
+
A8079B796971407D82B11F8A /* MonaSans-BlackItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 3DC03671BBAF4994A5947B8F /* MonaSans-BlackItalic.ttf */; };
|
|
27
|
+
B8698930A81F2A8FA0463B44 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */; };
|
|
28
|
+
C7E108896993470883F1FDBC /* MonaSans-Regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F4F7A602D5DF4E8CBB0FD8C9 /* MonaSans-Regular.ttf */; };
|
|
29
|
+
E056BC997DDA4B689C115112 /* MonaSans-SemiBoldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = F28194E2161D49B3B25A690B /* MonaSans-SemiBoldItalic.ttf */; };
|
|
30
|
+
E8FDEF0FFD1249D4AC1FEFF9 /* MonaSans-BoldItalic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 32F72A451DF34646889F6DE6 /* MonaSans-BoldItalic.ttf */; };
|
|
31
|
+
/* End PBXBuildFile section */
|
|
32
|
+
|
|
33
|
+
/* Begin PBXFileReference section */
|
|
34
|
+
0F69EF7D07674C428CB0E5BF /* MonaSans-SemiBold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "MonaSans-SemiBold.ttf"; path = "../src/assets/fonts/MonaSans-SemiBold.ttf"; sourceTree = "<group>"; };
|
|
35
|
+
13B07F961A680F5B00A75B9A /* AwesomeProject.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AwesomeProject.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
36
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = AwesomeProject/Images.xcassets; sourceTree = "<group>"; };
|
|
37
|
+
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = AwesomeProject/Info.plist; sourceTree = "<group>"; };
|
|
38
|
+
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = AwesomeProject/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
|
39
|
+
2ED5D48EB2034EB2A5AA9662 /* MonaSans-Italic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "MonaSans-Italic.ttf"; path = "../src/assets/fonts/MonaSans-Italic.ttf"; sourceTree = "<group>"; };
|
|
40
|
+
32F72A451DF34646889F6DE6 /* MonaSans-BoldItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "MonaSans-BoldItalic.ttf"; path = "../src/assets/fonts/MonaSans-BoldItalic.ttf"; sourceTree = "<group>"; };
|
|
41
|
+
3B4392A12AC88292D35C810B /* Pods-AwesomeProject.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AwesomeProject.debug.xcconfig"; path = "Target Support Files/Pods-AwesomeProject/Pods-AwesomeProject.debug.xcconfig"; sourceTree = "<group>"; };
|
|
42
|
+
3DC03671BBAF4994A5947B8F /* MonaSans-BlackItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "MonaSans-BlackItalic.ttf"; path = "../src/assets/fonts/MonaSans-BlackItalic.ttf"; sourceTree = "<group>"; };
|
|
43
|
+
4AC637F1158A4BF58663789F /* MonaSans-Medium.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "MonaSans-Medium.ttf"; path = "../src/assets/fonts/MonaSans-Medium.ttf"; sourceTree = "<group>"; };
|
|
44
|
+
4BA9745B59F04CC980784C54 /* MonaSans-Bold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "MonaSans-Bold.ttf"; path = "../src/assets/fonts/MonaSans-Bold.ttf"; sourceTree = "<group>"; };
|
|
45
|
+
56FC6FBC2F3E469CAC8F1430 /* MonaSans-ExtraBoldItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "MonaSans-ExtraBoldItalic.ttf"; path = "../src/assets/fonts/MonaSans-ExtraBoldItalic.ttf"; sourceTree = "<group>"; };
|
|
46
|
+
5709B34CF0A7D63546082F79 /* Pods-AwesomeProject.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-AwesomeProject.release.xcconfig"; path = "Target Support Files/Pods-AwesomeProject/Pods-AwesomeProject.release.xcconfig"; sourceTree = "<group>"; };
|
|
47
|
+
5D30F8AAD37447AF95D50C12 /* MonaSans-ExtraLight.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "MonaSans-ExtraLight.ttf"; path = "../src/assets/fonts/MonaSans-ExtraLight.ttf"; sourceTree = "<group>"; };
|
|
48
|
+
5DCACB8F33CDC322A6C60F78 /* libPods-AwesomeProject.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-AwesomeProject.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
49
|
+
761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = AwesomeProject/AppDelegate.swift; sourceTree = "<group>"; };
|
|
50
|
+
80806B4F46EF4862AC548C20 /* MonaSans-LightItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "MonaSans-LightItalic.ttf"; path = "../src/assets/fonts/MonaSans-LightItalic.ttf"; sourceTree = "<group>"; };
|
|
51
|
+
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = AwesomeProject/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
52
|
+
91C2901552B44E3EB3722D1D /* MonaSans-Light.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "MonaSans-Light.ttf"; path = "../src/assets/fonts/MonaSans-Light.ttf"; sourceTree = "<group>"; };
|
|
53
|
+
924BBE36025A4A84B1EC250E /* MonaSans-ExtraLightItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "MonaSans-ExtraLightItalic.ttf"; path = "../src/assets/fonts/MonaSans-ExtraLightItalic.ttf"; sourceTree = "<group>"; };
|
|
54
|
+
E21A7CD19ED9425CBE11D220 /* MonaSans-MediumItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "MonaSans-MediumItalic.ttf"; path = "../src/assets/fonts/MonaSans-MediumItalic.ttf"; sourceTree = "<group>"; };
|
|
55
|
+
E52AB2AC41A04EC0AC666C56 /* MonaSans-ExtraBold.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "MonaSans-ExtraBold.ttf"; path = "../src/assets/fonts/MonaSans-ExtraBold.ttf"; sourceTree = "<group>"; };
|
|
56
|
+
E584D7ED7D5C43DDB07E4480 /* MonaSans-Black.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "MonaSans-Black.ttf"; path = "../src/assets/fonts/MonaSans-Black.ttf"; sourceTree = "<group>"; };
|
|
57
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
58
|
+
F28194E2161D49B3B25A690B /* MonaSans-SemiBoldItalic.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "MonaSans-SemiBoldItalic.ttf"; path = "../src/assets/fonts/MonaSans-SemiBoldItalic.ttf"; sourceTree = "<group>"; };
|
|
59
|
+
F4F7A602D5DF4E8CBB0FD8C9 /* MonaSans-Regular.ttf */ = {isa = PBXFileReference; explicitFileType = undefined; fileEncoding = 9; includeInIndex = 0; lastKnownFileType = unknown; name = "MonaSans-Regular.ttf"; path = "../src/assets/fonts/MonaSans-Regular.ttf"; sourceTree = "<group>"; };
|
|
60
|
+
/* End PBXFileReference section */
|
|
61
|
+
|
|
62
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
63
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
|
|
64
|
+
isa = PBXFrameworksBuildPhase;
|
|
65
|
+
buildActionMask = 2147483647;
|
|
66
|
+
files = (
|
|
67
|
+
0C80B921A6F3F58F76C31292 /* libPods-AwesomeProject.a in Frameworks */,
|
|
68
|
+
);
|
|
69
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
70
|
+
};
|
|
71
|
+
/* End PBXFrameworksBuildPhase section */
|
|
72
|
+
|
|
73
|
+
/* Begin PBXGroup section */
|
|
74
|
+
0AAAEB7F91434154B69E25E9 /* Resources */ = {
|
|
75
|
+
isa = PBXGroup;
|
|
76
|
+
children = (
|
|
77
|
+
924BBE36025A4A84B1EC250E /* MonaSans-ExtraLightItalic.ttf */,
|
|
78
|
+
F28194E2161D49B3B25A690B /* MonaSans-SemiBoldItalic.ttf */,
|
|
79
|
+
32F72A451DF34646889F6DE6 /* MonaSans-BoldItalic.ttf */,
|
|
80
|
+
5D30F8AAD37447AF95D50C12 /* MonaSans-ExtraLight.ttf */,
|
|
81
|
+
56FC6FBC2F3E469CAC8F1430 /* MonaSans-ExtraBoldItalic.ttf */,
|
|
82
|
+
F4F7A602D5DF4E8CBB0FD8C9 /* MonaSans-Regular.ttf */,
|
|
83
|
+
E584D7ED7D5C43DDB07E4480 /* MonaSans-Black.ttf */,
|
|
84
|
+
4AC637F1158A4BF58663789F /* MonaSans-Medium.ttf */,
|
|
85
|
+
80806B4F46EF4862AC548C20 /* MonaSans-LightItalic.ttf */,
|
|
86
|
+
E52AB2AC41A04EC0AC666C56 /* MonaSans-ExtraBold.ttf */,
|
|
87
|
+
2ED5D48EB2034EB2A5AA9662 /* MonaSans-Italic.ttf */,
|
|
88
|
+
4BA9745B59F04CC980784C54 /* MonaSans-Bold.ttf */,
|
|
89
|
+
91C2901552B44E3EB3722D1D /* MonaSans-Light.ttf */,
|
|
90
|
+
E21A7CD19ED9425CBE11D220 /* MonaSans-MediumItalic.ttf */,
|
|
91
|
+
0F69EF7D07674C428CB0E5BF /* MonaSans-SemiBold.ttf */,
|
|
92
|
+
3DC03671BBAF4994A5947B8F /* MonaSans-BlackItalic.ttf */,
|
|
93
|
+
);
|
|
94
|
+
name = Resources;
|
|
95
|
+
sourceTree = "<group>";
|
|
96
|
+
};
|
|
97
|
+
13B07FAE1A68108700A75B9A /* AwesomeProject */ = {
|
|
98
|
+
isa = PBXGroup;
|
|
99
|
+
children = (
|
|
100
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
|
101
|
+
761780EC2CA45674006654EE /* AppDelegate.swift */,
|
|
102
|
+
13B07FB61A68108700A75B9A /* Info.plist */,
|
|
103
|
+
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
|
|
104
|
+
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
|
|
105
|
+
);
|
|
106
|
+
name = AwesomeProject;
|
|
107
|
+
sourceTree = "<group>";
|
|
108
|
+
};
|
|
109
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
|
|
110
|
+
isa = PBXGroup;
|
|
111
|
+
children = (
|
|
112
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
|
113
|
+
5DCACB8F33CDC322A6C60F78 /* libPods-AwesomeProject.a */,
|
|
114
|
+
);
|
|
115
|
+
name = Frameworks;
|
|
116
|
+
sourceTree = "<group>";
|
|
117
|
+
};
|
|
118
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
|
|
119
|
+
isa = PBXGroup;
|
|
120
|
+
children = (
|
|
121
|
+
);
|
|
122
|
+
name = Libraries;
|
|
123
|
+
sourceTree = "<group>";
|
|
124
|
+
};
|
|
125
|
+
83CBB9F61A601CBA00E9B192 = {
|
|
126
|
+
isa = PBXGroup;
|
|
127
|
+
children = (
|
|
128
|
+
13B07FAE1A68108700A75B9A /* AwesomeProject */,
|
|
129
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */,
|
|
130
|
+
83CBBA001A601CBA00E9B192 /* Products */,
|
|
131
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */,
|
|
132
|
+
BBD78D7AC51CEA395F1C20DB /* Pods */,
|
|
133
|
+
0AAAEB7F91434154B69E25E9 /* Resources */,
|
|
134
|
+
);
|
|
135
|
+
indentWidth = 2;
|
|
136
|
+
sourceTree = "<group>";
|
|
137
|
+
tabWidth = 2;
|
|
138
|
+
usesTabs = 0;
|
|
139
|
+
};
|
|
140
|
+
83CBBA001A601CBA00E9B192 /* Products */ = {
|
|
141
|
+
isa = PBXGroup;
|
|
142
|
+
children = (
|
|
143
|
+
13B07F961A680F5B00A75B9A /* AwesomeProject.app */,
|
|
144
|
+
);
|
|
145
|
+
name = Products;
|
|
146
|
+
sourceTree = "<group>";
|
|
147
|
+
};
|
|
148
|
+
BBD78D7AC51CEA395F1C20DB /* Pods */ = {
|
|
149
|
+
isa = PBXGroup;
|
|
150
|
+
children = (
|
|
151
|
+
3B4392A12AC88292D35C810B /* Pods-AwesomeProject.debug.xcconfig */,
|
|
152
|
+
5709B34CF0A7D63546082F79 /* Pods-AwesomeProject.release.xcconfig */,
|
|
153
|
+
);
|
|
154
|
+
path = Pods;
|
|
155
|
+
sourceTree = "<group>";
|
|
156
|
+
};
|
|
157
|
+
/* End PBXGroup section */
|
|
158
|
+
|
|
159
|
+
/* Begin PBXNativeTarget section */
|
|
160
|
+
13B07F861A680F5B00A75B9A /* AwesomeProject */ = {
|
|
161
|
+
isa = PBXNativeTarget;
|
|
162
|
+
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "AwesomeProject" */;
|
|
163
|
+
buildPhases = (
|
|
164
|
+
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
|
|
165
|
+
13B07F871A680F5B00A75B9A /* Sources */,
|
|
166
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */,
|
|
167
|
+
13B07F8E1A680F5B00A75B9A /* Resources */,
|
|
168
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
|
|
169
|
+
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
|
|
170
|
+
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
|
|
171
|
+
);
|
|
172
|
+
buildRules = (
|
|
173
|
+
);
|
|
174
|
+
dependencies = (
|
|
175
|
+
);
|
|
176
|
+
name = AwesomeProject;
|
|
177
|
+
productName = AwesomeProject;
|
|
178
|
+
productReference = 13B07F961A680F5B00A75B9A /* AwesomeProject.app */;
|
|
179
|
+
productType = "com.apple.product-type.application";
|
|
180
|
+
};
|
|
181
|
+
/* End PBXNativeTarget section */
|
|
182
|
+
|
|
183
|
+
/* Begin PBXProject section */
|
|
184
|
+
83CBB9F71A601CBA00E9B192 /* Project object */ = {
|
|
185
|
+
isa = PBXProject;
|
|
186
|
+
attributes = {
|
|
187
|
+
LastUpgradeCheck = 1210;
|
|
188
|
+
TargetAttributes = {
|
|
189
|
+
13B07F861A680F5B00A75B9A = {
|
|
190
|
+
LastSwiftMigration = 1120;
|
|
191
|
+
};
|
|
192
|
+
};
|
|
193
|
+
};
|
|
194
|
+
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "AwesomeProject" */;
|
|
195
|
+
compatibilityVersion = "Xcode 12.0";
|
|
196
|
+
developmentRegion = en;
|
|
197
|
+
hasScannedForEncodings = 0;
|
|
198
|
+
knownRegions = (
|
|
199
|
+
en,
|
|
200
|
+
Base,
|
|
201
|
+
);
|
|
202
|
+
mainGroup = 83CBB9F61A601CBA00E9B192;
|
|
203
|
+
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
|
|
204
|
+
projectDirPath = "";
|
|
205
|
+
projectRoot = "";
|
|
206
|
+
targets = (
|
|
207
|
+
13B07F861A680F5B00A75B9A /* AwesomeProject */,
|
|
208
|
+
);
|
|
209
|
+
};
|
|
210
|
+
/* End PBXProject section */
|
|
211
|
+
|
|
212
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
213
|
+
13B07F8E1A680F5B00A75B9A /* Resources */ = {
|
|
214
|
+
isa = PBXResourcesBuildPhase;
|
|
215
|
+
buildActionMask = 2147483647;
|
|
216
|
+
files = (
|
|
217
|
+
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
|
|
218
|
+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
|
|
219
|
+
42808AD11A844AEE907FF4B2 /* MonaSans-ExtraLightItalic.ttf in Resources */,
|
|
220
|
+
E056BC997DDA4B689C115112 /* MonaSans-SemiBoldItalic.ttf in Resources */,
|
|
221
|
+
E8FDEF0FFD1249D4AC1FEFF9 /* MonaSans-BoldItalic.ttf in Resources */,
|
|
222
|
+
98E6D1E8086F43D5BB7634B5 /* MonaSans-ExtraLight.ttf in Resources */,
|
|
223
|
+
943A9252767449AD9C70DECC /* MonaSans-ExtraBoldItalic.ttf in Resources */,
|
|
224
|
+
C7E108896993470883F1FDBC /* MonaSans-Regular.ttf in Resources */,
|
|
225
|
+
0C717F966009451784F1D847 /* MonaSans-Black.ttf in Resources */,
|
|
226
|
+
A02059668A554425A2D22BC3 /* MonaSans-Medium.ttf in Resources */,
|
|
227
|
+
0C2943F07E7F4DE4938BB024 /* MonaSans-LightItalic.ttf in Resources */,
|
|
228
|
+
1ABDF14C27CC4C7AA9E24C14 /* MonaSans-ExtraBold.ttf in Resources */,
|
|
229
|
+
54D3DF2C43B54C658E1BA79C /* MonaSans-Italic.ttf in Resources */,
|
|
230
|
+
7C7DEAC5AE3B487180B74E5A /* MonaSans-Bold.ttf in Resources */,
|
|
231
|
+
66651E0C08AD44C89E3EC9D7 /* MonaSans-Light.ttf in Resources */,
|
|
232
|
+
A7AD9EBD4FFB44D080AAA644 /* MonaSans-MediumItalic.ttf in Resources */,
|
|
233
|
+
9F7D72DC9F8942FF9C0B70BE /* MonaSans-SemiBold.ttf in Resources */,
|
|
234
|
+
A8079B796971407D82B11F8A /* MonaSans-BlackItalic.ttf in Resources */,
|
|
235
|
+
B8698930A81F2A8FA0463B44 /* PrivacyInfo.xcprivacy in Resources */,
|
|
236
|
+
);
|
|
237
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
238
|
+
};
|
|
239
|
+
/* End PBXResourcesBuildPhase section */
|
|
240
|
+
|
|
241
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
242
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
|
|
243
|
+
isa = PBXShellScriptBuildPhase;
|
|
244
|
+
buildActionMask = 2147483647;
|
|
245
|
+
files = (
|
|
246
|
+
);
|
|
247
|
+
inputPaths = (
|
|
248
|
+
"$(SRCROOT)/.xcode.env.local",
|
|
249
|
+
"$(SRCROOT)/.xcode.env",
|
|
250
|
+
);
|
|
251
|
+
name = "Bundle React Native code and images";
|
|
252
|
+
outputPaths = (
|
|
253
|
+
);
|
|
254
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
255
|
+
shellPath = /bin/sh;
|
|
256
|
+
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";
|
|
257
|
+
};
|
|
258
|
+
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
|
|
259
|
+
isa = PBXShellScriptBuildPhase;
|
|
260
|
+
buildActionMask = 2147483647;
|
|
261
|
+
files = (
|
|
262
|
+
);
|
|
263
|
+
inputFileListPaths = (
|
|
264
|
+
"${PODS_ROOT}/Target Support Files/Pods-AwesomeProject/Pods-AwesomeProject-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
265
|
+
);
|
|
266
|
+
inputPaths = (
|
|
267
|
+
);
|
|
268
|
+
name = "[CP] Embed Pods Frameworks";
|
|
269
|
+
outputFileListPaths = (
|
|
270
|
+
"${PODS_ROOT}/Target Support Files/Pods-AwesomeProject/Pods-AwesomeProject-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
271
|
+
);
|
|
272
|
+
outputPaths = (
|
|
273
|
+
);
|
|
274
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
275
|
+
shellPath = /bin/sh;
|
|
276
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-AwesomeProject/Pods-AwesomeProject-frameworks.sh\"\n";
|
|
277
|
+
showEnvVarsInLog = 0;
|
|
278
|
+
};
|
|
279
|
+
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
|
|
280
|
+
isa = PBXShellScriptBuildPhase;
|
|
281
|
+
buildActionMask = 2147483647;
|
|
282
|
+
files = (
|
|
283
|
+
);
|
|
284
|
+
inputFileListPaths = (
|
|
285
|
+
);
|
|
286
|
+
inputPaths = (
|
|
287
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
288
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
289
|
+
);
|
|
290
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
291
|
+
outputFileListPaths = (
|
|
292
|
+
);
|
|
293
|
+
outputPaths = (
|
|
294
|
+
"$(DERIVED_FILE_DIR)/Pods-AwesomeProject-checkManifestLockResult.txt",
|
|
295
|
+
);
|
|
296
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
297
|
+
shellPath = /bin/sh;
|
|
298
|
+
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";
|
|
299
|
+
showEnvVarsInLog = 0;
|
|
300
|
+
};
|
|
301
|
+
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
|
|
302
|
+
isa = PBXShellScriptBuildPhase;
|
|
303
|
+
buildActionMask = 2147483647;
|
|
304
|
+
files = (
|
|
305
|
+
);
|
|
306
|
+
inputFileListPaths = (
|
|
307
|
+
"${PODS_ROOT}/Target Support Files/Pods-AwesomeProject/Pods-AwesomeProject-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
308
|
+
);
|
|
309
|
+
inputPaths = (
|
|
310
|
+
);
|
|
311
|
+
name = "[CP] Copy Pods Resources";
|
|
312
|
+
outputFileListPaths = (
|
|
313
|
+
"${PODS_ROOT}/Target Support Files/Pods-AwesomeProject/Pods-AwesomeProject-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
314
|
+
);
|
|
315
|
+
outputPaths = (
|
|
316
|
+
);
|
|
317
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
318
|
+
shellPath = /bin/sh;
|
|
319
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-AwesomeProject/Pods-AwesomeProject-resources.sh\"\n";
|
|
320
|
+
showEnvVarsInLog = 0;
|
|
321
|
+
};
|
|
322
|
+
/* End PBXShellScriptBuildPhase section */
|
|
323
|
+
|
|
324
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
325
|
+
13B07F871A680F5B00A75B9A /* Sources */ = {
|
|
326
|
+
isa = PBXSourcesBuildPhase;
|
|
327
|
+
buildActionMask = 2147483647;
|
|
328
|
+
files = (
|
|
329
|
+
761780ED2CA45674006654EE /* AppDelegate.swift in Sources */,
|
|
330
|
+
);
|
|
331
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
332
|
+
};
|
|
333
|
+
/* End PBXSourcesBuildPhase section */
|
|
334
|
+
|
|
335
|
+
/* Begin XCBuildConfiguration section */
|
|
336
|
+
13B07F941A680F5B00A75B9A /* Debug */ = {
|
|
337
|
+
isa = XCBuildConfiguration;
|
|
338
|
+
baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-AwesomeProject.debug.xcconfig */;
|
|
339
|
+
buildSettings = {
|
|
340
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
341
|
+
CLANG_ENABLE_MODULES = YES;
|
|
342
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
343
|
+
DEVELOPMENT_TEAM = VMZ7JTG4TU;
|
|
344
|
+
ENABLE_BITCODE = NO;
|
|
345
|
+
INFOPLIST_FILE = AwesomeProject/Info.plist;
|
|
346
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
347
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
348
|
+
"$(inherited)",
|
|
349
|
+
"@executable_path/Frameworks",
|
|
350
|
+
);
|
|
351
|
+
MARKETING_VERSION = 1.0;
|
|
352
|
+
OTHER_LDFLAGS = (
|
|
353
|
+
"$(inherited)",
|
|
354
|
+
"-ObjC",
|
|
355
|
+
"-lc++",
|
|
356
|
+
);
|
|
357
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
|
358
|
+
PRODUCT_NAME = AwesomeProject;
|
|
359
|
+
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
360
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
361
|
+
SWIFT_VERSION = 5.0;
|
|
362
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
363
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
364
|
+
};
|
|
365
|
+
name = Debug;
|
|
366
|
+
};
|
|
367
|
+
13B07F951A680F5B00A75B9A /* Release */ = {
|
|
368
|
+
isa = XCBuildConfiguration;
|
|
369
|
+
baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-AwesomeProject.release.xcconfig */;
|
|
370
|
+
buildSettings = {
|
|
371
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
372
|
+
CLANG_ENABLE_MODULES = YES;
|
|
373
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
374
|
+
DEVELOPMENT_TEAM = VMZ7JTG4TU;
|
|
375
|
+
INFOPLIST_FILE = AwesomeProject/Info.plist;
|
|
376
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
377
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
378
|
+
"$(inherited)",
|
|
379
|
+
"@executable_path/Frameworks",
|
|
380
|
+
);
|
|
381
|
+
MARKETING_VERSION = 1.0;
|
|
382
|
+
OTHER_LDFLAGS = (
|
|
383
|
+
"$(inherited)",
|
|
384
|
+
"-ObjC",
|
|
385
|
+
"-lc++",
|
|
386
|
+
);
|
|
387
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
|
388
|
+
PRODUCT_NAME = AwesomeProject;
|
|
389
|
+
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
390
|
+
SWIFT_VERSION = 5.0;
|
|
391
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
392
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
393
|
+
};
|
|
394
|
+
name = Release;
|
|
395
|
+
};
|
|
396
|
+
83CBBA201A601CBA00E9B192 /* Debug */ = {
|
|
397
|
+
isa = XCBuildConfiguration;
|
|
398
|
+
buildSettings = {
|
|
399
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
400
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
401
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
402
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
403
|
+
CLANG_ENABLE_MODULES = YES;
|
|
404
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
405
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
406
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
407
|
+
CLANG_WARN_COMMA = YES;
|
|
408
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
409
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
410
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
411
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
412
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
413
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
414
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
415
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
416
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
417
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
418
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
419
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
420
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
421
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
422
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
423
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
424
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
425
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
426
|
+
COPY_PHASE_STRIP = NO;
|
|
427
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
428
|
+
ENABLE_TESTABILITY = YES;
|
|
429
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
430
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
431
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
432
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
433
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
434
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
435
|
+
"DEBUG=1",
|
|
436
|
+
"$(inherited)",
|
|
437
|
+
);
|
|
438
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
|
439
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
440
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
441
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
442
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
443
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
444
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
445
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
446
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
447
|
+
/usr/lib/swift,
|
|
448
|
+
"$(inherited)",
|
|
449
|
+
);
|
|
450
|
+
LIBRARY_SEARCH_PATHS = (
|
|
451
|
+
"\"$(SDKROOT)/usr/lib/swift\"",
|
|
452
|
+
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
|
453
|
+
"\"$(inherited)\"",
|
|
454
|
+
);
|
|
455
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
456
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
457
|
+
OTHER_CFLAGS = (
|
|
458
|
+
"$(inherited)",
|
|
459
|
+
"-DRCT_REMOVE_LEGACY_ARCH=1",
|
|
460
|
+
);
|
|
461
|
+
OTHER_CPLUSPLUSFLAGS = (
|
|
462
|
+
"$(OTHER_CFLAGS)",
|
|
463
|
+
"-DFOLLY_NO_CONFIG",
|
|
464
|
+
"-DFOLLY_MOBILE=1",
|
|
465
|
+
"-DFOLLY_USE_LIBCPP=1",
|
|
466
|
+
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
467
|
+
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
468
|
+
"-DRCT_REMOVE_LEGACY_ARCH=1",
|
|
469
|
+
);
|
|
470
|
+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
471
|
+
SDKROOT = iphoneos;
|
|
472
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
|
|
473
|
+
SWIFT_ENABLE_EXPLICIT_MODULES = NO;
|
|
474
|
+
USE_HERMES = true;
|
|
475
|
+
};
|
|
476
|
+
name = Debug;
|
|
477
|
+
};
|
|
478
|
+
83CBBA211A601CBA00E9B192 /* Release */ = {
|
|
479
|
+
isa = XCBuildConfiguration;
|
|
480
|
+
buildSettings = {
|
|
481
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
482
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
483
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
484
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
485
|
+
CLANG_ENABLE_MODULES = YES;
|
|
486
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
487
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
488
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
489
|
+
CLANG_WARN_COMMA = YES;
|
|
490
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
491
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
492
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
493
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
494
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
495
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
496
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
497
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
498
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
499
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
500
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
501
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
502
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
503
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
504
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
505
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
506
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
507
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
508
|
+
COPY_PHASE_STRIP = YES;
|
|
509
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
510
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
511
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
512
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
513
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
514
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
515
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
516
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
517
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
518
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
519
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
520
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
521
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
522
|
+
/usr/lib/swift,
|
|
523
|
+
"$(inherited)",
|
|
524
|
+
);
|
|
525
|
+
LIBRARY_SEARCH_PATHS = (
|
|
526
|
+
"\"$(SDKROOT)/usr/lib/swift\"",
|
|
527
|
+
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
|
528
|
+
"\"$(inherited)\"",
|
|
529
|
+
);
|
|
530
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
531
|
+
OTHER_CFLAGS = (
|
|
532
|
+
"$(inherited)",
|
|
533
|
+
"-DRCT_REMOVE_LEGACY_ARCH=1",
|
|
534
|
+
);
|
|
535
|
+
OTHER_CPLUSPLUSFLAGS = (
|
|
536
|
+
"$(OTHER_CFLAGS)",
|
|
537
|
+
"-DFOLLY_NO_CONFIG",
|
|
538
|
+
"-DFOLLY_MOBILE=1",
|
|
539
|
+
"-DFOLLY_USE_LIBCPP=1",
|
|
540
|
+
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
541
|
+
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
542
|
+
"-DRCT_REMOVE_LEGACY_ARCH=1",
|
|
543
|
+
);
|
|
544
|
+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
545
|
+
SDKROOT = iphoneos;
|
|
546
|
+
SWIFT_ENABLE_EXPLICIT_MODULES = NO;
|
|
547
|
+
USE_HERMES = true;
|
|
548
|
+
VALIDATE_PRODUCT = YES;
|
|
549
|
+
};
|
|
550
|
+
name = Release;
|
|
551
|
+
};
|
|
552
|
+
/* End XCBuildConfiguration section */
|
|
553
|
+
|
|
554
|
+
/* Begin XCConfigurationList section */
|
|
555
|
+
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "AwesomeProject" */ = {
|
|
556
|
+
isa = XCConfigurationList;
|
|
557
|
+
buildConfigurations = (
|
|
558
|
+
13B07F941A680F5B00A75B9A /* Debug */,
|
|
559
|
+
13B07F951A680F5B00A75B9A /* Release */,
|
|
560
|
+
);
|
|
561
|
+
defaultConfigurationIsVisible = 0;
|
|
562
|
+
defaultConfigurationName = Release;
|
|
563
|
+
};
|
|
564
|
+
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "AwesomeProject" */ = {
|
|
565
|
+
isa = XCConfigurationList;
|
|
566
|
+
buildConfigurations = (
|
|
567
|
+
83CBBA201A601CBA00E9B192 /* Debug */,
|
|
568
|
+
83CBBA211A601CBA00E9B192 /* Release */,
|
|
569
|
+
);
|
|
570
|
+
defaultConfigurationIsVisible = 0;
|
|
571
|
+
defaultConfigurationName = Release;
|
|
572
|
+
};
|
|
573
|
+
/* End XCConfigurationList section */
|
|
574
|
+
};
|
|
575
|
+
rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
576
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Scheme
|
|
3
|
+
LastUpgradeVersion = "1210"
|
|
4
|
+
version = "1.3">
|
|
5
|
+
<BuildAction
|
|
6
|
+
parallelizeBuildables = "YES"
|
|
7
|
+
buildImplicitDependencies = "YES">
|
|
8
|
+
<BuildActionEntries>
|
|
9
|
+
<BuildActionEntry
|
|
10
|
+
buildForTesting = "YES"
|
|
11
|
+
buildForRunning = "YES"
|
|
12
|
+
buildForProfiling = "YES"
|
|
13
|
+
buildForArchiving = "YES"
|
|
14
|
+
buildForAnalyzing = "YES">
|
|
15
|
+
<BuildableReference
|
|
16
|
+
BuildableIdentifier = "primary"
|
|
17
|
+
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
|
|
18
|
+
BuildableName = "AwesomeProject.app"
|
|
19
|
+
BlueprintName = "AwesomeProject"
|
|
20
|
+
ReferencedContainer = "container:AwesomeProject.xcodeproj">
|
|
21
|
+
</BuildableReference>
|
|
22
|
+
</BuildActionEntry>
|
|
23
|
+
</BuildActionEntries>
|
|
24
|
+
</BuildAction>
|
|
25
|
+
<TestAction
|
|
26
|
+
buildConfiguration = "Debug"
|
|
27
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
28
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
29
|
+
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
30
|
+
<Testables>
|
|
31
|
+
<TestableReference
|
|
32
|
+
skipped = "NO">
|
|
33
|
+
<BuildableReference
|
|
34
|
+
BuildableIdentifier = "primary"
|
|
35
|
+
BlueprintIdentifier = "00E356ED1AD99517003FC87E"
|
|
36
|
+
BuildableName = "AwesomeProjectTests.xctest"
|
|
37
|
+
BlueprintName = "AwesomeProjectTests"
|
|
38
|
+
ReferencedContainer = "container:AwesomeProject.xcodeproj">
|
|
39
|
+
</BuildableReference>
|
|
40
|
+
</TestableReference>
|
|
41
|
+
</Testables>
|
|
42
|
+
</TestAction>
|
|
43
|
+
<LaunchAction
|
|
44
|
+
buildConfiguration = "Debug"
|
|
45
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
46
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
47
|
+
launchStyle = "0"
|
|
48
|
+
useCustomWorkingDirectory = "NO"
|
|
49
|
+
ignoresPersistentStateOnLaunch = "NO"
|
|
50
|
+
debugDocumentVersioning = "YES"
|
|
51
|
+
debugServiceExtension = "internal"
|
|
52
|
+
allowLocationSimulation = "YES">
|
|
53
|
+
<BuildableProductRunnable
|
|
54
|
+
runnableDebuggingMode = "0">
|
|
55
|
+
<BuildableReference
|
|
56
|
+
BuildableIdentifier = "primary"
|
|
57
|
+
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
|
|
58
|
+
BuildableName = "AwesomeProject.app"
|
|
59
|
+
BlueprintName = "AwesomeProject"
|
|
60
|
+
ReferencedContainer = "container:AwesomeProject.xcodeproj">
|
|
61
|
+
</BuildableReference>
|
|
62
|
+
</BuildableProductRunnable>
|
|
63
|
+
</LaunchAction>
|
|
64
|
+
<ProfileAction
|
|
65
|
+
buildConfiguration = "Release"
|
|
66
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
67
|
+
savedToolIdentifier = ""
|
|
68
|
+
useCustomWorkingDirectory = "NO"
|
|
69
|
+
debugDocumentVersioning = "YES">
|
|
70
|
+
<BuildableProductRunnable
|
|
71
|
+
runnableDebuggingMode = "0">
|
|
72
|
+
<BuildableReference
|
|
73
|
+
BuildableIdentifier = "primary"
|
|
74
|
+
BlueprintIdentifier = "13B07F861A680F5B00A75B9A"
|
|
75
|
+
BuildableName = "AwesomeProject.app"
|
|
76
|
+
BlueprintName = "AwesomeProject"
|
|
77
|
+
ReferencedContainer = "container:AwesomeProject.xcodeproj">
|
|
78
|
+
</BuildableReference>
|
|
79
|
+
</BuildableProductRunnable>
|
|
80
|
+
</ProfileAction>
|
|
81
|
+
<AnalyzeAction
|
|
82
|
+
buildConfiguration = "Debug">
|
|
83
|
+
</AnalyzeAction>
|
|
84
|
+
<ArchiveAction
|
|
85
|
+
buildConfiguration = "Release"
|
|
86
|
+
revealArchiveInOrganizer = "YES">
|
|
87
|
+
</ArchiveAction>
|
|
88
|
+
</Scheme>
|