create-du-app 0.1.3 → 0.1.5
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/README.md +15 -9
- package/package.json +6 -5
- package/src/generate.js +15 -2
- package/src/index.js +15 -9
- package/src/prompts.js +1 -1
- package/templates/mobile/expo/.env.example +5 -0
- package/templates/mobile/expo/.eslintrc.js +7 -0
- package/templates/mobile/expo/.prettierrc.js +7 -0
- package/templates/mobile/expo/.svgrrc.js +9 -0
- package/templates/mobile/expo/README.md +70 -7
- package/templates/mobile/expo/_gitignore +20 -0
- package/templates/mobile/expo/_package.json +60 -1
- package/templates/mobile/expo/app.json +26 -0
- package/templates/mobile/expo/babel.config.js +21 -0
- package/templates/mobile/expo/index.js +7 -0
- package/templates/mobile/expo/metro.config.js +31 -0
- package/templates/mobile/expo/src/app/App.tsx +24 -0
- package/templates/mobile/expo/src/app/app-provider.tsx +40 -0
- package/templates/mobile/expo/src/app/config/translation.ts +30 -0
- package/templates/mobile/expo/src/app/index.ts +1 -0
- package/templates/mobile/expo/src/app/navigation/app-route-type.ts +27 -0
- package/templates/mobile/expo/src/app/navigation/bottom-tabs.tsx +34 -0
- package/templates/mobile/expo/src/app/navigation/index.tsx +14 -0
- package/templates/mobile/expo/src/app/stores/auth.store.ts +33 -0
- package/templates/mobile/expo/src/app/stores/common.store.ts +19 -0
- package/templates/mobile/expo/src/app/stores/index.ts +3 -0
- package/templates/mobile/expo/src/app/stores/loading.store.ts +22 -0
- package/templates/mobile/expo/src/assets/Images/empty-list.png +0 -0
- package/templates/mobile/expo/src/assets/Images/index.ts +5 -0
- package/templates/mobile/expo/src/assets/Images/screen-bg-gradian.png +0 -0
- package/templates/mobile/expo/src/assets/i18n/en.json +28 -0
- package/templates/mobile/expo/src/assets/i18n/fr.json +28 -0
- package/templates/mobile/expo/src/assets/lotties/index.ts +3 -0
- package/templates/mobile/expo/src/assets/lotties/loading.json +1 -0
- package/templates/mobile/expo/src/assets/svgs/arrow-left.svg +3 -0
- package/templates/mobile/expo/src/assets/svgs/arrow-right.svg +3 -0
- package/templates/mobile/expo/src/assets/svgs/calendar.svg +12 -0
- package/templates/mobile/expo/src/assets/svgs/check.svg +3 -0
- package/templates/mobile/expo/src/assets/svgs/close.svg +3 -0
- package/templates/mobile/expo/src/assets/svgs/eye-hide.svg +3 -0
- package/templates/mobile/expo/src/assets/svgs/eye.svg +4 -0
- package/templates/mobile/expo/src/assets/svgs/index.ts +29 -0
- package/templates/mobile/expo/src/assets/svgs/minus.svg +3 -0
- package/templates/mobile/expo/src/assets/svgs/plus.svg +3 -0
- package/templates/mobile/expo/src/assets/svgs/search.svg +3 -0
- package/templates/mobile/expo/src/assets/svgs/toast-error.svg +5 -0
- package/templates/mobile/expo/src/assets/svgs/toast-success.svg +4 -0
- package/templates/mobile/expo/src/core/api/endpoints.ts +8 -0
- package/templates/mobile/expo/src/core/api/example.api.ts +53 -0
- package/templates/mobile/expo/src/core/api/index.ts +4 -0
- package/templates/mobile/expo/src/core/components/common/index.ts +1 -0
- package/templates/mobile/expo/src/core/components/common/list-empty/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/common/list-empty/list-empty.tsx +30 -0
- package/templates/mobile/expo/src/core/components/common/list-empty/list-empty.type.ts +5 -0
- package/templates/mobile/expo/src/core/components/forms/date-time-picker.modal.tsx +116 -0
- package/templates/mobile/expo/src/core/components/forms/hf-date-time.tsx +293 -0
- package/templates/mobile/expo/src/core/components/forms/hf-password-input.tsx +153 -0
- package/templates/mobile/expo/src/core/components/forms/hf-text-input.tsx +59 -0
- package/templates/mobile/expo/src/core/components/forms/hf-time-picker.tsx +116 -0
- package/templates/mobile/expo/src/core/components/forms/index.ts +4 -0
- package/templates/mobile/expo/src/core/components/index.ts +5 -0
- package/templates/mobile/expo/src/core/components/loading/index.ts +1 -0
- package/templates/mobile/expo/src/core/components/loading/loading-app/index.ts +1 -0
- package/templates/mobile/expo/src/core/components/loading/loading-app/loading-app.tsx +50 -0
- package/templates/mobile/expo/src/core/components/offline/index.ts +1 -0
- package/templates/mobile/expo/src/core/components/offline/offline-banner.tsx +186 -0
- package/templates/mobile/expo/src/core/components/screen/index.ts +1 -0
- package/templates/mobile/expo/src/core/components/screen/screen-container/index.ts +1 -0
- package/templates/mobile/expo/src/core/components/screen/screen-container/screen-container.tsx +248 -0
- package/templates/mobile/expo/src/core/components/splash/index.ts +1 -0
- package/templates/mobile/expo/src/core/components/splash/splash-overlay/index.ts +1 -0
- package/templates/mobile/expo/src/core/components/splash/splash-overlay/splash-overlay.tsx +93 -0
- package/templates/mobile/expo/src/core/components/ui/animated-list-item/animated-list-item.tsx +48 -0
- package/templates/mobile/expo/src/core/components/ui/animated-list-item/animated-list-item.type.ts +10 -0
- package/templates/mobile/expo/src/core/components/ui/animated-list-item/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/app-image/app-image.tsx +101 -0
- package/templates/mobile/expo/src/core/components/ui/app-image/app-image.type.ts +19 -0
- package/templates/mobile/expo/src/core/components/ui/app-image/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/asset-placeholder/asset-placeholder.tsx +76 -0
- package/templates/mobile/expo/src/core/components/ui/asset-placeholder/index.ts +1 -0
- package/templates/mobile/expo/src/core/components/ui/avatar-image/avatar-image.tsx +90 -0
- package/templates/mobile/expo/src/core/components/ui/avatar-image/index.ts +1 -0
- package/templates/mobile/expo/src/core/components/ui/bottom-sheet/bottom-sheet.tsx +145 -0
- package/templates/mobile/expo/src/core/components/ui/bottom-sheet/bottom-sheet.type.ts +10 -0
- package/templates/mobile/expo/src/core/components/ui/bottom-sheet/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/button/button.style.ts +146 -0
- package/templates/mobile/expo/src/core/components/ui/button/button.tsx +97 -0
- package/templates/mobile/expo/src/core/components/ui/button/button.type.ts +47 -0
- package/templates/mobile/expo/src/core/components/ui/button/index.ts +4 -0
- package/templates/mobile/expo/src/core/components/ui/checkbox/checkbox.tsx +127 -0
- package/templates/mobile/expo/src/core/components/ui/checkbox/checkbox.type.ts +24 -0
- package/templates/mobile/expo/src/core/components/ui/checkbox/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/collapsible-section/collapsible-section.tsx +141 -0
- package/templates/mobile/expo/src/core/components/ui/collapsible-section/collapsible-section.type.ts +10 -0
- package/templates/mobile/expo/src/core/components/ui/collapsible-section/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/components.registry.json +313 -0
- package/templates/mobile/expo/src/core/components/ui/field/field-frame.tsx +62 -0
- package/templates/mobile/expo/src/core/components/ui/field/field.shared.ts +31 -0
- package/templates/mobile/expo/src/core/components/ui/header/header.tsx +196 -0
- package/templates/mobile/expo/src/core/components/ui/header/header.type.ts +30 -0
- package/templates/mobile/expo/src/core/components/ui/header/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/icon-button/icon-button.style.ts +23 -0
- package/templates/mobile/expo/src/core/components/ui/icon-button/icon-button.tsx +66 -0
- package/templates/mobile/expo/src/core/components/ui/icon-button/icon-button.type.ts +25 -0
- package/templates/mobile/expo/src/core/components/ui/icon-button/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/image-slider/image-slider.tsx +107 -0
- package/templates/mobile/expo/src/core/components/ui/image-slider/image-slider.type.ts +10 -0
- package/templates/mobile/expo/src/core/components/ui/image-slider/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/index.ts +25 -0
- package/templates/mobile/expo/src/core/components/ui/label/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/label/label.tsx +36 -0
- package/templates/mobile/expo/src/core/components/ui/label/label.type.ts +12 -0
- package/templates/mobile/expo/src/core/components/ui/modal/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/modal/modal.tsx +62 -0
- package/templates/mobile/expo/src/core/components/ui/modal/modal.type.ts +11 -0
- package/templates/mobile/expo/src/core/components/ui/otp-input/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/otp-input/otp-input.tsx +129 -0
- package/templates/mobile/expo/src/core/components/ui/otp-input/otp-input.type.ts +20 -0
- package/templates/mobile/expo/src/core/components/ui/page-dots/index.ts +1 -0
- package/templates/mobile/expo/src/core/components/ui/page-dots/page-dots.tsx +60 -0
- package/templates/mobile/expo/src/core/components/ui/radio/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/radio/radio.tsx +121 -0
- package/templates/mobile/expo/src/core/components/ui/radio/radio.type.ts +20 -0
- package/templates/mobile/expo/src/core/components/ui/screen/index.ts +1 -0
- package/templates/mobile/expo/src/core/components/ui/screen/screen-gradient.tsx +33 -0
- package/templates/mobile/expo/src/core/components/ui/search-box/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/search-box/search-box.tsx +162 -0
- package/templates/mobile/expo/src/core/components/ui/search-box/search-box.type.ts +26 -0
- package/templates/mobile/expo/src/core/components/ui/segmented-control/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/segmented-control/segmented-control.tsx +86 -0
- package/templates/mobile/expo/src/core/components/ui/segmented-control/segmented-control.type.ts +22 -0
- package/templates/mobile/expo/src/core/components/ui/skeleton/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/skeleton/skeleton.tsx +106 -0
- package/templates/mobile/expo/src/core/components/ui/skeleton/skeleton.type.ts +8 -0
- package/templates/mobile/expo/src/core/components/ui/success-state/index.ts +1 -0
- package/templates/mobile/expo/src/core/components/ui/success-state/success-state.tsx +68 -0
- package/templates/mobile/expo/src/core/components/ui/tabs/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/tabs/tabs.tsx +273 -0
- package/templates/mobile/expo/src/core/components/ui/tabs/tabs.type.ts +21 -0
- package/templates/mobile/expo/src/core/components/ui/tag-input/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/tag-input/tag-input.tsx +146 -0
- package/templates/mobile/expo/src/core/components/ui/tag-input/tag-input.type.ts +22 -0
- package/templates/mobile/expo/src/core/components/ui/text-area/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/text-area/text-area.tsx +90 -0
- package/templates/mobile/expo/src/core/components/ui/text-area/text-area.type.ts +20 -0
- package/templates/mobile/expo/src/core/components/ui/text-field/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/text-field/text-field.tsx +116 -0
- package/templates/mobile/expo/src/core/components/ui/text-field/text-field.type.ts +21 -0
- package/templates/mobile/expo/src/core/components/ui/toggle/index.ts +2 -0
- package/templates/mobile/expo/src/core/components/ui/toggle/toggle.tsx +110 -0
- package/templates/mobile/expo/src/core/components/ui/toggle/toggle.type.ts +19 -0
- package/templates/mobile/expo/src/core/constants/external-urls.constant.ts +5 -0
- package/templates/mobile/expo/src/core/constants/hard-data.constant.ts +0 -0
- package/templates/mobile/expo/src/core/constants/index.ts +2 -0
- package/templates/mobile/expo/src/core/constants/type.constant.ts +3 -0
- package/templates/mobile/expo/src/core/context/index.ts +1 -0
- package/templates/mobile/expo/src/core/context/shared-transition-context.tsx +35 -0
- package/templates/mobile/expo/src/core/hook/index.ts +8 -0
- package/templates/mobile/expo/src/core/hook/useActiveRouteName.ts +63 -0
- package/templates/mobile/expo/src/core/hook/useAppNavigation.tsx +7 -0
- package/templates/mobile/expo/src/core/hook/useBottomInset.tsx +26 -0
- package/templates/mobile/expo/src/core/hook/useDebounce.tsx +16 -0
- package/templates/mobile/expo/src/core/hook/useEndReached.tsx +46 -0
- package/templates/mobile/expo/src/core/hook/useManualRefetch.ts +56 -0
- package/templates/mobile/expo/src/core/hook/useNetworkStatus.ts +68 -0
- package/templates/mobile/expo/src/core/hook/useTimeout.tsx +30 -0
- package/templates/mobile/expo/src/core/index.ts +7 -0
- package/templates/mobile/expo/src/core/services/api.service.ts +230 -0
- package/templates/mobile/expo/src/core/services/device-id.service.ts +37 -0
- package/templates/mobile/expo/src/core/services/index.ts +3 -0
- package/templates/mobile/expo/src/core/services/session-end.bridge.ts +26 -0
- package/templates/mobile/expo/src/core/theme/dark.theme.ts +10 -0
- package/templates/mobile/expo/src/core/theme/index.ts +5 -0
- package/templates/mobile/expo/src/core/theme/light.theme.ts +44 -0
- package/templates/mobile/expo/src/core/theme/theme-context.tsx +82 -0
- package/templates/mobile/expo/src/core/theme/theme.types.ts +26 -0
- package/templates/mobile/expo/src/core/theme/use-themed-styles.ts +25 -0
- package/templates/mobile/expo/src/core/utils/color.util.tsx +198 -0
- package/templates/mobile/expo/src/core/utils/date.util.ts +97 -0
- package/templates/mobile/expo/src/core/utils/device-locale.util.ts +24 -0
- package/templates/mobile/expo/src/core/utils/emitter/index.ts +161 -0
- package/templates/mobile/expo/src/core/utils/emitter/type.ts +40 -0
- package/templates/mobile/expo/src/core/utils/enum.util.tsx +15 -0
- package/templates/mobile/expo/src/core/utils/font.util.tsx +42 -0
- package/templates/mobile/expo/src/core/utils/func.util.ts +48 -0
- package/templates/mobile/expo/src/core/utils/greeting.util.ts +20 -0
- package/templates/mobile/expo/src/core/utils/image-format.util.ts +117 -0
- package/templates/mobile/expo/src/core/utils/image-picker.util.ts +63 -0
- package/templates/mobile/expo/src/core/utils/index.ts +18 -0
- package/templates/mobile/expo/src/core/utils/linking.util.ts +16 -0
- package/templates/mobile/expo/src/core/utils/navigation.util.tsx +100 -0
- package/templates/mobile/expo/src/core/utils/number-format.ts +28 -0
- package/templates/mobile/expo/src/core/utils/query-client.util.ts +35 -0
- package/templates/mobile/expo/src/core/utils/query-persister.util.ts +31 -0
- package/templates/mobile/expo/src/core/utils/schema.util.tsx +2713 -0
- package/templates/mobile/expo/src/core/utils/size.util.tsx +74 -0
- package/templates/mobile/expo/src/core/utils/storage.util.tsx +53 -0
- package/templates/mobile/expo/src/core/utils/toast.util.tsx +151 -0
- package/templates/mobile/expo/src/core/utils/translator.util.tsx +23 -0
- package/templates/mobile/expo/src/core/utils/typography.util.tsx +69 -0
- package/templates/mobile/expo/src/core/utils/validate.util.tsx +13 -0
- package/templates/mobile/expo/src/declarations.d.ts +54 -0
- package/templates/mobile/expo/src/modules/home/home.screen.tsx +110 -0
- package/templates/mobile/expo/src/modules/profile/profile.screen.tsx +29 -0
- package/templates/mobile/expo/src/scripts/link-fonts.js +60 -0
- package/templates/mobile/expo/src/scripts/sync-images.js +56 -0
- package/templates/mobile/expo/src/scripts/sync-svgs.js +50 -0
- package/templates/mobile/expo/src/types/models.d.ts +24 -0
- package/templates/mobile/expo/tsconfig.json +19 -0
- package/templates/mobile/rn/.bundle/config +2 -0
- package/templates/mobile/rn/.env.example +5 -0
- package/templates/mobile/rn/.eslintrc.js +7 -0
- package/templates/mobile/rn/.prettierrc.js +7 -0
- package/templates/mobile/rn/.svgrrc.js +9 -0
- package/templates/mobile/rn/.watchmanconfig +1 -0
- package/templates/mobile/rn/Gemfile +17 -0
- package/templates/mobile/rn/README.md +72 -7
- package/templates/mobile/rn/_gitignore +24 -0
- package/templates/mobile/rn/_package.json +69 -1
- package/templates/mobile/rn/android/app/build.gradle +126 -0
- package/templates/mobile/rn/android/app/debug.keystore +0 -0
- package/templates/mobile/rn/android/app/proguard-rules.pro +10 -0
- package/templates/mobile/rn/android/app/src/main/AndroidManifest.xml +27 -0
- package/templates/mobile/rn/android/app/src/main/java/com/dumobile/MainActivity.kt +22 -0
- package/templates/mobile/rn/android/app/src/main/java/com/dumobile/MainApplication.kt +27 -0
- package/templates/mobile/rn/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
- package/templates/mobile/rn/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/templates/mobile/rn/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/templates/mobile/rn/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/templates/mobile/rn/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/templates/mobile/rn/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/templates/mobile/rn/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/templates/mobile/rn/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/templates/mobile/rn/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/templates/mobile/rn/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/templates/mobile/rn/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/templates/mobile/rn/android/app/src/main/res/values/strings.xml +3 -0
- package/templates/mobile/rn/android/app/src/main/res/values/styles.xml +9 -0
- package/templates/mobile/rn/android/build.gradle +21 -0
- package/templates/mobile/rn/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/templates/mobile/rn/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/templates/mobile/rn/android/gradle.properties +44 -0
- package/templates/mobile/rn/android/gradlew +248 -0
- package/templates/mobile/rn/android/gradlew.bat +98 -0
- package/templates/mobile/rn/android/settings.gradle +21 -0
- package/templates/mobile/rn/app.json +4 -0
- package/templates/mobile/rn/babel.config.js +18 -0
- package/templates/mobile/rn/index.js +10 -0
- package/templates/mobile/rn/ios/.xcode.env +11 -0
- package/templates/mobile/rn/ios/DuMobile/AppDelegate.swift +48 -0
- package/templates/mobile/rn/ios/DuMobile/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- package/templates/mobile/rn/ios/DuMobile/Images.xcassets/Contents.json +6 -0
- package/templates/mobile/rn/ios/DuMobile/Info.plist +59 -0
- package/templates/mobile/rn/ios/DuMobile/LaunchScreen.storyboard +47 -0
- package/templates/mobile/rn/ios/DuMobile/PrivacyInfo.xcprivacy +37 -0
- package/templates/mobile/rn/ios/DuMobile.xcodeproj/project.pbxproj +475 -0
- package/templates/mobile/rn/ios/DuMobile.xcodeproj/xcshareddata/xcschemes/DuMobile.xcscheme +88 -0
- package/templates/mobile/rn/ios/Podfile +34 -0
- package/templates/mobile/rn/metro.config.js +33 -0
- package/templates/mobile/rn/src/app/App.tsx +24 -0
- package/templates/mobile/rn/src/app/app-provider.tsx +41 -0
- package/templates/mobile/rn/src/app/config/translation.ts +29 -0
- package/templates/mobile/rn/src/app/index.ts +1 -0
- package/templates/mobile/rn/src/app/navigation/app-route-type.ts +27 -0
- package/templates/mobile/rn/src/app/navigation/bottom-tabs.tsx +34 -0
- package/templates/mobile/rn/src/app/navigation/index.tsx +14 -0
- package/templates/mobile/rn/src/app/stores/auth.store.ts +33 -0
- package/templates/mobile/rn/src/app/stores/common.store.ts +19 -0
- package/templates/mobile/rn/src/app/stores/index.ts +3 -0
- package/templates/mobile/rn/src/app/stores/loading.store.ts +22 -0
- package/templates/mobile/rn/src/assets/Images/empty-list.png +0 -0
- package/templates/mobile/rn/src/assets/Images/index.ts +5 -0
- package/templates/mobile/rn/src/assets/Images/screen-bg-gradian.png +0 -0
- package/templates/mobile/rn/src/assets/i18n/en.json +22 -0
- package/templates/mobile/rn/src/assets/i18n/fr.json +22 -0
- package/templates/mobile/rn/src/assets/lotties/index.ts +3 -0
- package/templates/mobile/rn/src/assets/lotties/loading.json +1 -0
- package/templates/mobile/rn/src/assets/svgs/arrow-left.svg +3 -0
- package/templates/mobile/rn/src/assets/svgs/arrow-right.svg +3 -0
- package/templates/mobile/rn/src/assets/svgs/calendar.svg +12 -0
- package/templates/mobile/rn/src/assets/svgs/check.svg +3 -0
- package/templates/mobile/rn/src/assets/svgs/close.svg +3 -0
- package/templates/mobile/rn/src/assets/svgs/eye-hide.svg +3 -0
- package/templates/mobile/rn/src/assets/svgs/eye.svg +4 -0
- package/templates/mobile/rn/src/assets/svgs/index.ts +29 -0
- package/templates/mobile/rn/src/assets/svgs/minus.svg +3 -0
- package/templates/mobile/rn/src/assets/svgs/plus.svg +3 -0
- package/templates/mobile/rn/src/assets/svgs/search.svg +3 -0
- package/templates/mobile/rn/src/assets/svgs/toast-error.svg +5 -0
- package/templates/mobile/rn/src/assets/svgs/toast-success.svg +4 -0
- package/templates/mobile/rn/src/core/api/endpoints.ts +8 -0
- package/templates/mobile/rn/src/core/api/example.api.ts +53 -0
- package/templates/mobile/rn/src/core/api/index.ts +4 -0
- package/templates/mobile/rn/src/core/components/common/index.ts +1 -0
- package/templates/mobile/rn/src/core/components/common/list-empty/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/common/list-empty/list-empty.tsx +30 -0
- package/templates/mobile/rn/src/core/components/common/list-empty/list-empty.type.ts +5 -0
- package/templates/mobile/rn/src/core/components/forms/hf-date-time.tsx +301 -0
- package/templates/mobile/rn/src/core/components/forms/hf-password-input.tsx +153 -0
- package/templates/mobile/rn/src/core/components/forms/hf-text-input.tsx +59 -0
- package/templates/mobile/rn/src/core/components/forms/hf-time-picker.tsx +117 -0
- package/templates/mobile/rn/src/core/components/forms/index.ts +4 -0
- package/templates/mobile/rn/src/core/components/index.ts +5 -0
- package/templates/mobile/rn/src/core/components/loading/index.ts +1 -0
- package/templates/mobile/rn/src/core/components/loading/loading-app/index.ts +1 -0
- package/templates/mobile/rn/src/core/components/loading/loading-app/loading-app.tsx +50 -0
- package/templates/mobile/rn/src/core/components/offline/index.ts +1 -0
- package/templates/mobile/rn/src/core/components/offline/offline-banner.tsx +186 -0
- package/templates/mobile/rn/src/core/components/screen/index.ts +1 -0
- package/templates/mobile/rn/src/core/components/screen/screen-container/index.ts +1 -0
- package/templates/mobile/rn/src/core/components/screen/screen-container/screen-container.tsx +252 -0
- package/templates/mobile/rn/src/core/components/splash/index.ts +1 -0
- package/templates/mobile/rn/src/core/components/splash/splash-overlay/index.ts +1 -0
- package/templates/mobile/rn/src/core/components/splash/splash-overlay/splash-overlay.tsx +93 -0
- package/templates/mobile/rn/src/core/components/ui/animated-list-item/animated-list-item.tsx +48 -0
- package/templates/mobile/rn/src/core/components/ui/animated-list-item/animated-list-item.type.ts +10 -0
- package/templates/mobile/rn/src/core/components/ui/animated-list-item/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/app-image/app-image.tsx +104 -0
- package/templates/mobile/rn/src/core/components/ui/app-image/app-image.type.ts +19 -0
- package/templates/mobile/rn/src/core/components/ui/app-image/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/asset-placeholder/asset-placeholder.tsx +76 -0
- package/templates/mobile/rn/src/core/components/ui/asset-placeholder/index.ts +1 -0
- package/templates/mobile/rn/src/core/components/ui/avatar-image/avatar-image.tsx +90 -0
- package/templates/mobile/rn/src/core/components/ui/avatar-image/index.ts +1 -0
- package/templates/mobile/rn/src/core/components/ui/bottom-sheet/bottom-sheet.tsx +145 -0
- package/templates/mobile/rn/src/core/components/ui/bottom-sheet/bottom-sheet.type.ts +10 -0
- package/templates/mobile/rn/src/core/components/ui/bottom-sheet/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/button/button.style.ts +146 -0
- package/templates/mobile/rn/src/core/components/ui/button/button.tsx +97 -0
- package/templates/mobile/rn/src/core/components/ui/button/button.type.ts +47 -0
- package/templates/mobile/rn/src/core/components/ui/button/index.ts +4 -0
- package/templates/mobile/rn/src/core/components/ui/checkbox/checkbox.tsx +127 -0
- package/templates/mobile/rn/src/core/components/ui/checkbox/checkbox.type.ts +24 -0
- package/templates/mobile/rn/src/core/components/ui/checkbox/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/collapsible-section/collapsible-section.tsx +141 -0
- package/templates/mobile/rn/src/core/components/ui/collapsible-section/collapsible-section.type.ts +10 -0
- package/templates/mobile/rn/src/core/components/ui/collapsible-section/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/components.registry.json +313 -0
- package/templates/mobile/rn/src/core/components/ui/field/field-frame.tsx +62 -0
- package/templates/mobile/rn/src/core/components/ui/field/field.shared.ts +31 -0
- package/templates/mobile/rn/src/core/components/ui/header/header.tsx +196 -0
- package/templates/mobile/rn/src/core/components/ui/header/header.type.ts +30 -0
- package/templates/mobile/rn/src/core/components/ui/header/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/icon-button/icon-button.style.ts +23 -0
- package/templates/mobile/rn/src/core/components/ui/icon-button/icon-button.tsx +66 -0
- package/templates/mobile/rn/src/core/components/ui/icon-button/icon-button.type.ts +25 -0
- package/templates/mobile/rn/src/core/components/ui/icon-button/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/image-slider/image-slider.tsx +107 -0
- package/templates/mobile/rn/src/core/components/ui/image-slider/image-slider.type.ts +10 -0
- package/templates/mobile/rn/src/core/components/ui/image-slider/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/index.ts +25 -0
- package/templates/mobile/rn/src/core/components/ui/label/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/label/label.tsx +36 -0
- package/templates/mobile/rn/src/core/components/ui/label/label.type.ts +12 -0
- package/templates/mobile/rn/src/core/components/ui/modal/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/modal/modal.tsx +62 -0
- package/templates/mobile/rn/src/core/components/ui/modal/modal.type.ts +11 -0
- package/templates/mobile/rn/src/core/components/ui/otp-input/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/otp-input/otp-input.tsx +129 -0
- package/templates/mobile/rn/src/core/components/ui/otp-input/otp-input.type.ts +20 -0
- package/templates/mobile/rn/src/core/components/ui/page-dots/index.ts +1 -0
- package/templates/mobile/rn/src/core/components/ui/page-dots/page-dots.tsx +60 -0
- package/templates/mobile/rn/src/core/components/ui/radio/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/radio/radio.tsx +121 -0
- package/templates/mobile/rn/src/core/components/ui/radio/radio.type.ts +20 -0
- package/templates/mobile/rn/src/core/components/ui/screen/index.ts +1 -0
- package/templates/mobile/rn/src/core/components/ui/screen/screen-gradient.tsx +33 -0
- package/templates/mobile/rn/src/core/components/ui/search-box/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/search-box/search-box.tsx +162 -0
- package/templates/mobile/rn/src/core/components/ui/search-box/search-box.type.ts +26 -0
- package/templates/mobile/rn/src/core/components/ui/segmented-control/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/segmented-control/segmented-control.tsx +86 -0
- package/templates/mobile/rn/src/core/components/ui/segmented-control/segmented-control.type.ts +22 -0
- package/templates/mobile/rn/src/core/components/ui/skeleton/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/skeleton/skeleton.tsx +106 -0
- package/templates/mobile/rn/src/core/components/ui/skeleton/skeleton.type.ts +8 -0
- package/templates/mobile/rn/src/core/components/ui/success-state/index.ts +1 -0
- package/templates/mobile/rn/src/core/components/ui/success-state/success-state.tsx +68 -0
- package/templates/mobile/rn/src/core/components/ui/tabs/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/tabs/tabs.tsx +273 -0
- package/templates/mobile/rn/src/core/components/ui/tabs/tabs.type.ts +21 -0
- package/templates/mobile/rn/src/core/components/ui/tag-input/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/tag-input/tag-input.tsx +146 -0
- package/templates/mobile/rn/src/core/components/ui/tag-input/tag-input.type.ts +22 -0
- package/templates/mobile/rn/src/core/components/ui/text-area/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/text-area/text-area.tsx +90 -0
- package/templates/mobile/rn/src/core/components/ui/text-area/text-area.type.ts +20 -0
- package/templates/mobile/rn/src/core/components/ui/text-field/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/text-field/text-field.tsx +116 -0
- package/templates/mobile/rn/src/core/components/ui/text-field/text-field.type.ts +21 -0
- package/templates/mobile/rn/src/core/components/ui/toggle/index.ts +2 -0
- package/templates/mobile/rn/src/core/components/ui/toggle/toggle.tsx +110 -0
- package/templates/mobile/rn/src/core/components/ui/toggle/toggle.type.ts +19 -0
- package/templates/mobile/rn/src/core/constants/external-urls.constant.ts +5 -0
- package/templates/mobile/rn/src/core/constants/hard-data.constant.ts +0 -0
- package/templates/mobile/rn/src/core/constants/index.ts +2 -0
- package/templates/mobile/rn/src/core/constants/type.constant.ts +3 -0
- package/templates/mobile/rn/src/core/context/index.ts +1 -0
- package/templates/mobile/rn/src/core/context/shared-transition-context.tsx +35 -0
- package/templates/mobile/rn/src/core/hook/index.ts +8 -0
- package/templates/mobile/rn/src/core/hook/useActiveRouteName.ts +63 -0
- package/templates/mobile/rn/src/core/hook/useAppNavigation.tsx +7 -0
- package/templates/mobile/rn/src/core/hook/useBottomInset.tsx +26 -0
- package/templates/mobile/rn/src/core/hook/useDebounce.tsx +16 -0
- package/templates/mobile/rn/src/core/hook/useEndReached.tsx +46 -0
- package/templates/mobile/rn/src/core/hook/useManualRefetch.ts +56 -0
- package/templates/mobile/rn/src/core/hook/useNetworkStatus.ts +68 -0
- package/templates/mobile/rn/src/core/hook/useTimeout.tsx +30 -0
- package/templates/mobile/rn/src/core/index.ts +7 -0
- package/templates/mobile/rn/src/core/services/api.service.ts +230 -0
- package/templates/mobile/rn/src/core/services/device-id.service.ts +23 -0
- package/templates/mobile/rn/src/core/services/index.ts +3 -0
- package/templates/mobile/rn/src/core/services/session-end.bridge.ts +26 -0
- package/templates/mobile/rn/src/core/theme/dark.theme.ts +10 -0
- package/templates/mobile/rn/src/core/theme/index.ts +5 -0
- package/templates/mobile/rn/src/core/theme/light.theme.ts +44 -0
- package/templates/mobile/rn/src/core/theme/theme-context.tsx +82 -0
- package/templates/mobile/rn/src/core/theme/theme.types.ts +26 -0
- package/templates/mobile/rn/src/core/theme/use-themed-styles.ts +25 -0
- package/templates/mobile/rn/src/core/utils/color.util.tsx +198 -0
- package/templates/mobile/rn/src/core/utils/date.util.ts +97 -0
- package/templates/mobile/rn/src/core/utils/device-locale.util.ts +22 -0
- package/templates/mobile/rn/src/core/utils/emitter/index.ts +161 -0
- package/templates/mobile/rn/src/core/utils/emitter/type.ts +40 -0
- package/templates/mobile/rn/src/core/utils/enum.util.tsx +15 -0
- package/templates/mobile/rn/src/core/utils/font.util.tsx +42 -0
- package/templates/mobile/rn/src/core/utils/func.util.ts +48 -0
- package/templates/mobile/rn/src/core/utils/greeting.util.ts +20 -0
- package/templates/mobile/rn/src/core/utils/image-format.util.ts +117 -0
- package/templates/mobile/rn/src/core/utils/image-picker.util.ts +84 -0
- package/templates/mobile/rn/src/core/utils/index.ts +18 -0
- package/templates/mobile/rn/src/core/utils/linking.util.ts +16 -0
- package/templates/mobile/rn/src/core/utils/navigation.util.tsx +100 -0
- package/templates/mobile/rn/src/core/utils/number-format.ts +28 -0
- package/templates/mobile/rn/src/core/utils/query-client.util.ts +35 -0
- package/templates/mobile/rn/src/core/utils/query-persister.util.ts +36 -0
- package/templates/mobile/rn/src/core/utils/schema.util.tsx +2713 -0
- package/templates/mobile/rn/src/core/utils/size.util.tsx +74 -0
- package/templates/mobile/rn/src/core/utils/storage.util.tsx +53 -0
- package/templates/mobile/rn/src/core/utils/toast.util.tsx +151 -0
- package/templates/mobile/rn/src/core/utils/translator.util.tsx +23 -0
- package/templates/mobile/rn/src/core/utils/typography.util.tsx +69 -0
- package/templates/mobile/rn/src/core/utils/validate.util.tsx +13 -0
- package/templates/mobile/rn/src/declarations.d.ts +54 -0
- package/templates/mobile/rn/src/modules/home/home.screen.tsx +67 -0
- package/templates/mobile/rn/src/modules/profile/profile.screen.tsx +29 -0
- package/templates/mobile/rn/src/scripts/link-fonts.js +60 -0
- package/templates/mobile/rn/src/scripts/sync-images.js +56 -0
- package/templates/mobile/rn/src/scripts/sync-svgs.js +50 -0
- package/templates/mobile/rn/src/types/models.d.ts +24 -0
- package/templates/mobile/rn/tsconfig.json +21 -0
- package/templates/shared/src/api-endpoints.ts +8 -0
- package/templates/shared/src/enums.ts +34 -0
- package/templates/shared/src/external-urls.ts +5 -0
- package/templates/shared/src/index.ts +6 -3
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>CADisableMinimumFrameDurationOnPhone</key>
|
|
6
|
+
<true/>
|
|
7
|
+
<key>CFBundleDevelopmentRegion</key>
|
|
8
|
+
<string>en</string>
|
|
9
|
+
<key>CFBundleDisplayName</key>
|
|
10
|
+
<string>DuMobile</string>
|
|
11
|
+
<key>CFBundleExecutable</key>
|
|
12
|
+
<string>$(EXECUTABLE_NAME)</string>
|
|
13
|
+
<key>CFBundleIdentifier</key>
|
|
14
|
+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
|
15
|
+
<key>CFBundleInfoDictionaryVersion</key>
|
|
16
|
+
<string>6.0</string>
|
|
17
|
+
<key>CFBundleName</key>
|
|
18
|
+
<string>$(PRODUCT_NAME)</string>
|
|
19
|
+
<key>CFBundlePackageType</key>
|
|
20
|
+
<string>APPL</string>
|
|
21
|
+
<key>CFBundleShortVersionString</key>
|
|
22
|
+
<string>$(MARKETING_VERSION)</string>
|
|
23
|
+
<key>CFBundleSignature</key>
|
|
24
|
+
<string>????</string>
|
|
25
|
+
<key>CFBundleVersion</key>
|
|
26
|
+
<string>$(CURRENT_PROJECT_VERSION)</string>
|
|
27
|
+
<key>LSRequiresIPhoneOS</key>
|
|
28
|
+
<true/>
|
|
29
|
+
<key>NSAppTransportSecurity</key>
|
|
30
|
+
<dict>
|
|
31
|
+
<!-- Do not change NSAllowsArbitraryLoads to true, or you will risk app rejection! -->
|
|
32
|
+
<key>NSAllowsArbitraryLoads</key>
|
|
33
|
+
<false/>
|
|
34
|
+
<key>NSAllowsLocalNetworking</key>
|
|
35
|
+
<true/>
|
|
36
|
+
</dict>
|
|
37
|
+
<key>NSLocationWhenInUseUsageDescription</key>
|
|
38
|
+
<string></string>
|
|
39
|
+
<key>UILaunchStoryboardName</key>
|
|
40
|
+
<string>LaunchScreen</string>
|
|
41
|
+
<key>UIRequiredDeviceCapabilities</key>
|
|
42
|
+
<array>
|
|
43
|
+
<string>arm64</string>
|
|
44
|
+
</array>
|
|
45
|
+
<key>UISupportedInterfaceOrientations</key>
|
|
46
|
+
<array>
|
|
47
|
+
<string>UIInterfaceOrientationPortrait</string>
|
|
48
|
+
</array>
|
|
49
|
+
<key>UISupportedInterfaceOrientations~ipad</key>
|
|
50
|
+
<array>
|
|
51
|
+
<string>UIInterfaceOrientationLandscapeLeft</string>
|
|
52
|
+
<string>UIInterfaceOrientationLandscapeRight</string>
|
|
53
|
+
<string>UIInterfaceOrientationPortrait</string>
|
|
54
|
+
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
|
55
|
+
</array>
|
|
56
|
+
<key>UIViewControllerBasedStatusBarAppearance</key>
|
|
57
|
+
<false/>
|
|
58
|
+
</dict>
|
|
59
|
+
</plist>
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="15702" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
|
|
3
|
+
<device id="retina4_7" orientation="portrait" appearance="light"/>
|
|
4
|
+
<dependencies>
|
|
5
|
+
<deployment identifier="iOS"/>
|
|
6
|
+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15704"/>
|
|
7
|
+
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
|
|
8
|
+
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
|
9
|
+
</dependencies>
|
|
10
|
+
<scenes>
|
|
11
|
+
<!--View Controller-->
|
|
12
|
+
<scene sceneID="EHf-IW-A2E">
|
|
13
|
+
<objects>
|
|
14
|
+
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
|
|
15
|
+
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
|
|
16
|
+
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
|
|
17
|
+
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
|
18
|
+
<subviews>
|
|
19
|
+
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="DuMobile" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="GJd-Yh-RWb">
|
|
20
|
+
<rect key="frame" x="0.0" y="202" width="375" height="43"/>
|
|
21
|
+
<fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
|
|
22
|
+
<nil key="highlightedColor"/>
|
|
23
|
+
</label>
|
|
24
|
+
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Powered by React Native" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="MN2-I3-ftu">
|
|
25
|
+
<rect key="frame" x="0.0" y="626" width="375" height="21"/>
|
|
26
|
+
<fontDescription key="fontDescription" type="system" pointSize="17"/>
|
|
27
|
+
<nil key="highlightedColor"/>
|
|
28
|
+
</label>
|
|
29
|
+
</subviews>
|
|
30
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/>
|
|
31
|
+
<constraints>
|
|
32
|
+
<constraint firstItem="Bcu-3y-fUS" firstAttribute="bottom" secondItem="MN2-I3-ftu" secondAttribute="bottom" constant="20" id="OZV-Vh-mqD"/>
|
|
33
|
+
<constraint firstItem="Bcu-3y-fUS" firstAttribute="centerX" secondItem="GJd-Yh-RWb" secondAttribute="centerX" id="Q3B-4B-g5h"/>
|
|
34
|
+
<constraint firstItem="MN2-I3-ftu" firstAttribute="centerX" secondItem="Bcu-3y-fUS" secondAttribute="centerX" id="akx-eg-2ui"/>
|
|
35
|
+
<constraint firstItem="MN2-I3-ftu" firstAttribute="leading" secondItem="Bcu-3y-fUS" secondAttribute="leading" id="i1E-0Y-4RG"/>
|
|
36
|
+
<constraint firstItem="GJd-Yh-RWb" firstAttribute="centerY" secondItem="Ze5-6b-2t3" secondAttribute="bottom" multiplier="1/3" constant="1" id="moa-c2-u7t"/>
|
|
37
|
+
<constraint firstItem="GJd-Yh-RWb" firstAttribute="leading" secondItem="Bcu-3y-fUS" secondAttribute="leading" symbolic="YES" id="x7j-FC-K8j"/>
|
|
38
|
+
</constraints>
|
|
39
|
+
<viewLayoutGuide key="safeArea" id="Bcu-3y-fUS"/>
|
|
40
|
+
</view>
|
|
41
|
+
</viewController>
|
|
42
|
+
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
|
|
43
|
+
</objects>
|
|
44
|
+
<point key="canvasLocation" x="52.173913043478265" y="375"/>
|
|
45
|
+
</scene>
|
|
46
|
+
</scenes>
|
|
47
|
+
</document>
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>NSPrivacyAccessedAPITypes</key>
|
|
6
|
+
<array>
|
|
7
|
+
<dict>
|
|
8
|
+
<key>NSPrivacyAccessedAPIType</key>
|
|
9
|
+
<string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
|
|
10
|
+
<key>NSPrivacyAccessedAPITypeReasons</key>
|
|
11
|
+
<array>
|
|
12
|
+
<string>C617.1</string>
|
|
13
|
+
</array>
|
|
14
|
+
</dict>
|
|
15
|
+
<dict>
|
|
16
|
+
<key>NSPrivacyAccessedAPIType</key>
|
|
17
|
+
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
|
|
18
|
+
<key>NSPrivacyAccessedAPITypeReasons</key>
|
|
19
|
+
<array>
|
|
20
|
+
<string>CA92.1</string>
|
|
21
|
+
</array>
|
|
22
|
+
</dict>
|
|
23
|
+
<dict>
|
|
24
|
+
<key>NSPrivacyAccessedAPIType</key>
|
|
25
|
+
<string>NSPrivacyAccessedAPICategorySystemBootTime</string>
|
|
26
|
+
<key>NSPrivacyAccessedAPITypeReasons</key>
|
|
27
|
+
<array>
|
|
28
|
+
<string>35F9.1</string>
|
|
29
|
+
</array>
|
|
30
|
+
</dict>
|
|
31
|
+
</array>
|
|
32
|
+
<key>NSPrivacyCollectedDataTypes</key>
|
|
33
|
+
<array/>
|
|
34
|
+
<key>NSPrivacyTracking</key>
|
|
35
|
+
<false/>
|
|
36
|
+
</dict>
|
|
37
|
+
</plist>
|
|
@@ -0,0 +1,475 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 54;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
0C80B921A6F3F58F76C31292 /* libPods-DuMobile.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DCACB8F33CDC322A6C60F78 /* libPods-DuMobile.a */; };
|
|
11
|
+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
|
12
|
+
761780ED2CA45674006654EE /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 761780EC2CA45674006654EE /* AppDelegate.swift */; };
|
|
13
|
+
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
|
|
14
|
+
/* End PBXBuildFile section */
|
|
15
|
+
|
|
16
|
+
/* Begin PBXFileReference section */
|
|
17
|
+
13B07F961A680F5B00A75B9A /* DuMobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DuMobile.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
18
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = DuMobile/Images.xcassets; sourceTree = "<group>"; };
|
|
19
|
+
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = DuMobile/Info.plist; sourceTree = "<group>"; };
|
|
20
|
+
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = PrivacyInfo.xcprivacy; path = DuMobile/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
|
21
|
+
3B4392A12AC88292D35C810B /* Pods-DuMobile.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DuMobile.debug.xcconfig"; path = "Target Support Files/Pods-DuMobile/Pods-DuMobile.debug.xcconfig"; sourceTree = "<group>"; };
|
|
22
|
+
5709B34CF0A7D63546082F79 /* Pods-DuMobile.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DuMobile.release.xcconfig"; path = "Target Support Files/Pods-DuMobile/Pods-DuMobile.release.xcconfig"; sourceTree = "<group>"; };
|
|
23
|
+
5DCACB8F33CDC322A6C60F78 /* libPods-DuMobile.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DuMobile.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
24
|
+
761780EC2CA45674006654EE /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = DuMobile/AppDelegate.swift; sourceTree = "<group>"; };
|
|
25
|
+
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = DuMobile/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
26
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
27
|
+
/* End PBXFileReference section */
|
|
28
|
+
|
|
29
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
30
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
|
|
31
|
+
isa = PBXFrameworksBuildPhase;
|
|
32
|
+
buildActionMask = 2147483647;
|
|
33
|
+
files = (
|
|
34
|
+
0C80B921A6F3F58F76C31292 /* libPods-DuMobile.a in Frameworks */,
|
|
35
|
+
);
|
|
36
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
37
|
+
};
|
|
38
|
+
/* End PBXFrameworksBuildPhase section */
|
|
39
|
+
|
|
40
|
+
/* Begin PBXGroup section */
|
|
41
|
+
13B07FAE1A68108700A75B9A /* DuMobile */ = {
|
|
42
|
+
isa = PBXGroup;
|
|
43
|
+
children = (
|
|
44
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
|
45
|
+
761780EC2CA45674006654EE /* AppDelegate.swift */,
|
|
46
|
+
13B07FB61A68108700A75B9A /* Info.plist */,
|
|
47
|
+
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
|
|
48
|
+
13B07FB81A68108700A75B9A /* PrivacyInfo.xcprivacy */,
|
|
49
|
+
);
|
|
50
|
+
name = DuMobile;
|
|
51
|
+
sourceTree = "<group>";
|
|
52
|
+
};
|
|
53
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
|
|
54
|
+
isa = PBXGroup;
|
|
55
|
+
children = (
|
|
56
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
|
57
|
+
5DCACB8F33CDC322A6C60F78 /* libPods-DuMobile.a */,
|
|
58
|
+
);
|
|
59
|
+
name = Frameworks;
|
|
60
|
+
sourceTree = "<group>";
|
|
61
|
+
};
|
|
62
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
|
|
63
|
+
isa = PBXGroup;
|
|
64
|
+
children = (
|
|
65
|
+
);
|
|
66
|
+
name = Libraries;
|
|
67
|
+
sourceTree = "<group>";
|
|
68
|
+
};
|
|
69
|
+
83CBB9F61A601CBA00E9B192 = {
|
|
70
|
+
isa = PBXGroup;
|
|
71
|
+
children = (
|
|
72
|
+
13B07FAE1A68108700A75B9A /* DuMobile */,
|
|
73
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */,
|
|
74
|
+
83CBBA001A601CBA00E9B192 /* Products */,
|
|
75
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */,
|
|
76
|
+
BBD78D7AC51CEA395F1C20DB /* Pods */,
|
|
77
|
+
);
|
|
78
|
+
indentWidth = 2;
|
|
79
|
+
sourceTree = "<group>";
|
|
80
|
+
tabWidth = 2;
|
|
81
|
+
usesTabs = 0;
|
|
82
|
+
};
|
|
83
|
+
83CBBA001A601CBA00E9B192 /* Products */ = {
|
|
84
|
+
isa = PBXGroup;
|
|
85
|
+
children = (
|
|
86
|
+
13B07F961A680F5B00A75B9A /* DuMobile.app */,
|
|
87
|
+
);
|
|
88
|
+
name = Products;
|
|
89
|
+
sourceTree = "<group>";
|
|
90
|
+
};
|
|
91
|
+
BBD78D7AC51CEA395F1C20DB /* Pods */ = {
|
|
92
|
+
isa = PBXGroup;
|
|
93
|
+
children = (
|
|
94
|
+
3B4392A12AC88292D35C810B /* Pods-DuMobile.debug.xcconfig */,
|
|
95
|
+
5709B34CF0A7D63546082F79 /* Pods-DuMobile.release.xcconfig */,
|
|
96
|
+
);
|
|
97
|
+
path = Pods;
|
|
98
|
+
sourceTree = "<group>";
|
|
99
|
+
};
|
|
100
|
+
/* End PBXGroup section */
|
|
101
|
+
|
|
102
|
+
/* Begin PBXNativeTarget section */
|
|
103
|
+
13B07F861A680F5B00A75B9A /* DuMobile */ = {
|
|
104
|
+
isa = PBXNativeTarget;
|
|
105
|
+
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "DuMobile" */;
|
|
106
|
+
buildPhases = (
|
|
107
|
+
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */,
|
|
108
|
+
13B07F871A680F5B00A75B9A /* Sources */,
|
|
109
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */,
|
|
110
|
+
13B07F8E1A680F5B00A75B9A /* Resources */,
|
|
111
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
|
|
112
|
+
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */,
|
|
113
|
+
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */,
|
|
114
|
+
);
|
|
115
|
+
buildRules = (
|
|
116
|
+
);
|
|
117
|
+
dependencies = (
|
|
118
|
+
);
|
|
119
|
+
name = DuMobile;
|
|
120
|
+
productName = DuMobile;
|
|
121
|
+
productReference = 13B07F961A680F5B00A75B9A /* DuMobile.app */;
|
|
122
|
+
productType = "com.apple.product-type.application";
|
|
123
|
+
};
|
|
124
|
+
/* End PBXNativeTarget section */
|
|
125
|
+
|
|
126
|
+
/* Begin PBXProject section */
|
|
127
|
+
83CBB9F71A601CBA00E9B192 /* Project object */ = {
|
|
128
|
+
isa = PBXProject;
|
|
129
|
+
attributes = {
|
|
130
|
+
LastUpgradeCheck = 1210;
|
|
131
|
+
TargetAttributes = {
|
|
132
|
+
13B07F861A680F5B00A75B9A = {
|
|
133
|
+
LastSwiftMigration = 1120;
|
|
134
|
+
};
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "DuMobile" */;
|
|
138
|
+
compatibilityVersion = "Xcode 12.0";
|
|
139
|
+
developmentRegion = en;
|
|
140
|
+
hasScannedForEncodings = 0;
|
|
141
|
+
knownRegions = (
|
|
142
|
+
en,
|
|
143
|
+
Base,
|
|
144
|
+
);
|
|
145
|
+
mainGroup = 83CBB9F61A601CBA00E9B192;
|
|
146
|
+
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
|
|
147
|
+
projectDirPath = "";
|
|
148
|
+
projectRoot = "";
|
|
149
|
+
targets = (
|
|
150
|
+
13B07F861A680F5B00A75B9A /* DuMobile */,
|
|
151
|
+
);
|
|
152
|
+
};
|
|
153
|
+
/* End PBXProject section */
|
|
154
|
+
|
|
155
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
156
|
+
13B07F8E1A680F5B00A75B9A /* Resources */ = {
|
|
157
|
+
isa = PBXResourcesBuildPhase;
|
|
158
|
+
buildActionMask = 2147483647;
|
|
159
|
+
files = (
|
|
160
|
+
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
|
|
161
|
+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
|
|
162
|
+
);
|
|
163
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
164
|
+
};
|
|
165
|
+
/* End PBXResourcesBuildPhase section */
|
|
166
|
+
|
|
167
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
168
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
|
|
169
|
+
isa = PBXShellScriptBuildPhase;
|
|
170
|
+
buildActionMask = 2147483647;
|
|
171
|
+
files = (
|
|
172
|
+
);
|
|
173
|
+
inputPaths = (
|
|
174
|
+
"$(SRCROOT)/.xcode.env.local",
|
|
175
|
+
"$(SRCROOT)/.xcode.env",
|
|
176
|
+
);
|
|
177
|
+
name = "Bundle React Native code and images";
|
|
178
|
+
outputPaths = (
|
|
179
|
+
);
|
|
180
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
181
|
+
shellPath = /bin/sh;
|
|
182
|
+
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";
|
|
183
|
+
};
|
|
184
|
+
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
|
|
185
|
+
isa = PBXShellScriptBuildPhase;
|
|
186
|
+
buildActionMask = 2147483647;
|
|
187
|
+
files = (
|
|
188
|
+
);
|
|
189
|
+
inputFileListPaths = (
|
|
190
|
+
"${PODS_ROOT}/Target Support Files/Pods-DuMobile/Pods-DuMobile-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
191
|
+
);
|
|
192
|
+
name = "[CP] Embed Pods Frameworks";
|
|
193
|
+
outputFileListPaths = (
|
|
194
|
+
"${PODS_ROOT}/Target Support Files/Pods-DuMobile/Pods-DuMobile-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
195
|
+
);
|
|
196
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
197
|
+
shellPath = /bin/sh;
|
|
198
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DuMobile/Pods-DuMobile-frameworks.sh\"\n";
|
|
199
|
+
showEnvVarsInLog = 0;
|
|
200
|
+
};
|
|
201
|
+
C38B50BA6285516D6DCD4F65 /* [CP] Check Pods Manifest.lock */ = {
|
|
202
|
+
isa = PBXShellScriptBuildPhase;
|
|
203
|
+
buildActionMask = 2147483647;
|
|
204
|
+
files = (
|
|
205
|
+
);
|
|
206
|
+
inputFileListPaths = (
|
|
207
|
+
);
|
|
208
|
+
inputPaths = (
|
|
209
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
210
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
211
|
+
);
|
|
212
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
213
|
+
outputFileListPaths = (
|
|
214
|
+
);
|
|
215
|
+
outputPaths = (
|
|
216
|
+
"$(DERIVED_FILE_DIR)/Pods-DuMobile-checkManifestLockResult.txt",
|
|
217
|
+
);
|
|
218
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
219
|
+
shellPath = /bin/sh;
|
|
220
|
+
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";
|
|
221
|
+
showEnvVarsInLog = 0;
|
|
222
|
+
};
|
|
223
|
+
E235C05ADACE081382539298 /* [CP] Copy Pods Resources */ = {
|
|
224
|
+
isa = PBXShellScriptBuildPhase;
|
|
225
|
+
buildActionMask = 2147483647;
|
|
226
|
+
files = (
|
|
227
|
+
);
|
|
228
|
+
inputFileListPaths = (
|
|
229
|
+
"${PODS_ROOT}/Target Support Files/Pods-DuMobile/Pods-DuMobile-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
230
|
+
);
|
|
231
|
+
name = "[CP] Copy Pods Resources";
|
|
232
|
+
outputFileListPaths = (
|
|
233
|
+
"${PODS_ROOT}/Target Support Files/Pods-DuMobile/Pods-DuMobile-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
234
|
+
);
|
|
235
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
236
|
+
shellPath = /bin/sh;
|
|
237
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DuMobile/Pods-DuMobile-resources.sh\"\n";
|
|
238
|
+
showEnvVarsInLog = 0;
|
|
239
|
+
};
|
|
240
|
+
/* End PBXShellScriptBuildPhase section */
|
|
241
|
+
|
|
242
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
243
|
+
13B07F871A680F5B00A75B9A /* Sources */ = {
|
|
244
|
+
isa = PBXSourcesBuildPhase;
|
|
245
|
+
buildActionMask = 2147483647;
|
|
246
|
+
files = (
|
|
247
|
+
761780ED2CA45674006654EE /* AppDelegate.swift in Sources */,
|
|
248
|
+
);
|
|
249
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
250
|
+
};
|
|
251
|
+
/* End PBXSourcesBuildPhase section */
|
|
252
|
+
|
|
253
|
+
/* Begin XCBuildConfiguration section */
|
|
254
|
+
13B07F941A680F5B00A75B9A /* Debug */ = {
|
|
255
|
+
isa = XCBuildConfiguration;
|
|
256
|
+
baseConfigurationReference = 3B4392A12AC88292D35C810B /* Pods-DuMobile.debug.xcconfig */;
|
|
257
|
+
buildSettings = {
|
|
258
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
259
|
+
CLANG_ENABLE_MODULES = YES;
|
|
260
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
261
|
+
ENABLE_BITCODE = NO;
|
|
262
|
+
INFOPLIST_FILE = DuMobile/Info.plist;
|
|
263
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
264
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
265
|
+
"$(inherited)",
|
|
266
|
+
"@executable_path/Frameworks",
|
|
267
|
+
);
|
|
268
|
+
MARKETING_VERSION = 1.0;
|
|
269
|
+
OTHER_LDFLAGS = (
|
|
270
|
+
"$(inherited)",
|
|
271
|
+
"-ObjC",
|
|
272
|
+
"-lc++",
|
|
273
|
+
);
|
|
274
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
|
275
|
+
PRODUCT_NAME = DuMobile;
|
|
276
|
+
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
277
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
278
|
+
SWIFT_VERSION = 5.0;
|
|
279
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
280
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
281
|
+
};
|
|
282
|
+
name = Debug;
|
|
283
|
+
};
|
|
284
|
+
13B07F951A680F5B00A75B9A /* Release */ = {
|
|
285
|
+
isa = XCBuildConfiguration;
|
|
286
|
+
baseConfigurationReference = 5709B34CF0A7D63546082F79 /* Pods-DuMobile.release.xcconfig */;
|
|
287
|
+
buildSettings = {
|
|
288
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
289
|
+
CLANG_ENABLE_MODULES = YES;
|
|
290
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
291
|
+
INFOPLIST_FILE = DuMobile/Info.plist;
|
|
292
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
293
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
294
|
+
"$(inherited)",
|
|
295
|
+
"@executable_path/Frameworks",
|
|
296
|
+
);
|
|
297
|
+
MARKETING_VERSION = 1.0;
|
|
298
|
+
OTHER_LDFLAGS = (
|
|
299
|
+
"$(inherited)",
|
|
300
|
+
"-ObjC",
|
|
301
|
+
"-lc++",
|
|
302
|
+
);
|
|
303
|
+
PRODUCT_BUNDLE_IDENTIFIER = "org.reactjs.native.example.$(PRODUCT_NAME:rfc1034identifier)";
|
|
304
|
+
PRODUCT_NAME = DuMobile;
|
|
305
|
+
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
|
|
306
|
+
SWIFT_VERSION = 5.0;
|
|
307
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
308
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
309
|
+
};
|
|
310
|
+
name = Release;
|
|
311
|
+
};
|
|
312
|
+
83CBBA201A601CBA00E9B192 /* Debug */ = {
|
|
313
|
+
isa = XCBuildConfiguration;
|
|
314
|
+
buildSettings = {
|
|
315
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
316
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
317
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
318
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
319
|
+
CLANG_ENABLE_MODULES = YES;
|
|
320
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
321
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
322
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
323
|
+
CLANG_WARN_COMMA = YES;
|
|
324
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
325
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
326
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
327
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
328
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
329
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
330
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
331
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
332
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
333
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
334
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
335
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
336
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
337
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
338
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
339
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
340
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
341
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
342
|
+
COPY_PHASE_STRIP = NO;
|
|
343
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
344
|
+
ENABLE_TESTABILITY = YES;
|
|
345
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
346
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
347
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
348
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
349
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
350
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
351
|
+
"DEBUG=1",
|
|
352
|
+
"$(inherited)",
|
|
353
|
+
);
|
|
354
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
|
355
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
356
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
357
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
358
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
359
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
360
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
361
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
362
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
363
|
+
/usr/lib/swift,
|
|
364
|
+
"$(inherited)",
|
|
365
|
+
);
|
|
366
|
+
LIBRARY_SEARCH_PATHS = (
|
|
367
|
+
"\"$(SDKROOT)/usr/lib/swift\"",
|
|
368
|
+
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
|
369
|
+
"\"$(inherited)\"",
|
|
370
|
+
);
|
|
371
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
372
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
373
|
+
OTHER_CPLUSPLUSFLAGS = (
|
|
374
|
+
"$(OTHER_CFLAGS)",
|
|
375
|
+
"-DFOLLY_NO_CONFIG",
|
|
376
|
+
"-DFOLLY_MOBILE=1",
|
|
377
|
+
"-DFOLLY_USE_LIBCPP=1",
|
|
378
|
+
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
379
|
+
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
380
|
+
);
|
|
381
|
+
SDKROOT = iphoneos;
|
|
382
|
+
};
|
|
383
|
+
name = Debug;
|
|
384
|
+
};
|
|
385
|
+
83CBBA211A601CBA00E9B192 /* Release */ = {
|
|
386
|
+
isa = XCBuildConfiguration;
|
|
387
|
+
buildSettings = {
|
|
388
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
389
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
390
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
391
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
392
|
+
CLANG_ENABLE_MODULES = YES;
|
|
393
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
394
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
395
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
396
|
+
CLANG_WARN_COMMA = YES;
|
|
397
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
398
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
399
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
400
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
401
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
402
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
403
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
404
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
405
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
406
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
407
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
408
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
409
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
410
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
411
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
412
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
413
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
414
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
415
|
+
COPY_PHASE_STRIP = YES;
|
|
416
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
417
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
418
|
+
"EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "";
|
|
419
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
420
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
421
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
422
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
423
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
424
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
425
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
426
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
427
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
428
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
429
|
+
/usr/lib/swift,
|
|
430
|
+
"$(inherited)",
|
|
431
|
+
);
|
|
432
|
+
LIBRARY_SEARCH_PATHS = (
|
|
433
|
+
"\"$(SDKROOT)/usr/lib/swift\"",
|
|
434
|
+
"\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
|
|
435
|
+
"\"$(inherited)\"",
|
|
436
|
+
);
|
|
437
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
438
|
+
OTHER_CPLUSPLUSFLAGS = (
|
|
439
|
+
"$(OTHER_CFLAGS)",
|
|
440
|
+
"-DFOLLY_NO_CONFIG",
|
|
441
|
+
"-DFOLLY_MOBILE=1",
|
|
442
|
+
"-DFOLLY_USE_LIBCPP=1",
|
|
443
|
+
"-DFOLLY_CFG_NO_COROUTINES=1",
|
|
444
|
+
"-DFOLLY_HAVE_CLOCK_GETTIME=1",
|
|
445
|
+
);
|
|
446
|
+
SDKROOT = iphoneos;
|
|
447
|
+
VALIDATE_PRODUCT = YES;
|
|
448
|
+
};
|
|
449
|
+
name = Release;
|
|
450
|
+
};
|
|
451
|
+
/* End XCBuildConfiguration section */
|
|
452
|
+
|
|
453
|
+
/* Begin XCConfigurationList section */
|
|
454
|
+
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "DuMobile" */ = {
|
|
455
|
+
isa = XCConfigurationList;
|
|
456
|
+
buildConfigurations = (
|
|
457
|
+
13B07F941A680F5B00A75B9A /* Debug */,
|
|
458
|
+
13B07F951A680F5B00A75B9A /* Release */,
|
|
459
|
+
);
|
|
460
|
+
defaultConfigurationIsVisible = 0;
|
|
461
|
+
defaultConfigurationName = Release;
|
|
462
|
+
};
|
|
463
|
+
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "DuMobile" */ = {
|
|
464
|
+
isa = XCConfigurationList;
|
|
465
|
+
buildConfigurations = (
|
|
466
|
+
83CBBA201A601CBA00E9B192 /* Debug */,
|
|
467
|
+
83CBBA211A601CBA00E9B192 /* Release */,
|
|
468
|
+
);
|
|
469
|
+
defaultConfigurationIsVisible = 0;
|
|
470
|
+
defaultConfigurationName = Release;
|
|
471
|
+
};
|
|
472
|
+
/* End XCConfigurationList section */
|
|
473
|
+
};
|
|
474
|
+
rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
475
|
+
}
|