kasy-cli 1.2.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/README.md +56 -0
- package/bin/kasy.js +529 -0
- package/docs/cli-reference.md +251 -0
- package/lib/commands/add.js +777 -0
- package/lib/commands/check.js +240 -0
- package/lib/commands/codemagic.js +161 -0
- package/lib/commands/deploy.js +257 -0
- package/lib/commands/docs.js +47 -0
- package/lib/commands/doctor.js +227 -0
- package/lib/commands/features.js +36 -0
- package/lib/commands/ios.js +206 -0
- package/lib/commands/new.js +1870 -0
- package/lib/commands/notifications.js +207 -0
- package/lib/commands/remove.js +466 -0
- package/lib/commands/run.js +75 -0
- package/lib/commands/update.js +382 -0
- package/lib/commands/validate.js +131 -0
- package/lib/scaffold/CHANGELOG.json +6 -0
- package/lib/scaffold/backends/api/.flutter-plugins-dependencies +1 -0
- package/lib/scaffold/backends/api/analysis_options.yaml +5 -0
- package/lib/scaffold/backends/api/generator.js +76 -0
- package/lib/scaffold/backends/api/patch/README.md +85 -0
- package/lib/scaffold/backends/api/patch/android/app/src/main/AndroidManifest.xml +87 -0
- package/lib/scaffold/backends/api/patch/ios/Runner/AppDelegate.swift +61 -0
- package/lib/scaffold/backends/api/patch/lib/core/data/api/meta_ads_api.dart +80 -0
- package/lib/scaffold/backends/api/patch/lib/core/data/api/storage_api.dart +117 -0
- package/lib/scaffold/backends/api/patch/lib/core/data/api/user_api.dart +148 -0
- package/lib/scaffold/backends/api/patch/lib/core/data/entities/json_converters.dart +35 -0
- package/lib/scaffold/backends/api/patch/lib/core/data/entities/user_entity.dart +48 -0
- package/lib/scaffold/backends/api/patch/lib/core/rating/widgets/review_popup.dart +211 -0
- package/lib/scaffold/backends/api/patch/lib/environnements.dart +151 -0
- package/lib/scaffold/backends/api/patch/lib/features/authentication/api/authentication_api.dart +303 -0
- package/lib/scaffold/backends/api/patch/lib/features/authentication/api/authentication_api_interface.dart +80 -0
- package/lib/scaffold/backends/api/patch/lib/features/authentication/repositories/authentication_repository.dart +406 -0
- package/lib/scaffold/backends/api/patch/lib/features/camera/xfile_extension.dart +6 -0
- package/lib/scaffold/backends/api/patch/lib/features/feedbacks/api/entities/feature_request_entity.dart +24 -0
- package/lib/scaffold/backends/api/patch/lib/features/feedbacks/api/entities/feature_vote_entity.dart +21 -0
- package/lib/scaffold/backends/api/patch/lib/features/feedbacks/api/feature_request_api.dart +52 -0
- package/lib/scaffold/backends/api/patch/lib/features/feedbacks/api/feature_vote_api.dart +60 -0
- package/lib/scaffold/backends/api/patch/lib/features/llm_chat/api/llm_chat_api.dart +58 -0
- package/lib/scaffold/backends/api/patch/lib/features/llm_chat/api/llm_chat_message_entity.dart +29 -0
- package/lib/scaffold/backends/api/patch/lib/features/notifications/api/device_api.dart +398 -0
- package/lib/scaffold/backends/api/patch/lib/features/notifications/api/entities/device_entity.dart +39 -0
- package/lib/scaffold/backends/api/patch/lib/features/notifications/api/entities/notifications_entity.dart +23 -0
- package/lib/scaffold/backends/api/patch/lib/features/notifications/api/notifications_api.dart +333 -0
- package/lib/scaffold/backends/api/patch/lib/features/notifications/providers/models/notification.dart +185 -0
- package/lib/scaffold/backends/api/patch/lib/features/onboarding/api/entities/user_info_entity.dart +26 -0
- package/lib/scaffold/backends/api/patch/lib/features/onboarding/api/user_infos_api.dart +107 -0
- package/lib/scaffold/backends/api/patch/lib/features/onboarding/models/user_info.dart +94 -0
- package/lib/scaffold/backends/api/patch/lib/features/onboarding/repositories/user_infos_repository.dart +29 -0
- package/lib/scaffold/backends/api/patch/lib/features/onboarding/ui/animations/movefade_anim.dart +34 -0
- package/lib/scaffold/backends/api/patch/lib/features/onboarding/ui/components/onboarding_att_setup.dart +66 -0
- package/lib/scaffold/backends/api/patch/lib/features/onboarding/ui/components/onboarding_notifications_setup.dart +73 -0
- package/lib/scaffold/backends/api/patch/lib/features/onboarding/ui/widgets/onboarding_radio_question.dart +173 -0
- package/lib/scaffold/backends/api/patch/lib/features/settings/ui/widgets/avatar_utils.dart +33 -0
- package/lib/scaffold/backends/api/patch/lib/features/subscription/api/entities/subscription_entity.dart +34 -0
- package/lib/scaffold/backends/api/patch/lib/features/subscription/api/subscription_api.dart +49 -0
- package/lib/scaffold/backends/api/patch/lib/features/subscription/shared/maybeshow_premium.dart +88 -0
- package/lib/scaffold/backends/api/patch/lib/main.dart +256 -0
- package/lib/scaffold/backends/api/patch/lib/router.dart +133 -0
- package/lib/scaffold/backends/api/pubspec.yaml.tpl +108 -0
- package/lib/scaffold/backends/firebase/deploy.js +1006 -0
- package/lib/scaffold/backends/firebase/generator.js +24 -0
- package/lib/scaffold/backends/firebase/setup-from-scratch.js +1008 -0
- package/lib/scaffold/backends/firebase/tokens.js +113 -0
- package/lib/scaffold/backends/supabase/.flutter-plugins-dependencies +1 -0
- package/lib/scaffold/backends/supabase/analysis_options.yaml +5 -0
- package/lib/scaffold/backends/supabase/config.toml +34 -0
- package/lib/scaffold/backends/supabase/deploy.js +485 -0
- package/lib/scaffold/backends/supabase/edge-functions/delete-user-account/README.md +15 -0
- package/lib/scaffold/backends/supabase/edge-functions/delete-user-account/index.ts +97 -0
- package/lib/scaffold/backends/supabase/edge-functions/llm-chat/index.ts +156 -0
- package/lib/scaffold/backends/supabase/edge-functions/meta-track-event/index.ts +292 -0
- package/lib/scaffold/backends/supabase/edge-functions/revenuecat-webhook/README.md +30 -0
- package/lib/scaffold/backends/supabase/edge-functions/revenuecat-webhook/index.ts +488 -0
- package/lib/scaffold/backends/supabase/edge-functions/send-push-notification/README.md +35 -0
- package/lib/scaffold/backends/supabase/edge-functions/send-push-notification/index.ts +314 -0
- package/lib/scaffold/backends/supabase/generator.js +108 -0
- package/lib/scaffold/backends/supabase/migrations/20240101000001_initial_schema.sql +149 -0
- package/lib/scaffold/backends/supabase/migrations/20240101000002_storage_bucket.sql +40 -0
- package/lib/scaffold/backends/supabase/migrations/20240101000005_vote_triggers.sql +34 -0
- package/lib/scaffold/backends/supabase/migrations/20240101000006_notification_webhook.sql +36 -0
- package/lib/scaffold/backends/supabase/migrations/20240101000007_welcome_notification.sql +64 -0
- package/lib/scaffold/backends/supabase/migrations/20240101000008_user_feature_requests.sql +2 -0
- package/lib/scaffold/backends/supabase/migrations/20240101000009_llm_messages.sql +22 -0
- package/lib/scaffold/backends/supabase/migrations/20240101000010_notification_image.sql +2 -0
- package/lib/scaffold/backends/supabase/patch/README.md +121 -0
- package/lib/scaffold/backends/supabase/patch/android/app/src/main/AndroidManifest.xml +87 -0
- package/lib/scaffold/backends/supabase/patch/ios/Runner/AppDelegate.swift +61 -0
- package/lib/scaffold/backends/supabase/patch/lib/core/data/api/meta_ads_api.dart +75 -0
- package/lib/scaffold/backends/supabase/patch/lib/core/data/api/storage_api.dart +83 -0
- package/lib/scaffold/backends/supabase/patch/lib/core/data/api/user_api.dart +143 -0
- package/lib/scaffold/backends/supabase/patch/lib/core/data/entities/json_converters.dart +35 -0
- package/lib/scaffold/backends/supabase/patch/lib/core/data/entities/user_entity.dart +48 -0
- package/lib/scaffold/backends/supabase/patch/lib/core/rating/widgets/review_popup.dart +211 -0
- package/lib/scaffold/backends/supabase/patch/lib/environnements.dart +149 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/authentication/api/authentication_api.dart +546 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/authentication/repositories/authentication_repository.dart +410 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/camera/xfile_extension.dart +6 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/feedbacks/api/entities/feature_request_entity.dart +25 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/feedbacks/api/entities/feature_vote_entity.dart +21 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/feedbacks/api/feature_request_api.dart +59 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/feedbacks/api/feature_vote_api.dart +85 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/feedbacks/ui/component/add_feature_form.dart +199 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/llm_chat/api/llm_chat_api.dart +47 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/llm_chat/api/llm_chat_message_entity.dart +30 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/llm_chat/providers/llm_chat_notifier.dart +266 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/notifications/api/device_api.dart +410 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/notifications/api/entities/device_entity.dart +51 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/notifications/api/entities/notifications_entity.dart +26 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/notifications/api/notifications_api.dart +317 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/notifications/providers/models/notification.dart +174 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/onboarding/api/entities/user_info_entity.dart +26 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/onboarding/api/user_infos_api.dart +90 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/onboarding/models/user_info.dart +94 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/onboarding/repositories/user_infos_repository.dart +29 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/onboarding/ui/animations/movefade_anim.dart +34 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/onboarding/ui/components/onboarding_att_setup.dart +66 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/onboarding/ui/components/onboarding_notifications_setup.dart +73 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/onboarding/ui/widgets/onboarding_radio_question.dart +173 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/settings/ui/widgets/avatar_utils.dart +35 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/subscription/api/entities/subscription_entity.dart +35 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/subscription/api/subscription_api.dart +44 -0
- package/lib/scaffold/backends/supabase/patch/lib/features/subscription/shared/maybeshow_premium.dart +85 -0
- package/lib/scaffold/backends/supabase/patch/lib/google_auth_options.dart +23 -0
- package/lib/scaffold/backends/supabase/patch/lib/main.dart +288 -0
- package/lib/scaffold/backends/supabase/patch/lib/router.dart +133 -0
- package/lib/scaffold/backends/supabase/pubspec.yaml.tpl +110 -0
- package/lib/scaffold/backends/supabase/tokens.js +9 -0
- package/lib/scaffold/catalog.js +177 -0
- package/lib/scaffold/engine.js +230 -0
- package/lib/scaffold/features/README.md +152 -0
- package/lib/scaffold/features/analytics/lib/core/data/api/analytics_api.dart +124 -0
- package/lib/scaffold/features/ci/.github/ISSUE_TEMPLATE/BUG.es.md +35 -0
- package/lib/scaffold/features/ci/.github/ISSUE_TEMPLATE/BUG.md +35 -0
- package/lib/scaffold/features/ci/.github/ISSUE_TEMPLATE/BUG.pt.md +35 -0
- package/lib/scaffold/features/ci/.github/ISSUE_TEMPLATE/feature_request.es.md +12 -0
- package/lib/scaffold/features/ci/.github/ISSUE_TEMPLATE/feature_request.md +12 -0
- package/lib/scaffold/features/ci/.github/ISSUE_TEMPLATE/feature_request.pt.md +12 -0
- package/lib/scaffold/features/ci/.github/PULL_REQUEST_TEMPLATE.es.md +17 -0
- package/lib/scaffold/features/ci/.github/PULL_REQUEST_TEMPLATE.md +17 -0
- package/lib/scaffold/features/ci/.github/PULL_REQUEST_TEMPLATE.pt.md +17 -0
- package/lib/scaffold/features/ci/.github/dependabot.yml +16 -0
- package/lib/scaffold/features/ci/.github/workflows/app.yml +20 -0
- package/lib/scaffold/features/ci/.gitlab/templates/deploy.yaml +14 -0
- package/lib/scaffold/features/ci/.gitlab/templates/dropbox.yaml +19 -0
- package/lib/scaffold/features/ci/.gitlab/templates/flutter.yaml +163 -0
- package/lib/scaffold/features/ci/.gitlab/templates/mailgun.yaml +28 -0
- package/lib/scaffold/features/ci/.gitlab-ci.yml +37 -0
- package/lib/scaffold/features/ci/codemagic.yaml +157 -0
- package/lib/scaffold/features/facebook/lib/core/data/api/tracking_api.dart +111 -0
- package/lib/scaffold/features/feedback/lib/features/feedbacks/api/entities/feature_request_entity.dart +27 -0
- package/lib/scaffold/features/feedback/lib/features/feedbacks/api/entities/feature_vote_entity.dart +27 -0
- package/lib/scaffold/features/feedback/lib/features/feedbacks/api/feature_request_api.dart +50 -0
- package/lib/scaffold/features/feedback/lib/features/feedbacks/api/feature_vote_api.dart +79 -0
- package/lib/scaffold/features/feedback/lib/features/feedbacks/models/feature_requests.dart +48 -0
- package/lib/scaffold/features/feedback/lib/features/feedbacks/models/feedback_state.dart +42 -0
- package/lib/scaffold/features/feedback/lib/features/feedbacks/providers/feedback_page_notifier.dart +147 -0
- package/lib/scaffold/features/feedback/lib/features/feedbacks/repositories/feature_request_repository.dart +95 -0
- package/lib/scaffold/features/feedback/lib/features/feedbacks/ui/component/add_feature_form.dart +199 -0
- package/lib/scaffold/features/feedback/lib/features/feedbacks/ui/feedback_page.dart +175 -0
- package/lib/scaffold/features/feedback/lib/features/feedbacks/ui/widgets/add_feature_button.dart +76 -0
- package/lib/scaffold/features/feedback/lib/features/feedbacks/ui/widgets/feature_card.dart +279 -0
- package/lib/scaffold/features/ios-release/.kasy/apple.env.example +8 -0
- package/lib/scaffold/features/ios-release/.kasy/codemagic.env.example +7 -0
- package/lib/scaffold/features/ios-release/docs/codemagic-release.en.md +50 -0
- package/lib/scaffold/features/ios-release/docs/codemagic-release.es.md +50 -0
- package/lib/scaffold/features/ios-release/docs/codemagic-release.pt.md +50 -0
- package/lib/scaffold/features/ios-release/docs/ios-release.en.md +41 -0
- package/lib/scaffold/features/ios-release/docs/ios-release.es.md +41 -0
- package/lib/scaffold/features/ios-release/docs/ios-release.pt.md +41 -0
- package/lib/scaffold/features/ios-release/scripts/bump-ios-version.js +38 -0
- package/lib/scaffold/features/ios-release/scripts/release-ios.sh +137 -0
- package/lib/scaffold/features/llm_chat/lib/features/llm_chat/llm_chat_page.dart +301 -0
- package/lib/scaffold/features/local_notifications/lib/features/local_reminder/providers/reminder_notifier.dart +81 -0
- package/lib/scaffold/features/local_notifications/lib/features/local_reminder/repositories/reminder_preferences.dart +76 -0
- package/lib/scaffold/features/local_notifications/lib/features/local_reminder/ui/reminder_page.dart +282 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/api/entities/user_info_entity.dart +24 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/api/user_infos_api.dart +71 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/models/user_info.dart +92 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/providers/onboarding_model.dart +15 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/providers/onboarding_provider.dart +78 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/repositories/user_infos_repository.dart +29 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/ui/animations/page_transitions.dart +30 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/ui/components/onboarding_att_setup.dart +66 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/ui/components/onboarding_features.dart +72 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/ui/components/onboarding_loader.dart +92 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/ui/components/onboarding_notifications_setup.dart +73 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/ui/components/onboarding_questions.dart +89 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/ui/onboarding_page.dart +94 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/ui/widgets/onboarding_background.dart +80 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/ui/widgets/onboarding_feature.dart +139 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/ui/widgets/onboarding_illustration_scaffold.dart +110 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/ui/widgets/onboarding_progress.dart +84 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/ui/widgets/onboarding_radio_question.dart +173 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/ui/widgets/onboarding_reassurance.dart +45 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/ui/widgets/onboarding_sticky_footer.dart +77 -0
- package/lib/scaffold/features/onboarding/lib/features/onboarding/ui/widgets/selectable_row_tile.dart +392 -0
- package/lib/scaffold/features/revenuecat/lib/core/data/api/tracking_api.dart +116 -0
- package/lib/scaffold/features/revenuecat/lib/core/data/models/subscription.dart +322 -0
- package/lib/scaffold/features/revenuecat/lib/core/home_widgets/home_widget_background_task.dart +41 -0
- package/lib/scaffold/features/revenuecat/lib/core/states/user_state_notifier.dart +305 -0
- package/lib/scaffold/features/widget/lib/core/home_widgets/home_widget_background_task.dart +41 -0
- package/lib/scaffold/features/widget/lib/core/home_widgets/home_widget_mywidget_service.dart +57 -0
- package/lib/scaffold/features/widget/lib/core/home_widgets/home_widget_service.dart +54 -0
- package/lib/scaffold/features/widget/lib/features/settings/ui/components/admin/admin_home_widgets.dart +32 -0
- package/lib/scaffold/generate.js +370 -0
- package/lib/scaffold/patch.js +395 -0
- package/lib/scaffold/shared/backend-config.js +74 -0
- package/lib/scaffold/shared/fcm-service-account.js +126 -0
- package/lib/scaffold/shared/generator-utils.js +1664 -0
- package/lib/scaffold/shared/post-build.js +809 -0
- package/lib/scaffold/shared/template-strings.js +112 -0
- package/lib/utils/apple-release.js +273 -0
- package/lib/utils/checks.js +319 -0
- package/lib/utils/codemagic-release.js +127 -0
- package/lib/utils/fs.js +122 -0
- package/lib/utils/i18n.js +2123 -0
- package/lib/utils/license-gate.js +72 -0
- package/lib/utils/license.js +64 -0
- package/lib/utils/prompts.js +213 -0
- package/lib/utils/updates.js +97 -0
- package/package.json +55 -0
- package/templates/firebase/.env.example +24 -0
- package/templates/firebase/.firebaserc +5 -0
- package/templates/firebase/.kasy/apple.env.example +8 -0
- package/templates/firebase/.kasy/codemagic.env.example +7 -0
- package/templates/firebase/.metadata +30 -0
- package/templates/firebase/.windsurfrules +95 -0
- package/templates/firebase/Makefile +30 -0
- package/templates/firebase/README.en.md +180 -0
- package/templates/firebase/README.es.md +180 -0
- package/templates/firebase/README.md +180 -0
- package/templates/firebase/analysis_options.yaml +37 -0
- package/templates/firebase/android/app/build.gradle.kts +80 -0
- package/templates/firebase/android/app/src/debug/AndroidManifest.xml +7 -0
- package/templates/firebase/android/app/src/main/AndroidManifest.xml +93 -0
- package/templates/firebase/android/app/src/main/kotlin/com/aicrus/firebase/kit/MainActivity.kt +36 -0
- package/templates/firebase/android/app/src/main/kotlin/com/aicrus/firebase/kit/MyWidget.kt +50 -0
- package/templates/firebase/android/app/src/main/kotlin/com/aicrus/firebase/kit/MyWidgetReceiver.kt +7 -0
- package/templates/firebase/android/app/src/main/res/drawable/background.png +0 -0
- package/templates/firebase/android/app/src/main/res/drawable/launch_background.xml +9 -0
- package/templates/firebase/android/app/src/main/res/drawable-hdpi/splash.png +0 -0
- package/templates/firebase/android/app/src/main/res/drawable-mdpi/splash.png +0 -0
- package/templates/firebase/android/app/src/main/res/drawable-v21/background.png +0 -0
- package/templates/firebase/android/app/src/main/res/drawable-v21/launch_background.xml +9 -0
- package/templates/firebase/android/app/src/main/res/drawable-xhdpi/splash.png +0 -0
- package/templates/firebase/android/app/src/main/res/drawable-xxhdpi/splash.png +0 -0
- package/templates/firebase/android/app/src/main/res/drawable-xxxhdpi/splash.png +0 -0
- package/templates/firebase/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/templates/firebase/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/templates/firebase/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/templates/firebase/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/templates/firebase/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/templates/firebase/android/app/src/main/res/values/strings.xml +6 -0
- package/templates/firebase/android/app/src/main/res/values/styles.xml +22 -0
- package/templates/firebase/android/app/src/main/res/values-night/styles.xml +22 -0
- package/templates/firebase/android/app/src/main/res/values-night-v31/styles.xml +20 -0
- package/templates/firebase/android/app/src/main/res/values-v31/styles.xml +20 -0
- package/templates/firebase/android/app/src/main/res/xml/locales_config.xml +7 -0
- package/templates/firebase/android/app/src/main/res/xml/mywidget_info.xml +11 -0
- package/templates/firebase/android/app/src/profile/AndroidManifest.xml +7 -0
- package/templates/firebase/android/build.gradle.kts +28 -0
- package/templates/firebase/android/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/templates/firebase/android/gradle.properties +2 -0
- package/templates/firebase/android/settings.gradle.kts +29 -0
- package/templates/firebase/assets/icons/apple.png +0 -0
- package/templates/firebase/assets/icons/facebook.png +0 -0
- package/templates/firebase/assets/icons/google.png +0 -0
- package/templates/firebase/assets/icons/google_play_games.png +0 -0
- package/templates/firebase/assets/images/app_icon.png +0 -0
- package/templates/firebase/assets/images/empty_notifications.jpg +0 -0
- package/templates/firebase/assets/images/icon.png +0 -0
- package/templates/firebase/assets/images/onboarding/authentication-login-template.jpg +0 -0
- package/templates/firebase/assets/images/onboarding/img1.jpg +0 -0
- package/templates/firebase/assets/images/onboarding/img2.jpg +0 -0
- package/templates/firebase/assets/images/onboarding/img3.jpg +0 -0
- package/templates/firebase/assets/images/onboarding/notifications.png +0 -0
- package/templates/firebase/assets/images/onboarding/onboarding.png +0 -0
- package/templates/firebase/assets/images/onboarding/purchase.png +0 -0
- package/templates/firebase/assets/images/premium-bg.jpg +0 -0
- package/templates/firebase/assets/images/premium-switch-header.png +0 -0
- package/templates/firebase/assets/images/review.png +0 -0
- package/templates/firebase/assets/images/splashscreen.png +0 -0
- package/templates/firebase/assets/images/update.png +0 -0
- package/templates/firebase/build.yaml +13 -0
- package/templates/firebase/devtools_options.yaml +3 -0
- package/templates/firebase/docs/auth-setup.en.md +145 -0
- package/templates/firebase/docs/auth-setup.es.md +145 -0
- package/templates/firebase/docs/auth-setup.pt.md +145 -0
- package/templates/firebase/docs/codemagic-release.en.md +50 -0
- package/templates/firebase/docs/codemagic-release.es.md +50 -0
- package/templates/firebase/docs/codemagic-release.pt.md +50 -0
- package/templates/firebase/docs/ios-release.en.md +41 -0
- package/templates/firebase/docs/ios-release.es.md +41 -0
- package/templates/firebase/docs/ios-release.pt.md +54 -0
- package/templates/firebase/docs/navigation-transitions.md +80 -0
- package/templates/firebase/docs/revenuecat-setup.es.md +341 -0
- package/templates/firebase/docs/revenuecat-setup.pt.md +341 -0
- package/templates/firebase/firebase.json +1 -0
- package/templates/firebase/firestore.indexes.json +25 -0
- package/templates/firebase/firestore.rules +51 -0
- package/templates/firebase/functions/.eslintrc.js +45 -0
- package/templates/firebase/functions/jest.config.js +16 -0
- package/templates/firebase/functions/package-lock.json +6876 -0
- package/templates/firebase/functions/package.json +33 -0
- package/templates/firebase/functions/src/authentication/functions.ts +30 -0
- package/templates/firebase/functions/src/authentication/triggers.ts +103 -0
- package/templates/firebase/functions/src/core/api/meta_ads_api.ts +390 -0
- package/templates/firebase/functions/src/core/data/entities/entity_utils.ts +87 -0
- package/templates/firebase/functions/src/core/data/entities/notification_entity.ts +74 -0
- package/templates/firebase/functions/src/core/data/entities/page.ts +4 -0
- package/templates/firebase/functions/src/core/data/entities/subscription_entity.ts +76 -0
- package/templates/firebase/functions/src/core/data/entities/user_device_entity.ts +64 -0
- package/templates/firebase/functions/src/core/data/entities/user_entity.ts +43 -0
- package/templates/firebase/functions/src/core/data/repositories/repositories.ts +16 -0
- package/templates/firebase/functions/src/core/data/repositories/subscription_repository.ts +42 -0
- package/templates/firebase/functions/src/core/data/repositories/user_device_repository.ts +31 -0
- package/templates/firebase/functions/src/core/data/repositories/user_notifications_repository.ts +58 -0
- package/templates/firebase/functions/src/core/data/repositories/user_repository.ts +84 -0
- package/templates/firebase/functions/src/core/logger/logger.ts +13 -0
- package/templates/firebase/functions/src/core/storage/storage_manager.ts +52 -0
- package/templates/firebase/functions/src/core/utils/async_utils.ts +5 -0
- package/templates/firebase/functions/src/feature_requests/triggers.ts +3 -0
- package/templates/firebase/functions/src/index.ts +24 -0
- package/templates/firebase/functions/src/llm_chat/index.ts +181 -0
- package/templates/firebase/functions/src/notifications/admin_functions.ts +91 -0
- package/templates/firebase/functions/src/notifications/models/notification.ts +61 -0
- package/templates/firebase/functions/src/notifications/notifications_api.ts +147 -0
- package/templates/firebase/functions/src/notifications/triggers.ts +102 -0
- package/templates/firebase/functions/src/subscriptions/models/revenuecat_events.ts +162 -0
- package/templates/firebase/functions/src/subscriptions/models/subscription_status.ts +18 -0
- package/templates/firebase/functions/src/subscriptions/models/subscriptions.ts +173 -0
- package/templates/firebase/functions/src/subscriptions/subscriptions_functions.ts +135 -0
- package/templates/firebase/functions/src/subscriptions/triggers.ts +35 -0
- package/templates/firebase/functions/src/test/core/data/entities/entity_utils.spec.ts +44 -0
- package/templates/firebase/functions/tsconfig.dev.json +5 -0
- package/templates/firebase/functions/tsconfig.json +18 -0
- package/templates/firebase/home_widget_config.json +30 -0
- package/templates/firebase/ios/Flutter/AppFrameworkInfo.plist +24 -0
- package/templates/firebase/ios/Flutter/Debug.xcconfig +2 -0
- package/templates/firebase/ios/Flutter/Profile.xcconfig +2 -0
- package/templates/firebase/ios/Flutter/Release.xcconfig +2 -0
- package/templates/firebase/ios/HomeWidgetExtension/HomeWidgetBundle.swift +13 -0
- package/templates/firebase/ios/HomeWidgetExtension/Info.plist +29 -0
- package/templates/firebase/ios/HomeWidgetExtension/MyWidget.swift +86 -0
- package/templates/firebase/ios/HomeWidgetExtension.entitlements +10 -0
- package/templates/firebase/ios/NotificationService/Info.plist +31 -0
- package/templates/firebase/ios/NotificationService/NotificationService.swift +76 -0
- package/templates/firebase/ios/Podfile +111 -0
- package/templates/firebase/ios/Runner/AppDelegate.swift +75 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +1 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@1x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-50x50@2x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/LaunchBackground.imageset/Contents.json +21 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/LaunchBackground.imageset/background.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
- package/templates/firebase/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
- package/templates/firebase/ios/Runner/Base.lproj/LaunchScreen.storyboard +44 -0
- package/templates/firebase/ios/Runner/Base.lproj/Main.storyboard +26 -0
- package/templates/firebase/ios/Runner/Info.plist +132 -0
- package/templates/firebase/ios/Runner/Runner-Bridging-Header.h +1 -0
- package/templates/firebase/ios/Runner/Runner.entitlements +14 -0
- package/templates/firebase/ios/Runner/es.lproj/InfoPlist.strings +10 -0
- package/templates/firebase/ios/Runner/pt-BR.lproj/InfoPlist.strings +10 -0
- package/templates/firebase/ios/Runner/pt.lproj/InfoPlist.strings +10 -0
- package/templates/firebase/ios/Runner.xcodeproj/project.pbxproj +1108 -0
- package/templates/firebase/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/templates/firebase/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/templates/firebase/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/templates/firebase/ios/Runner.xcodeproj/xcshareddata/xcschemes/NotificationService.xcscheme +58 -0
- package/templates/firebase/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +101 -0
- package/templates/firebase/ios/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/templates/firebase/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/templates/firebase/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/templates/firebase/ios/RunnerTests/RunnerTests.swift +12 -0
- package/templates/firebase/lib/components/components.dart +27 -0
- package/templates/firebase/lib/components/kasy_accordion.dart +384 -0
- package/templates/firebase/lib/components/kasy_alert.dart +266 -0
- package/templates/firebase/lib/components/kasy_app_bar.dart +536 -0
- package/templates/firebase/lib/components/kasy_avatar.dart +549 -0
- package/templates/firebase/lib/components/kasy_avatar_presets.dart +104 -0
- package/templates/firebase/lib/components/kasy_badge.dart +278 -0
- package/templates/firebase/lib/components/kasy_bottom_sheet.dart +338 -0
- package/templates/firebase/lib/components/kasy_button.dart +926 -0
- package/templates/firebase/lib/components/kasy_card.dart +128 -0
- package/templates/firebase/lib/components/kasy_checkbox.dart +429 -0
- package/templates/firebase/lib/components/kasy_chip.dart +83 -0
- package/templates/firebase/lib/components/kasy_dialog.dart +789 -0
- package/templates/firebase/lib/components/kasy_otp_verification_bottom_sheet.dart +233 -0
- package/templates/firebase/lib/components/kasy_skeleton.dart +225 -0
- package/templates/firebase/lib/components/kasy_text_area.dart +392 -0
- package/templates/firebase/lib/components/kasy_text_field.dart +591 -0
- package/templates/firebase/lib/components/kasy_text_field_otp.dart +532 -0
- package/templates/firebase/lib/components/kasy_toast.dart +803 -0
- package/templates/firebase/lib/core/ads/ads_provider.dart +136 -0
- package/templates/firebase/lib/core/ads/ads_state.dart +15 -0
- package/templates/firebase/lib/core/animations/bottomfade_anim.dart +37 -0
- package/templates/firebase/lib/core/animations/movefade_anim.dart +34 -0
- package/templates/firebase/lib/core/animations/slideright_anim.dart +38 -0
- package/templates/firebase/lib/core/bottom_menu/bart_inner_paths.dart +5 -0
- package/templates/firebase/lib/core/bottom_menu/bottom_menu.dart +127 -0
- package/templates/firebase/lib/core/bottom_menu/bottom_router.dart +281 -0
- package/templates/firebase/lib/core/bottom_menu/kasy_bart_navigation.dart +22 -0
- package/templates/firebase/lib/core/bottom_menu/kasy_bottom_bar_factory.dart +127 -0
- package/templates/firebase/lib/core/bottom_menu/notification_bottom_item.dart +48 -0
- package/templates/firebase/lib/core/config/app_env.dart +100 -0
- package/templates/firebase/lib/core/config/features.dart +15 -0
- package/templates/firebase/lib/core/data/api/analytics_api.dart +124 -0
- package/templates/firebase/lib/core/data/api/base_api_exceptions.dart +28 -0
- package/templates/firebase/lib/core/data/api/firestore_retry.dart +29 -0
- package/templates/firebase/lib/core/data/api/http_client.dart +38 -0
- package/templates/firebase/lib/core/data/api/image.dart +52 -0
- package/templates/firebase/lib/core/data/api/remote_config_api.dart +170 -0
- package/templates/firebase/lib/core/data/api/storage_api.dart +115 -0
- package/templates/firebase/lib/core/data/api/tracking_api.dart +119 -0
- package/templates/firebase/lib/core/data/api/user_api.dart +115 -0
- package/templates/firebase/lib/core/data/entities/json_converters.dart +39 -0
- package/templates/firebase/lib/core/data/entities/upload_result.dart +48 -0
- package/templates/firebase/lib/core/data/entities/user_entity.dart +54 -0
- package/templates/firebase/lib/core/data/models/pageable.dart +12 -0
- package/templates/firebase/lib/core/data/models/subscription.dart +322 -0
- package/templates/firebase/lib/core/data/models/user.dart +107 -0
- package/templates/firebase/lib/core/data/repositories/user_repository.dart +130 -0
- package/templates/firebase/lib/core/dev_inspector/dev_inspector.dart +464 -0
- package/templates/firebase/lib/core/dev_inspector/dev_inspector_highlight.dart +88 -0
- package/templates/firebase/lib/core/dev_inspector/dev_inspector_info.dart +70 -0
- package/templates/firebase/lib/core/dev_inspector/dev_inspector_panel.dart +204 -0
- package/templates/firebase/lib/core/dev_inspector/dev_inspector_service.dart +321 -0
- package/templates/firebase/lib/core/extensions/date.ext.dart +32 -0
- package/templates/firebase/lib/core/guards/authenticated_guard.dart +37 -0
- package/templates/firebase/lib/core/guards/guard.dart +68 -0
- package/templates/firebase/lib/core/guards/user_info_guard.dart +55 -0
- package/templates/firebase/lib/core/haptics/haptic_feedback_notifier.dart +19 -0
- package/templates/firebase/lib/core/haptics/kasy_haptics.dart +27 -0
- package/templates/firebase/lib/core/home_widgets/home_widget_background_task.dart +41 -0
- package/templates/firebase/lib/core/home_widgets/home_widget_mywidget_service.dart +57 -0
- package/templates/firebase/lib/core/home_widgets/home_widget_service.dart +54 -0
- package/templates/firebase/lib/core/icons/kasy_icons.dart +86 -0
- package/templates/firebase/lib/core/initializer/models/run_state.dart +14 -0
- package/templates/firebase/lib/core/initializer/onstart_service.dart +38 -0
- package/templates/firebase/lib/core/initializer/onstart_widget.dart +83 -0
- package/templates/firebase/lib/core/initializer/pending_notification_handler.dart +48 -0
- package/templates/firebase/lib/core/keyboard_fix/keyboard_flicker_fix.dart +164 -0
- package/templates/firebase/lib/core/navigation/kasy_fade_page_transitions_builder.dart +34 -0
- package/templates/firebase/lib/core/navigation/kasy_material_page_route.dart +41 -0
- package/templates/firebase/lib/core/navigation/kasy_navigation_config.dart +29 -0
- package/templates/firebase/lib/core/navigation/kasy_page_transition.dart +40 -0
- package/templates/firebase/lib/core/navigation/kasy_route_transition.dart +68 -0
- package/templates/firebase/lib/core/navigation/kasy_transition_kind.dart +17 -0
- package/templates/firebase/lib/core/navigation/navigation.dart +6 -0
- package/templates/firebase/lib/core/rating/api/rating_api.dart +99 -0
- package/templates/firebase/lib/core/rating/models/rating.dart +52 -0
- package/templates/firebase/lib/core/rating/models/review.dart +70 -0
- package/templates/firebase/lib/core/rating/providers/rating_repository.dart +75 -0
- package/templates/firebase/lib/core/rating/widgets/rate_banner.dart +190 -0
- package/templates/firebase/lib/core/rating/widgets/rate_popup.dart +54 -0
- package/templates/firebase/lib/core/rating/widgets/review_popup.dart +175 -0
- package/templates/firebase/lib/core/security/biometric_copy_slot.dart +20 -0
- package/templates/firebase/lib/core/security/biometric_guard.dart +114 -0
- package/templates/firebase/lib/core/security/biometric_preference_notifier.dart +17 -0
- package/templates/firebase/lib/core/security/biometric_service.dart +79 -0
- package/templates/firebase/lib/core/security/biometric_ui_bundle.dart +136 -0
- package/templates/firebase/lib/core/security/secured_storage.dart +46 -0
- package/templates/firebase/lib/core/shared_preferences/shared_preferences.dart +70 -0
- package/templates/firebase/lib/core/sidebar/kasy_sidebar.dart +2021 -0
- package/templates/firebase/lib/core/states/components/maybe_ask_biometric_setup.dart +88 -0
- package/templates/firebase/lib/core/states/components/maybe_ask_rating.dart +49 -0
- package/templates/firebase/lib/core/states/components/maybe_show_update_bottom_sheet.dart +86 -0
- package/templates/firebase/lib/core/states/components/maybeshow_component.dart +110 -0
- package/templates/firebase/lib/core/states/events_dispatcher.dart +103 -0
- package/templates/firebase/lib/core/states/models/event_model.dart +118 -0
- package/templates/firebase/lib/core/states/models/user_state.dart +22 -0
- package/templates/firebase/lib/core/states/notifications_dispatcher.dart +81 -0
- package/templates/firebase/lib/core/states/translations.dart +11 -0
- package/templates/firebase/lib/core/states/user_state_notifier.dart +321 -0
- package/templates/firebase/lib/core/theme/colors.dart +262 -0
- package/templates/firebase/lib/core/theme/extensions/theme_extension.dart +48 -0
- package/templates/firebase/lib/core/theme/providers/kasy_theme.dart +76 -0
- package/templates/firebase/lib/core/theme/providers/theme_provider.dart +212 -0
- package/templates/firebase/lib/core/theme/radius.dart +33 -0
- package/templates/firebase/lib/core/theme/shadows.dart +64 -0
- package/templates/firebase/lib/core/theme/spacing.dart +44 -0
- package/templates/firebase/lib/core/theme/texts.dart +176 -0
- package/templates/firebase/lib/core/theme/theme.dart +24 -0
- package/templates/firebase/lib/core/theme/theme_data/theme_data.dart +32 -0
- package/templates/firebase/lib/core/theme/theme_data/theme_data_factory.dart +15 -0
- package/templates/firebase/lib/core/theme/universal_theme.dart +210 -0
- package/templates/firebase/lib/core/toast/toast_service.dart +55 -0
- package/templates/firebase/lib/core/ui/app_dialog.dart +26 -0
- package/templates/firebase/lib/core/web_device_preview/web_device_preview.dart +1126 -0
- package/templates/firebase/lib/core/widgets/debouncer.dart +31 -0
- package/templates/firebase/lib/core/widgets/kasy_hover.dart +166 -0
- package/templates/firebase/lib/core/widgets/kasy_pressable.dart +2 -0
- package/templates/firebase/lib/core/widgets/kasy_pressable_depth.dart +161 -0
- package/templates/firebase/lib/core/widgets/kasy_scroll_behavior.dart +17 -0
- package/templates/firebase/lib/core/widgets/keyboard_visibility.dart +75 -0
- package/templates/firebase/lib/core/widgets/page_background.dart +71 -0
- package/templates/firebase/lib/core/widgets/page_not_found.dart +15 -0
- package/templates/firebase/lib/core/widgets/responsive_layout.dart +215 -0
- package/templates/firebase/lib/core/widgets/update_bottom_sheet.dart +192 -0
- package/templates/firebase/lib/environnements.dart +160 -0
- package/templates/firebase/lib/features/authentication/api/authentication_api.dart +528 -0
- package/templates/firebase/lib/features/authentication/api/authentication_api_interface.dart +84 -0
- package/templates/firebase/lib/features/authentication/providers/models/email.dart +36 -0
- package/templates/firebase/lib/features/authentication/providers/models/password.dart +37 -0
- package/templates/firebase/lib/features/authentication/providers/models/phone_signin_state.dart +21 -0
- package/templates/firebase/lib/features/authentication/providers/models/recover_state.dart +21 -0
- package/templates/firebase/lib/features/authentication/providers/models/signin_state.dart +20 -0
- package/templates/firebase/lib/features/authentication/providers/models/signup_state.dart +20 -0
- package/templates/firebase/lib/features/authentication/providers/phone_auth_notifier.dart +132 -0
- package/templates/firebase/lib/features/authentication/providers/recover_provider.dart +51 -0
- package/templates/firebase/lib/features/authentication/providers/signin_state_provider.dart +166 -0
- package/templates/firebase/lib/features/authentication/providers/signup_state_provider.dart +67 -0
- package/templates/firebase/lib/features/authentication/repositories/authentication_repository.dart +399 -0
- package/templates/firebase/lib/features/authentication/repositories/exceptions/authentication_exceptions.dart +85 -0
- package/templates/firebase/lib/features/authentication/ui/components/apple_signin.dart +19 -0
- package/templates/firebase/lib/features/authentication/ui/components/facebook_signin.dart +19 -0
- package/templates/firebase/lib/features/authentication/ui/components/google_signin.dart +32 -0
- package/templates/firebase/lib/features/authentication/ui/components/otp_verification.dart +100 -0
- package/templates/firebase/lib/features/authentication/ui/components/phone_input.dart +109 -0
- package/templates/firebase/lib/features/authentication/ui/phone_auth_page.dart +60 -0
- package/templates/firebase/lib/features/authentication/ui/recover_password_page.dart +101 -0
- package/templates/firebase/lib/features/authentication/ui/signin_page.dart +321 -0
- package/templates/firebase/lib/features/authentication/ui/signup_page.dart +310 -0
- package/templates/firebase/lib/features/authentication/ui/widgets/auth_brand.dart +35 -0
- package/templates/firebase/lib/features/authentication/ui/widgets/auth_page_back_button.dart +149 -0
- package/templates/firebase/lib/features/authentication/ui/widgets/otp_input.dart +194 -0
- package/templates/firebase/lib/features/authentication/ui/widgets/recover_password_result.dart +62 -0
- package/templates/firebase/lib/features/authentication/ui/widgets/round_signin.dart +73 -0
- package/templates/firebase/lib/features/authentication/ui/widgets/social_separator.dart +26 -0
- package/templates/firebase/lib/features/dev/keyboard_test_page.dart +93 -0
- package/templates/firebase/lib/features/feedbacks/api/entities/feature_request_entity.dart +27 -0
- package/templates/firebase/lib/features/feedbacks/api/entities/feature_vote_entity.dart +27 -0
- package/templates/firebase/lib/features/feedbacks/api/feature_request_api.dart +51 -0
- package/templates/firebase/lib/features/feedbacks/api/feature_vote_api.dart +79 -0
- package/templates/firebase/lib/features/feedbacks/models/feature_requests.dart +48 -0
- package/templates/firebase/lib/features/feedbacks/models/feedback_state.dart +43 -0
- package/templates/firebase/lib/features/feedbacks/providers/feedback_page_notifier.dart +147 -0
- package/templates/firebase/lib/features/feedbacks/repositories/feature_request_repository.dart +92 -0
- package/templates/firebase/lib/features/feedbacks/ui/component/add_feature_form.dart +112 -0
- package/templates/firebase/lib/features/feedbacks/ui/feedback_page.dart +184 -0
- package/templates/firebase/lib/features/feedbacks/ui/widgets/add_feature_button.dart +66 -0
- package/templates/firebase/lib/features/feedbacks/ui/widgets/feature_card.dart +266 -0
- package/templates/firebase/lib/features/home/design_system_page.dart +552 -0
- package/templates/firebase/lib/features/home/home_components_page.dart +314 -0
- package/templates/firebase/lib/features/home/home_components_preview_page.dart +791 -0
- package/templates/firebase/lib/features/home/home_components_preview_registry.dart +7712 -0
- package/templates/firebase/lib/features/home/home_features_page.dart +207 -0
- package/templates/firebase/lib/features/home/home_page.dart +348 -0
- package/templates/firebase/lib/features/llm_chat/api/llm_chat_api.dart +50 -0
- package/templates/firebase/lib/features/llm_chat/api/llm_chat_message_entity.dart +35 -0
- package/templates/firebase/lib/features/llm_chat/llm_chat_page.dart +352 -0
- package/templates/firebase/lib/features/llm_chat/providers/llm_chat_notifier.dart +315 -0
- package/templates/firebase/lib/features/llm_chat/ui/widgets/llm_chat_avatars.dart +148 -0
- package/templates/firebase/lib/features/llm_chat/ui/widgets/llm_chat_composer.dart +124 -0
- package/templates/firebase/lib/features/local_reminder/providers/reminder_notifier.dart +81 -0
- package/templates/firebase/lib/features/local_reminder/repositories/reminder_preferences.dart +76 -0
- package/templates/firebase/lib/features/local_reminder/ui/reminder_page.dart +288 -0
- package/templates/firebase/lib/features/notifications/api/device_api.dart +433 -0
- package/templates/firebase/lib/features/notifications/api/entities/device_entity.dart +62 -0
- package/templates/firebase/lib/features/notifications/api/entities/notifications_entity.dart +35 -0
- package/templates/firebase/lib/features/notifications/api/local_notifier.dart +409 -0
- package/templates/firebase/lib/features/notifications/api/notifications_api.dart +319 -0
- package/templates/firebase/lib/features/notifications/providers/models/device.dart +27 -0
- package/templates/firebase/lib/features/notifications/providers/models/notification.dart +196 -0
- package/templates/firebase/lib/features/notifications/providers/models/notification_list.dart +38 -0
- package/templates/firebase/lib/features/notifications/providers/notifications_provider.dart +120 -0
- package/templates/firebase/lib/features/notifications/repositories/background_notification_handler.dart +13 -0
- package/templates/firebase/lib/features/notifications/repositories/device_repository.dart +137 -0
- package/templates/firebase/lib/features/notifications/repositories/notifications_repository.dart +214 -0
- package/templates/firebase/lib/features/notifications/shared/att_permission.dart +75 -0
- package/templates/firebase/lib/features/notifications/shared/notification_permission_bottom_sheet.dart +144 -0
- package/templates/firebase/lib/features/notifications/ui/components/notification_settings_sheet.dart +169 -0
- package/templates/firebase/lib/features/notifications/ui/components/notification_tile.dart +46 -0
- package/templates/firebase/lib/features/notifications/ui/components/notifications_header.dart +32 -0
- package/templates/firebase/lib/features/notifications/ui/components/push_notification_switcher.dart +106 -0
- package/templates/firebase/lib/features/notifications/ui/notifications_page.dart +202 -0
- package/templates/firebase/lib/features/notifications/ui/request_notification_permission.dart +84 -0
- package/templates/firebase/lib/features/notifications/ui/widgets/empty_notifications.dart +73 -0
- package/templates/firebase/lib/features/notifications/ui/widgets/notification_tile.dart +362 -0
- package/templates/firebase/lib/features/onboarding/api/entities/user_info_entity.dart +24 -0
- package/templates/firebase/lib/features/onboarding/api/user_infos_api.dart +71 -0
- package/templates/firebase/lib/features/onboarding/models/user_info.dart +92 -0
- package/templates/firebase/lib/features/onboarding/providers/onboarding_model.dart +15 -0
- package/templates/firebase/lib/features/onboarding/providers/onboarding_provider.dart +78 -0
- package/templates/firebase/lib/features/onboarding/repositories/user_infos_repository.dart +29 -0
- package/templates/firebase/lib/features/onboarding/ui/animations/page_transitions.dart +33 -0
- package/templates/firebase/lib/features/onboarding/ui/components/onboarding_att_setup.dart +66 -0
- package/templates/firebase/lib/features/onboarding/ui/components/onboarding_features.dart +76 -0
- package/templates/firebase/lib/features/onboarding/ui/components/onboarding_loader.dart +92 -0
- package/templates/firebase/lib/features/onboarding/ui/components/onboarding_notifications_setup.dart +76 -0
- package/templates/firebase/lib/features/onboarding/ui/components/onboarding_questions.dart +89 -0
- package/templates/firebase/lib/features/onboarding/ui/onboarding_page.dart +108 -0
- package/templates/firebase/lib/features/onboarding/ui/widgets/onboarding_background.dart +80 -0
- package/templates/firebase/lib/features/onboarding/ui/widgets/onboarding_feature.dart +145 -0
- package/templates/firebase/lib/features/onboarding/ui/widgets/onboarding_illustration_scaffold.dart +125 -0
- package/templates/firebase/lib/features/onboarding/ui/widgets/onboarding_progress.dart +84 -0
- package/templates/firebase/lib/features/onboarding/ui/widgets/onboarding_radio_question.dart +173 -0
- package/templates/firebase/lib/features/onboarding/ui/widgets/onboarding_reassurance.dart +44 -0
- package/templates/firebase/lib/features/onboarding/ui/widgets/onboarding_sticky_footer.dart +77 -0
- package/templates/firebase/lib/features/onboarding/ui/widgets/selectable_row_tile.dart +392 -0
- package/templates/firebase/lib/features/settings/settings_page.dart +460 -0
- package/templates/firebase/lib/features/settings/ui/components/admin/admin_bottom_sheet.dart +301 -0
- package/templates/firebase/lib/features/settings/ui/components/admin/admin_home_widgets.dart +38 -0
- package/templates/firebase/lib/features/settings/ui/components/admin/admin_paywalls.dart +53 -0
- package/templates/firebase/lib/features/settings/ui/components/admin/admin_routes.dart +22 -0
- package/templates/firebase/lib/features/settings/ui/components/admin/send_push_notification_page.dart +366 -0
- package/templates/firebase/lib/features/settings/ui/components/admin/send_push_notifier.dart +40 -0
- package/templates/firebase/lib/features/settings/ui/components/avatar_component.dart +430 -0
- package/templates/firebase/lib/features/settings/ui/components/delete_user_component.dart +28 -0
- package/templates/firebase/lib/features/settings/ui/components/language_switcher.dart +163 -0
- package/templates/firebase/lib/features/settings/ui/widgets/admin_card.dart +59 -0
- package/templates/firebase/lib/features/settings/ui/widgets/avatar_utils.dart +51 -0
- package/templates/firebase/lib/features/settings/ui/widgets/round_progress.dart +151 -0
- package/templates/firebase/lib/features/settings/ui/widgets/settings_bottom_sheet_option_tile.dart +52 -0
- package/templates/firebase/lib/features/settings/ui/widgets/settings_tile.dart +163 -0
- package/templates/firebase/lib/features/subscription/api/entities/subscription_entity.dart +40 -0
- package/templates/firebase/lib/features/subscription/api/inapp_subscription_api.dart +389 -0
- package/templates/firebase/lib/features/subscription/api/subscription_api.dart +39 -0
- package/templates/firebase/lib/features/subscription/providers/models/premium_state.dart +35 -0
- package/templates/firebase/lib/features/subscription/providers/premium_page_provider.dart +259 -0
- package/templates/firebase/lib/features/subscription/repositories/subscription_repository.dart +177 -0
- package/templates/firebase/lib/features/subscription/shared/maybeshow_premium.dart +85 -0
- package/templates/firebase/lib/features/subscription/ui/component/active_premium_content.dart +171 -0
- package/templates/firebase/lib/features/subscription/ui/component/paywall_minimal.dart +146 -0
- package/templates/firebase/lib/features/subscription/ui/component/paywall_row.dart +332 -0
- package/templates/firebase/lib/features/subscription/ui/component/paywall_with_switch.dart +207 -0
- package/templates/firebase/lib/features/subscription/ui/component/premium_content.dart +157 -0
- package/templates/firebase/lib/features/subscription/ui/component/premium_page_factory.dart +161 -0
- package/templates/firebase/lib/features/subscription/ui/premium_page.dart +139 -0
- package/templates/firebase/lib/features/subscription/ui/widgets/comparison_table.dart +346 -0
- package/templates/firebase/lib/features/subscription/ui/widgets/feature_line.dart +131 -0
- package/templates/firebase/lib/features/subscription/ui/widgets/paywall_empty_state.dart +68 -0
- package/templates/firebase/lib/features/subscription/ui/widgets/premium_background.dart +63 -0
- package/templates/firebase/lib/features/subscription/ui/widgets/premium_background_gradient.dart +53 -0
- package/templates/firebase/lib/features/subscription/ui/widgets/premium_banner.dart +80 -0
- package/templates/firebase/lib/features/subscription/ui/widgets/premium_bottom_menu.dart +102 -0
- package/templates/firebase/lib/features/subscription/ui/widgets/premium_card.dart +26 -0
- package/templates/firebase/lib/features/subscription/ui/widgets/premium_close_button.dart +61 -0
- package/templates/firebase/lib/features/subscription/ui/widgets/premium_feature.dart +39 -0
- package/templates/firebase/lib/features/subscription/ui/widgets/selectable_col.dart +377 -0
- package/templates/firebase/lib/features/subscription/ui/widgets/selectable_row.dart +436 -0
- package/templates/firebase/lib/features/subscription/ui/widgets/trial_switcher.dart +85 -0
- package/templates/firebase/lib/features/subscription/ui/widgets/unsubscribe_feedback_popup.dart +123 -0
- package/templates/firebase/lib/firebase_options.dart +75 -0
- package/templates/firebase/lib/google_auth_options.dart +10 -0
- package/templates/firebase/lib/i18n/app_locale_display.dart +17 -0
- package/templates/firebase/lib/i18n/en.i18n.json +514 -0
- package/templates/firebase/lib/i18n/es.i18n.json +514 -0
- package/templates/firebase/lib/i18n/pt.i18n.json +514 -0
- package/templates/firebase/lib/i18n/widgets/locale_code_badge.dart +47 -0
- package/templates/firebase/lib/main.dart +263 -0
- package/templates/firebase/lib/router.dart +226 -0
- package/templates/firebase/login-redesign-preview.png +0 -0
- package/templates/firebase/pubspec.yaml +177 -0
- package/templates/firebase/scripts/bump-ios-version.js +38 -0
- package/templates/firebase/scripts/release-ios.sh +137 -0
- package/templates/firebase/slang.yaml +7 -0
- package/templates/firebase/storage.rules +12 -0
- package/templates/firebase/test/core/data/api/analytics_api_fake.dart +25 -0
- package/templates/firebase/test/core/data/api/fake_remote_config_api.dart +45 -0
- package/templates/firebase/test/core/data/api/storage_api_fake.dart +28 -0
- package/templates/firebase/test/core/data/models/subscription_test.dart +42 -0
- package/templates/firebase/test/core/data/repositories/user_repository_test.dart +56 -0
- package/templates/firebase/test/core/guards/guard_test.dart +78 -0
- package/templates/firebase/test/core/navigation/kasy_page_transition_test.dart +30 -0
- package/templates/firebase/test/core/onstart_service_test.dart +18 -0
- package/templates/firebase/test/core/rating/rating_api_fake.dart +58 -0
- package/templates/firebase/test/core/rating/rating_banner_test.dart +117 -0
- package/templates/firebase/test/core/rating/rating_test.dart +60 -0
- package/templates/firebase/test/core/security/secured_storage_fake.dart +33 -0
- package/templates/firebase/test/core/states/event_dispatcher_test.dart +269 -0
- package/templates/firebase/test/core/states/user_state_notifier_test.dart +244 -0
- package/templates/firebase/test/core/widgets/responsive_layout_test.dart +50 -0
- package/templates/firebase/test/device_test_utils.dart +98 -0
- package/templates/firebase/test/features/authentication/data/api/auth_api_fake.dart +169 -0
- package/templates/firebase/test/features/authentication/data/api/user_api_fake.dart +86 -0
- package/templates/firebase/test/features/authentication/lost_password_page_test.dart +59 -0
- package/templates/firebase/test/features/authentication/repositories/authentication_repository_test.dart +88 -0
- package/templates/firebase/test/features/authentication/signin_page_test.dart +133 -0
- package/templates/firebase/test/features/authentication/signup_page_test.dart +136 -0
- package/templates/firebase/test/features/notifications/data/device_api_fake.dart +66 -0
- package/templates/firebase/test/features/notifications/data/fake_facebook_api.dart +40 -0
- package/templates/firebase/test/features/notifications/data/local_notifier_fake.dart +59 -0
- package/templates/firebase/test/features/notifications/data/notifications_api_fake.dart +120 -0
- package/templates/firebase/test/features/notifications/data/notifications_settings_fake.dart +34 -0
- package/templates/firebase/test/features/notifications/providers/device_repository_test.dart +68 -0
- package/templates/firebase/test/features/notifications/providers/notifications_repository_test.dart +74 -0
- package/templates/firebase/test/features/notifications/ui/notifications_page_test.dart +69 -0
- package/templates/firebase/test/features/subscription/api/fake_inapp_subscription_api.dart +85 -0
- package/templates/firebase/test/features/subscription/api/fake_revenuecat_product.dart +186 -0
- package/templates/firebase/test/features/subscription/api/fake_subscription_api.dart +11 -0
- package/templates/firebase/test/features/subscription/subscription_page_test.dart +119 -0
- package/templates/firebase/test/firebase_test_utils.dart +25 -0
- package/templates/firebase/test/test_utils.dart +272 -0
- package/templates/firebase/web/favicon.png +0 -0
- package/templates/firebase/web/firebase-messaging-sw.js +27 -0
- package/templates/firebase/web/icons/Icon-192.png +0 -0
- package/templates/firebase/web/icons/Icon-512.png +0 -0
- package/templates/firebase/web/icons/Icon-maskable-192.png +0 -0
- package/templates/firebase/web/icons/Icon-maskable-512.png +0 -0
- package/templates/firebase/web/index.html +110 -0
- package/templates/firebase/web/local_notifications.js +31 -0
- package/templates/firebase/web/manifest.json +35 -0
- package/templates/firebase/web/splash/img/dark-1x.png +0 -0
- package/templates/firebase/web/splash/img/dark-2x.png +0 -0
- package/templates/firebase/web/splash/img/dark-3x.png +0 -0
- package/templates/firebase/web/splash/img/dark-4x.png +0 -0
- package/templates/firebase/web/splash/img/light-1x.png +0 -0
- package/templates/firebase/web/splash/img/light-2x.png +0 -0
- package/templates/firebase/web/splash/img/light-3x.png +0 -0
- package/templates/firebase/web/splash/img/light-4x.png +0 -0
|
@@ -0,0 +1,1108 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 54;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
08F5C03CC0617C59B7E3D3C0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE174E748DE4A125D95DF230 /* Foundation.framework */; };
|
|
11
|
+
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
|
|
12
|
+
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
|
|
13
|
+
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
|
|
14
|
+
4293487F24E332DAE87C80B9 /* HomeWidgetBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94F9BABEDE34A97D410DADE6 /* HomeWidgetBundle.swift */; };
|
|
15
|
+
4CE5D416CAB1966AC6E98AD4 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = D80A50321761E47FC646B36E /* GoogleService-Info.plist */; };
|
|
16
|
+
57EB29CC62E674F116201C82 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53C469E3BD91D6375A6D59E3 /* Pods_Runner.framework */; };
|
|
17
|
+
70CC0C2F0A0D25C960C69F27 /* NotificationService.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 90F5CF0E4239027764EF6048 /* NotificationService.appex */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
|
|
18
|
+
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
|
|
19
|
+
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
|
|
20
|
+
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
|
|
21
|
+
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
|
|
22
|
+
A9D6B9849D225D94834D8EAF /* Runner.entitlements in Resources */ = {isa = PBXBuildFile; fileRef = 7FEBCF6657B08EAD7DF25253 /* Runner.entitlements */; };
|
|
23
|
+
AF2B3D1180449C16F1A5AB34 /* MyWidget.swift in Sources */ = {isa = PBXBuildFile; fileRef = A006577C39A4B9DB44280FD0 /* MyWidget.swift */; };
|
|
24
|
+
BDAFDAD95496E51671FE8782 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CE174E748DE4A125D95DF230 /* Foundation.framework */; };
|
|
25
|
+
C5699C3B3B0DD6844421793E /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6A5AB8B63F57CD737571317C /* Pods_RunnerTests.framework */; };
|
|
26
|
+
C85C12FAB58C0C3AAA81F6CA /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 41A7FCD63FA8E3B99B0F545D /* StoreKit.framework */; };
|
|
27
|
+
D6BA479BDD0F4CE849C0D049 /* HomeWidgetExtension.entitlements in Resources */ = {isa = PBXBuildFile; fileRef = 08674E7EDA8E3EE95DEE05ED /* HomeWidgetExtension.entitlements */; };
|
|
28
|
+
F2AABBCC01CF900F00111001 /* InfoPlist.strings (pt-BR) in Resources */ = {isa = PBXBuildFile; fileRef = F2AABBCC01CF900F00110001 /* InfoPlist.strings (pt-BR) */; };
|
|
29
|
+
F2AABBCC01CF900F00111002 /* InfoPlist.strings (es) in Resources */ = {isa = PBXBuildFile; fileRef = F2AABBCC01CF900F00110002 /* InfoPlist.strings (es) */; };
|
|
30
|
+
F2AABBCC01CF900F00111003 /* InfoPlist.strings (pt) in Resources */ = {isa = PBXBuildFile; fileRef = F2AABBCC01CF900F00110003 /* InfoPlist.strings (pt) */; };
|
|
31
|
+
F528FFE4E539005C82366676 /* NotificationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78051AE248B767436470C594 /* NotificationService.swift */; };
|
|
32
|
+
FDE2FAED72B6381EF2AE2EFB /* HomeWidgetExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = E14AD1CABD6719BC0E47D4F7 /* HomeWidgetExtension.appex */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; };
|
|
33
|
+
/* End PBXBuildFile section */
|
|
34
|
+
|
|
35
|
+
/* Begin PBXContainerItemProxy section */
|
|
36
|
+
331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {
|
|
37
|
+
isa = PBXContainerItemProxy;
|
|
38
|
+
containerPortal = 97C146E61CF9000F007C117D /* Project object */;
|
|
39
|
+
proxyType = 1;
|
|
40
|
+
remoteGlobalIDString = 97C146ED1CF9000F007C117D;
|
|
41
|
+
remoteInfo = Runner;
|
|
42
|
+
};
|
|
43
|
+
3D3D88F4919F8F73A10D569B /* PBXContainerItemProxy */ = {
|
|
44
|
+
isa = PBXContainerItemProxy;
|
|
45
|
+
containerPortal = 97C146E61CF9000F007C117D /* Project object */;
|
|
46
|
+
proxyType = 1;
|
|
47
|
+
remoteGlobalIDString = F69D0B03589A2596E1F689E3;
|
|
48
|
+
remoteInfo = HomeWidgetExtension;
|
|
49
|
+
};
|
|
50
|
+
/* End PBXContainerItemProxy section */
|
|
51
|
+
|
|
52
|
+
/* Begin PBXCopyFilesBuildPhase section */
|
|
53
|
+
9705A1C41CF9048500538489 /* Embed Frameworks */ = {
|
|
54
|
+
isa = PBXCopyFilesBuildPhase;
|
|
55
|
+
buildActionMask = 2147483647;
|
|
56
|
+
dstPath = "";
|
|
57
|
+
dstSubfolderSpec = 10;
|
|
58
|
+
files = (
|
|
59
|
+
);
|
|
60
|
+
name = "Embed Frameworks";
|
|
61
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
62
|
+
};
|
|
63
|
+
BFF7ACFBDE178753611103A7 /* Embed Foundation Extensions */ = {
|
|
64
|
+
isa = PBXCopyFilesBuildPhase;
|
|
65
|
+
buildActionMask = 2147483647;
|
|
66
|
+
dstPath = "";
|
|
67
|
+
dstSubfolderSpec = 13;
|
|
68
|
+
files = (
|
|
69
|
+
FDE2FAED72B6381EF2AE2EFB /* HomeWidgetExtension.appex in Embed Foundation Extensions */,
|
|
70
|
+
70CC0C2F0A0D25C960C69F27 /* NotificationService.appex in Embed Foundation Extensions */,
|
|
71
|
+
);
|
|
72
|
+
name = "Embed Foundation Extensions";
|
|
73
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
74
|
+
};
|
|
75
|
+
/* End PBXCopyFilesBuildPhase section */
|
|
76
|
+
|
|
77
|
+
/* Begin PBXFileReference section */
|
|
78
|
+
01C293522541E7BB722C31FB /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
79
|
+
08674E7EDA8E3EE95DEE05ED /* HomeWidgetExtension.entitlements */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.entitlements; path = HomeWidgetExtension.entitlements; sourceTree = "<group>"; };
|
|
80
|
+
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
|
|
81
|
+
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
|
|
82
|
+
21DB9BC9DAE26AF187C96DDC /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
|
|
83
|
+
32B3A5A2C2D74E9C1C9446F5 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = "<group>"; };
|
|
84
|
+
331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; };
|
|
85
|
+
331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
86
|
+
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
|
|
87
|
+
41A7FCD63FA8E3B99B0F545D /* StoreKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = StoreKit.framework; sourceTree = "<group>"; };
|
|
88
|
+
53C469E3BD91D6375A6D59E3 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
89
|
+
6A5AB8B63F57CD737571317C /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
90
|
+
6C9DAA6362187FC70E12D0B8 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
|
|
91
|
+
700D68A9F382886AD7F24CCA /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
92
|
+
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
|
|
93
|
+
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
|
94
|
+
78051AE248B767436470C594 /* NotificationService.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = NotificationService.swift; sourceTree = "<group>"; };
|
|
95
|
+
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
|
|
96
|
+
7FEBCF6657B08EAD7DF25253 /* Runner.entitlements */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.entitlements; name = Runner.entitlements; path = Runner/Runner.entitlements; sourceTree = "<group>"; };
|
|
97
|
+
90F5CF0E4239027764EF6048 /* NotificationService.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = NotificationService.appex; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
98
|
+
94F9BABEDE34A97D410DADE6 /* HomeWidgetBundle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = HomeWidgetBundle.swift; sourceTree = "<group>"; };
|
|
99
|
+
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
|
|
100
|
+
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
|
|
101
|
+
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
102
|
+
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
|
103
|
+
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
|
104
|
+
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
105
|
+
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
106
|
+
A006577C39A4B9DB44280FD0 /* MyWidget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = MyWidget.swift; sourceTree = "<group>"; };
|
|
107
|
+
A1E7B3FCB9D87BFBCB766568 /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = "<group>"; };
|
|
108
|
+
B5D3E8F12A4B5C6D0083083F /* Profile.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Profile.xcconfig; path = Flutter/Profile.xcconfig; sourceTree = "<group>"; };
|
|
109
|
+
BC31FEFC0C2AC3E4101BBA2D /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
110
|
+
CE174E748DE4A125D95DF230 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
|
|
111
|
+
D80A50321761E47FC646B36E /* GoogleService-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = "GoogleService-Info.plist"; path = "Runner/GoogleService-Info.plist"; sourceTree = "<group>"; };
|
|
112
|
+
E14AD1CABD6719BC0E47D4F7 /* HomeWidgetExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = HomeWidgetExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
113
|
+
E1DE1E45C99DD0E3988219B9 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
|
|
114
|
+
F2AABBCC01CF900F00110001 /* InfoPlist.strings (pt-BR) */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.strings; name = "InfoPlist.strings (pt-BR)"; path = "pt-BR.lproj/InfoPlist.strings"; sourceTree = "<group>"; };
|
|
115
|
+
F2AABBCC01CF900F00110002 /* InfoPlist.strings (es) */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.strings; name = "InfoPlist.strings (es)"; path = es.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
|
116
|
+
F2AABBCC01CF900F00110003 /* InfoPlist.strings (pt) */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.strings; name = "InfoPlist.strings (pt)"; path = pt.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
|
117
|
+
/* End PBXFileReference section */
|
|
118
|
+
|
|
119
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
120
|
+
19E963C162856798768CA929 /* Frameworks */ = {
|
|
121
|
+
isa = PBXFrameworksBuildPhase;
|
|
122
|
+
buildActionMask = 2147483647;
|
|
123
|
+
files = (
|
|
124
|
+
BDAFDAD95496E51671FE8782 /* Foundation.framework in Frameworks */,
|
|
125
|
+
);
|
|
126
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
127
|
+
};
|
|
128
|
+
97C146EB1CF9000F007C117D /* Frameworks */ = {
|
|
129
|
+
isa = PBXFrameworksBuildPhase;
|
|
130
|
+
buildActionMask = 2147483647;
|
|
131
|
+
files = (
|
|
132
|
+
C85C12FAB58C0C3AAA81F6CA /* StoreKit.framework in Frameworks */,
|
|
133
|
+
57EB29CC62E674F116201C82 /* Pods_Runner.framework in Frameworks */,
|
|
134
|
+
);
|
|
135
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
136
|
+
};
|
|
137
|
+
C6450B01FEF4626B9088FC34 /* Frameworks */ = {
|
|
138
|
+
isa = PBXFrameworksBuildPhase;
|
|
139
|
+
buildActionMask = 2147483647;
|
|
140
|
+
files = (
|
|
141
|
+
C5699C3B3B0DD6844421793E /* Pods_RunnerTests.framework in Frameworks */,
|
|
142
|
+
);
|
|
143
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
144
|
+
};
|
|
145
|
+
CD1BBB94BBF613FD7277710E /* Frameworks */ = {
|
|
146
|
+
isa = PBXFrameworksBuildPhase;
|
|
147
|
+
buildActionMask = 2147483647;
|
|
148
|
+
files = (
|
|
149
|
+
08F5C03CC0617C59B7E3D3C0 /* Foundation.framework in Frameworks */,
|
|
150
|
+
);
|
|
151
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
152
|
+
};
|
|
153
|
+
/* End PBXFrameworksBuildPhase section */
|
|
154
|
+
|
|
155
|
+
/* Begin PBXGroup section */
|
|
156
|
+
331C8082294A63A400263BE5 /* RunnerTests */ = {
|
|
157
|
+
isa = PBXGroup;
|
|
158
|
+
children = (
|
|
159
|
+
331C807B294A618700263BE5 /* RunnerTests.swift */,
|
|
160
|
+
);
|
|
161
|
+
path = RunnerTests;
|
|
162
|
+
sourceTree = "<group>";
|
|
163
|
+
};
|
|
164
|
+
4563BCE714030784B8DEF780 /* iOS */ = {
|
|
165
|
+
isa = PBXGroup;
|
|
166
|
+
children = (
|
|
167
|
+
CE174E748DE4A125D95DF230 /* Foundation.framework */,
|
|
168
|
+
);
|
|
169
|
+
name = iOS;
|
|
170
|
+
sourceTree = "<group>";
|
|
171
|
+
};
|
|
172
|
+
51AB186819EF6F8AEF92A995 /* Frameworks */ = {
|
|
173
|
+
isa = PBXGroup;
|
|
174
|
+
children = (
|
|
175
|
+
41A7FCD63FA8E3B99B0F545D /* StoreKit.framework */,
|
|
176
|
+
4563BCE714030784B8DEF780 /* iOS */,
|
|
177
|
+
53C469E3BD91D6375A6D59E3 /* Pods_Runner.framework */,
|
|
178
|
+
6A5AB8B63F57CD737571317C /* Pods_RunnerTests.framework */,
|
|
179
|
+
);
|
|
180
|
+
name = Frameworks;
|
|
181
|
+
sourceTree = "<group>";
|
|
182
|
+
};
|
|
183
|
+
9650DDCB7D1059F9153B4212 /* NotificationService */ = {
|
|
184
|
+
isa = PBXGroup;
|
|
185
|
+
children = (
|
|
186
|
+
78051AE248B767436470C594 /* NotificationService.swift */,
|
|
187
|
+
01C293522541E7BB722C31FB /* Info.plist */,
|
|
188
|
+
);
|
|
189
|
+
name = NotificationService;
|
|
190
|
+
path = NotificationService;
|
|
191
|
+
sourceTree = SOURCE_ROOT;
|
|
192
|
+
};
|
|
193
|
+
9740EEB11CF90186004384FC /* Flutter */ = {
|
|
194
|
+
isa = PBXGroup;
|
|
195
|
+
children = (
|
|
196
|
+
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
|
|
197
|
+
9740EEB21CF90195004384FC /* Debug.xcconfig */,
|
|
198
|
+
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
|
|
199
|
+
B5D3E8F12A4B5C6D0083083F /* Profile.xcconfig */,
|
|
200
|
+
9740EEB31CF90195004384FC /* Generated.xcconfig */,
|
|
201
|
+
);
|
|
202
|
+
name = Flutter;
|
|
203
|
+
sourceTree = "<group>";
|
|
204
|
+
};
|
|
205
|
+
97C146E51CF9000F007C117D = {
|
|
206
|
+
isa = PBXGroup;
|
|
207
|
+
children = (
|
|
208
|
+
9740EEB11CF90186004384FC /* Flutter */,
|
|
209
|
+
97C146F01CF9000F007C117D /* Runner */,
|
|
210
|
+
97C146EF1CF9000F007C117D /* Products */,
|
|
211
|
+
331C8082294A63A400263BE5 /* RunnerTests */,
|
|
212
|
+
7FEBCF6657B08EAD7DF25253 /* Runner.entitlements */,
|
|
213
|
+
51AB186819EF6F8AEF92A995 /* Frameworks */,
|
|
214
|
+
D80A50321761E47FC646B36E /* GoogleService-Info.plist */,
|
|
215
|
+
A49C2FE0931027D3AA2443C0 /* HomeWidgetExtension */,
|
|
216
|
+
08674E7EDA8E3EE95DEE05ED /* HomeWidgetExtension.entitlements */,
|
|
217
|
+
B6440F83398B6F579412A900 /* Pods */,
|
|
218
|
+
9650DDCB7D1059F9153B4212 /* NotificationService */,
|
|
219
|
+
);
|
|
220
|
+
sourceTree = "<group>";
|
|
221
|
+
};
|
|
222
|
+
97C146EF1CF9000F007C117D /* Products */ = {
|
|
223
|
+
isa = PBXGroup;
|
|
224
|
+
children = (
|
|
225
|
+
97C146EE1CF9000F007C117D /* Runner.app */,
|
|
226
|
+
331C8081294A63A400263BE5 /* RunnerTests.xctest */,
|
|
227
|
+
E14AD1CABD6719BC0E47D4F7 /* HomeWidgetExtension.appex */,
|
|
228
|
+
90F5CF0E4239027764EF6048 /* NotificationService.appex */,
|
|
229
|
+
);
|
|
230
|
+
name = Products;
|
|
231
|
+
sourceTree = "<group>";
|
|
232
|
+
};
|
|
233
|
+
97C146F01CF9000F007C117D /* Runner */ = {
|
|
234
|
+
isa = PBXGroup;
|
|
235
|
+
children = (
|
|
236
|
+
F2AABBCC01CF900F00110001 /* InfoPlist.strings (pt-BR) */,
|
|
237
|
+
F2AABBCC01CF900F00110002 /* InfoPlist.strings (es) */,
|
|
238
|
+
F2AABBCC01CF900F00110003 /* InfoPlist.strings (pt) */,
|
|
239
|
+
97C146FA1CF9000F007C117D /* Main.storyboard */,
|
|
240
|
+
97C146FD1CF9000F007C117D /* Assets.xcassets */,
|
|
241
|
+
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
|
|
242
|
+
97C147021CF9000F007C117D /* Info.plist */,
|
|
243
|
+
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
|
|
244
|
+
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
|
|
245
|
+
74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
|
|
246
|
+
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
|
|
247
|
+
);
|
|
248
|
+
path = Runner;
|
|
249
|
+
sourceTree = "<group>";
|
|
250
|
+
};
|
|
251
|
+
A49C2FE0931027D3AA2443C0 /* HomeWidgetExtension */ = {
|
|
252
|
+
isa = PBXGroup;
|
|
253
|
+
children = (
|
|
254
|
+
94F9BABEDE34A97D410DADE6 /* HomeWidgetBundle.swift */,
|
|
255
|
+
700D68A9F382886AD7F24CCA /* Info.plist */,
|
|
256
|
+
A006577C39A4B9DB44280FD0 /* MyWidget.swift */,
|
|
257
|
+
);
|
|
258
|
+
path = HomeWidgetExtension;
|
|
259
|
+
sourceTree = "<group>";
|
|
260
|
+
};
|
|
261
|
+
B6440F83398B6F579412A900 /* Pods */ = {
|
|
262
|
+
isa = PBXGroup;
|
|
263
|
+
children = (
|
|
264
|
+
E1DE1E45C99DD0E3988219B9 /* Pods-Runner.debug.xcconfig */,
|
|
265
|
+
21DB9BC9DAE26AF187C96DDC /* Pods-Runner.release.xcconfig */,
|
|
266
|
+
6C9DAA6362187FC70E12D0B8 /* Pods-Runner.profile.xcconfig */,
|
|
267
|
+
BC31FEFC0C2AC3E4101BBA2D /* Pods-RunnerTests.debug.xcconfig */,
|
|
268
|
+
A1E7B3FCB9D87BFBCB766568 /* Pods-RunnerTests.release.xcconfig */,
|
|
269
|
+
32B3A5A2C2D74E9C1C9446F5 /* Pods-RunnerTests.profile.xcconfig */,
|
|
270
|
+
);
|
|
271
|
+
path = Pods;
|
|
272
|
+
sourceTree = "<group>";
|
|
273
|
+
};
|
|
274
|
+
/* End PBXGroup section */
|
|
275
|
+
|
|
276
|
+
/* Begin PBXNativeTarget section */
|
|
277
|
+
331C8080294A63A400263BE5 /* RunnerTests */ = {
|
|
278
|
+
isa = PBXNativeTarget;
|
|
279
|
+
buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
|
|
280
|
+
buildPhases = (
|
|
281
|
+
B43CA8B4FDA9F02F5D51029B /* [CP] Check Pods Manifest.lock */,
|
|
282
|
+
331C807D294A63A400263BE5 /* Sources */,
|
|
283
|
+
331C807F294A63A400263BE5 /* Resources */,
|
|
284
|
+
C6450B01FEF4626B9088FC34 /* Frameworks */,
|
|
285
|
+
);
|
|
286
|
+
buildRules = (
|
|
287
|
+
);
|
|
288
|
+
dependencies = (
|
|
289
|
+
331C8086294A63A400263BE5 /* PBXTargetDependency */,
|
|
290
|
+
);
|
|
291
|
+
name = RunnerTests;
|
|
292
|
+
productName = RunnerTests;
|
|
293
|
+
productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;
|
|
294
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
|
295
|
+
};
|
|
296
|
+
97C146ED1CF9000F007C117D /* Runner */ = {
|
|
297
|
+
isa = PBXNativeTarget;
|
|
298
|
+
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
|
|
299
|
+
buildPhases = (
|
|
300
|
+
B04F576FE4CE92B654B82F49 /* [CP] Check Pods Manifest.lock */,
|
|
301
|
+
9740EEB61CF901F6004384FC /* Run Script */,
|
|
302
|
+
97C146EA1CF9000F007C117D /* Sources */,
|
|
303
|
+
97C146EB1CF9000F007C117D /* Frameworks */,
|
|
304
|
+
97C146EC1CF9000F007C117D /* Resources */,
|
|
305
|
+
9705A1C41CF9048500538489 /* Embed Frameworks */,
|
|
306
|
+
BFF7ACFBDE178753611103A7 /* Embed Foundation Extensions */,
|
|
307
|
+
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
|
|
308
|
+
C7F9A3080CED52804BCC5B10 /* [CP] Embed Pods Frameworks */,
|
|
309
|
+
2A4ECE75057DBAE8C49FBD1D /* [CP] Copy Pods Resources */,
|
|
310
|
+
);
|
|
311
|
+
buildRules = (
|
|
312
|
+
);
|
|
313
|
+
dependencies = (
|
|
314
|
+
1E1D8E4AFB54F822B2E289E9 /* PBXTargetDependency */,
|
|
315
|
+
F0D478C6AC3EDEE763FB1B8B /* PBXTargetDependency */,
|
|
316
|
+
);
|
|
317
|
+
name = Runner;
|
|
318
|
+
productName = Runner;
|
|
319
|
+
productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
|
|
320
|
+
productType = "com.apple.product-type.application";
|
|
321
|
+
};
|
|
322
|
+
E90C71CAA6775CC028F89027 /* NotificationService */ = {
|
|
323
|
+
isa = PBXNativeTarget;
|
|
324
|
+
buildConfigurationList = 802B66E54645CD75B9E96597 /* Build configuration list for PBXNativeTarget "NotificationService" */;
|
|
325
|
+
buildPhases = (
|
|
326
|
+
8E6E4EC62A18F549B1C78C89 /* Sources */,
|
|
327
|
+
CD1BBB94BBF613FD7277710E /* Frameworks */,
|
|
328
|
+
E97DB6D30E0A69EE109A87A5 /* Resources */,
|
|
329
|
+
);
|
|
330
|
+
buildRules = (
|
|
331
|
+
);
|
|
332
|
+
dependencies = (
|
|
333
|
+
);
|
|
334
|
+
name = NotificationService;
|
|
335
|
+
productName = NotificationService;
|
|
336
|
+
productReference = 90F5CF0E4239027764EF6048 /* NotificationService.appex */;
|
|
337
|
+
productType = "com.apple.product-type.app-extension";
|
|
338
|
+
};
|
|
339
|
+
F69D0B03589A2596E1F689E3 /* HomeWidgetExtension */ = {
|
|
340
|
+
isa = PBXNativeTarget;
|
|
341
|
+
buildConfigurationList = 463FBB76E794D0CDC53D2CAE /* Build configuration list for PBXNativeTarget "HomeWidgetExtension" */;
|
|
342
|
+
buildPhases = (
|
|
343
|
+
F1575CD3960BCA17EB7004D1 /* Sources */,
|
|
344
|
+
19E963C162856798768CA929 /* Frameworks */,
|
|
345
|
+
E2964917DBE2F76EBCACBD4B /* Resources */,
|
|
346
|
+
);
|
|
347
|
+
buildRules = (
|
|
348
|
+
);
|
|
349
|
+
dependencies = (
|
|
350
|
+
);
|
|
351
|
+
name = HomeWidgetExtension;
|
|
352
|
+
productName = HomeWidgetExtension;
|
|
353
|
+
productReference = E14AD1CABD6719BC0E47D4F7 /* HomeWidgetExtension.appex */;
|
|
354
|
+
productType = "com.apple.product-type.app-extension";
|
|
355
|
+
};
|
|
356
|
+
/* End PBXNativeTarget section */
|
|
357
|
+
|
|
358
|
+
/* Begin PBXProject section */
|
|
359
|
+
97C146E61CF9000F007C117D /* Project object */ = {
|
|
360
|
+
isa = PBXProject;
|
|
361
|
+
attributes = {
|
|
362
|
+
BuildIndependentTargetsInParallel = YES;
|
|
363
|
+
LastUpgradeCheck = 1510;
|
|
364
|
+
ORGANIZATIONNAME = "";
|
|
365
|
+
TargetAttributes = {
|
|
366
|
+
331C8080294A63A400263BE5 = {
|
|
367
|
+
CreatedOnToolsVersion = 14.0;
|
|
368
|
+
TestTargetID = 97C146ED1CF9000F007C117D;
|
|
369
|
+
};
|
|
370
|
+
97C146ED1CF9000F007C117D = {
|
|
371
|
+
CreatedOnToolsVersion = 7.3.1;
|
|
372
|
+
LastSwiftMigration = 1100;
|
|
373
|
+
};
|
|
374
|
+
E90C71CAA6775CC028F89027 = {
|
|
375
|
+
CreatedOnToolsVersion = 15.0;
|
|
376
|
+
};
|
|
377
|
+
};
|
|
378
|
+
};
|
|
379
|
+
buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
|
|
380
|
+
compatibilityVersion = "Xcode 9.3";
|
|
381
|
+
developmentRegion = en;
|
|
382
|
+
hasScannedForEncodings = 0;
|
|
383
|
+
knownRegions = (
|
|
384
|
+
en,
|
|
385
|
+
Base,
|
|
386
|
+
es,
|
|
387
|
+
pt,
|
|
388
|
+
"pt-BR",
|
|
389
|
+
);
|
|
390
|
+
mainGroup = 97C146E51CF9000F007C117D;
|
|
391
|
+
productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
|
|
392
|
+
projectDirPath = "";
|
|
393
|
+
projectRoot = "";
|
|
394
|
+
targets = (
|
|
395
|
+
97C146ED1CF9000F007C117D /* Runner */,
|
|
396
|
+
331C8080294A63A400263BE5 /* RunnerTests */,
|
|
397
|
+
F69D0B03589A2596E1F689E3 /* HomeWidgetExtension */,
|
|
398
|
+
E90C71CAA6775CC028F89027 /* NotificationService */,
|
|
399
|
+
);
|
|
400
|
+
};
|
|
401
|
+
/* End PBXProject section */
|
|
402
|
+
|
|
403
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
404
|
+
331C807F294A63A400263BE5 /* Resources */ = {
|
|
405
|
+
isa = PBXResourcesBuildPhase;
|
|
406
|
+
buildActionMask = 2147483647;
|
|
407
|
+
files = (
|
|
408
|
+
);
|
|
409
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
410
|
+
};
|
|
411
|
+
97C146EC1CF9000F007C117D /* Resources */ = {
|
|
412
|
+
isa = PBXResourcesBuildPhase;
|
|
413
|
+
buildActionMask = 2147483647;
|
|
414
|
+
files = (
|
|
415
|
+
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
|
|
416
|
+
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
|
|
417
|
+
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
|
|
418
|
+
F2AABBCC01CF900F00111001 /* InfoPlist.strings (pt-BR) in Resources */,
|
|
419
|
+
F2AABBCC01CF900F00111002 /* InfoPlist.strings (es) in Resources */,
|
|
420
|
+
F2AABBCC01CF900F00111003 /* InfoPlist.strings (pt) in Resources */,
|
|
421
|
+
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
|
|
422
|
+
A9D6B9849D225D94834D8EAF /* Runner.entitlements in Resources */,
|
|
423
|
+
4CE5D416CAB1966AC6E98AD4 /* GoogleService-Info.plist in Resources */,
|
|
424
|
+
);
|
|
425
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
426
|
+
};
|
|
427
|
+
E2964917DBE2F76EBCACBD4B /* Resources */ = {
|
|
428
|
+
isa = PBXResourcesBuildPhase;
|
|
429
|
+
buildActionMask = 2147483647;
|
|
430
|
+
files = (
|
|
431
|
+
D6BA479BDD0F4CE849C0D049 /* HomeWidgetExtension.entitlements in Resources */,
|
|
432
|
+
);
|
|
433
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
434
|
+
};
|
|
435
|
+
E97DB6D30E0A69EE109A87A5 /* Resources */ = {
|
|
436
|
+
isa = PBXResourcesBuildPhase;
|
|
437
|
+
buildActionMask = 2147483647;
|
|
438
|
+
files = (
|
|
439
|
+
);
|
|
440
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
441
|
+
};
|
|
442
|
+
/* End PBXResourcesBuildPhase section */
|
|
443
|
+
|
|
444
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
445
|
+
2A4ECE75057DBAE8C49FBD1D /* [CP] Copy Pods Resources */ = {
|
|
446
|
+
isa = PBXShellScriptBuildPhase;
|
|
447
|
+
buildActionMask = 2147483647;
|
|
448
|
+
files = (
|
|
449
|
+
);
|
|
450
|
+
inputFileListPaths = (
|
|
451
|
+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-input-files.xcfilelist",
|
|
452
|
+
);
|
|
453
|
+
name = "[CP] Copy Pods Resources";
|
|
454
|
+
outputFileListPaths = (
|
|
455
|
+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-output-files.xcfilelist",
|
|
456
|
+
);
|
|
457
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
458
|
+
shellPath = /bin/sh;
|
|
459
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh\"\n";
|
|
460
|
+
showEnvVarsInLog = 0;
|
|
461
|
+
};
|
|
462
|
+
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
|
|
463
|
+
isa = PBXShellScriptBuildPhase;
|
|
464
|
+
alwaysOutOfDate = 1;
|
|
465
|
+
buildActionMask = 2147483647;
|
|
466
|
+
files = (
|
|
467
|
+
);
|
|
468
|
+
inputPaths = (
|
|
469
|
+
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
|
|
470
|
+
);
|
|
471
|
+
name = "Thin Binary";
|
|
472
|
+
outputPaths = (
|
|
473
|
+
);
|
|
474
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
475
|
+
shellPath = /bin/sh;
|
|
476
|
+
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
|
|
477
|
+
};
|
|
478
|
+
9740EEB61CF901F6004384FC /* Run Script */ = {
|
|
479
|
+
isa = PBXShellScriptBuildPhase;
|
|
480
|
+
alwaysOutOfDate = 1;
|
|
481
|
+
buildActionMask = 2147483647;
|
|
482
|
+
files = (
|
|
483
|
+
);
|
|
484
|
+
inputPaths = (
|
|
485
|
+
);
|
|
486
|
+
name = "Run Script";
|
|
487
|
+
outputPaths = (
|
|
488
|
+
);
|
|
489
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
490
|
+
shellPath = /bin/sh;
|
|
491
|
+
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
|
|
492
|
+
};
|
|
493
|
+
B04F576FE4CE92B654B82F49 /* [CP] Check Pods Manifest.lock */ = {
|
|
494
|
+
isa = PBXShellScriptBuildPhase;
|
|
495
|
+
buildActionMask = 2147483647;
|
|
496
|
+
files = (
|
|
497
|
+
);
|
|
498
|
+
inputFileListPaths = (
|
|
499
|
+
);
|
|
500
|
+
inputPaths = (
|
|
501
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
502
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
503
|
+
);
|
|
504
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
505
|
+
outputFileListPaths = (
|
|
506
|
+
);
|
|
507
|
+
outputPaths = (
|
|
508
|
+
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
|
|
509
|
+
);
|
|
510
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
511
|
+
shellPath = /bin/sh;
|
|
512
|
+
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";
|
|
513
|
+
showEnvVarsInLog = 0;
|
|
514
|
+
};
|
|
515
|
+
B43CA8B4FDA9F02F5D51029B /* [CP] Check Pods Manifest.lock */ = {
|
|
516
|
+
isa = PBXShellScriptBuildPhase;
|
|
517
|
+
buildActionMask = 2147483647;
|
|
518
|
+
files = (
|
|
519
|
+
);
|
|
520
|
+
inputFileListPaths = (
|
|
521
|
+
);
|
|
522
|
+
inputPaths = (
|
|
523
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
524
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
525
|
+
);
|
|
526
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
527
|
+
outputFileListPaths = (
|
|
528
|
+
);
|
|
529
|
+
outputPaths = (
|
|
530
|
+
"$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
|
|
531
|
+
);
|
|
532
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
533
|
+
shellPath = /bin/sh;
|
|
534
|
+
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";
|
|
535
|
+
showEnvVarsInLog = 0;
|
|
536
|
+
};
|
|
537
|
+
C7F9A3080CED52804BCC5B10 /* [CP] Embed Pods Frameworks */ = {
|
|
538
|
+
isa = PBXShellScriptBuildPhase;
|
|
539
|
+
buildActionMask = 2147483647;
|
|
540
|
+
files = (
|
|
541
|
+
);
|
|
542
|
+
inputFileListPaths = (
|
|
543
|
+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
544
|
+
);
|
|
545
|
+
name = "[CP] Embed Pods Frameworks";
|
|
546
|
+
outputFileListPaths = (
|
|
547
|
+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
548
|
+
);
|
|
549
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
550
|
+
shellPath = /bin/sh;
|
|
551
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
|
|
552
|
+
showEnvVarsInLog = 0;
|
|
553
|
+
};
|
|
554
|
+
/* End PBXShellScriptBuildPhase section */
|
|
555
|
+
|
|
556
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
557
|
+
331C807D294A63A400263BE5 /* Sources */ = {
|
|
558
|
+
isa = PBXSourcesBuildPhase;
|
|
559
|
+
buildActionMask = 2147483647;
|
|
560
|
+
files = (
|
|
561
|
+
331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,
|
|
562
|
+
);
|
|
563
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
564
|
+
};
|
|
565
|
+
8E6E4EC62A18F549B1C78C89 /* Sources */ = {
|
|
566
|
+
isa = PBXSourcesBuildPhase;
|
|
567
|
+
buildActionMask = 2147483647;
|
|
568
|
+
files = (
|
|
569
|
+
F528FFE4E539005C82366676 /* NotificationService.swift in Sources */,
|
|
570
|
+
);
|
|
571
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
572
|
+
};
|
|
573
|
+
97C146EA1CF9000F007C117D /* Sources */ = {
|
|
574
|
+
isa = PBXSourcesBuildPhase;
|
|
575
|
+
buildActionMask = 2147483647;
|
|
576
|
+
files = (
|
|
577
|
+
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
|
|
578
|
+
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
|
|
579
|
+
);
|
|
580
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
581
|
+
};
|
|
582
|
+
F1575CD3960BCA17EB7004D1 /* Sources */ = {
|
|
583
|
+
isa = PBXSourcesBuildPhase;
|
|
584
|
+
buildActionMask = 2147483647;
|
|
585
|
+
files = (
|
|
586
|
+
4293487F24E332DAE87C80B9 /* HomeWidgetBundle.swift in Sources */,
|
|
587
|
+
AF2B3D1180449C16F1A5AB34 /* MyWidget.swift in Sources */,
|
|
588
|
+
);
|
|
589
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
590
|
+
};
|
|
591
|
+
/* End PBXSourcesBuildPhase section */
|
|
592
|
+
|
|
593
|
+
/* Begin PBXTargetDependency section */
|
|
594
|
+
1E1D8E4AFB54F822B2E289E9 /* PBXTargetDependency */ = {
|
|
595
|
+
isa = PBXTargetDependency;
|
|
596
|
+
name = HomeWidgetExtension;
|
|
597
|
+
target = F69D0B03589A2596E1F689E3 /* HomeWidgetExtension */;
|
|
598
|
+
targetProxy = 3D3D88F4919F8F73A10D569B /* PBXContainerItemProxy */;
|
|
599
|
+
};
|
|
600
|
+
331C8086294A63A400263BE5 /* PBXTargetDependency */ = {
|
|
601
|
+
isa = PBXTargetDependency;
|
|
602
|
+
target = 97C146ED1CF9000F007C117D /* Runner */;
|
|
603
|
+
targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;
|
|
604
|
+
};
|
|
605
|
+
F0D478C6AC3EDEE763FB1B8B /* PBXTargetDependency */ = {
|
|
606
|
+
isa = PBXTargetDependency;
|
|
607
|
+
target = E90C71CAA6775CC028F89027 /* NotificationService */;
|
|
608
|
+
};
|
|
609
|
+
/* End PBXTargetDependency section */
|
|
610
|
+
|
|
611
|
+
/* Begin PBXVariantGroup section */
|
|
612
|
+
97C146FA1CF9000F007C117D /* Main.storyboard */ = {
|
|
613
|
+
isa = PBXVariantGroup;
|
|
614
|
+
children = (
|
|
615
|
+
97C146FB1CF9000F007C117D /* Base */,
|
|
616
|
+
);
|
|
617
|
+
name = Main.storyboard;
|
|
618
|
+
sourceTree = "<group>";
|
|
619
|
+
};
|
|
620
|
+
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
|
|
621
|
+
isa = PBXVariantGroup;
|
|
622
|
+
children = (
|
|
623
|
+
97C147001CF9000F007C117D /* Base */,
|
|
624
|
+
);
|
|
625
|
+
name = LaunchScreen.storyboard;
|
|
626
|
+
sourceTree = "<group>";
|
|
627
|
+
};
|
|
628
|
+
/* End PBXVariantGroup section */
|
|
629
|
+
|
|
630
|
+
/* Begin XCBuildConfiguration section */
|
|
631
|
+
249021D3217E4FDB00AE95B9 /* Profile */ = {
|
|
632
|
+
isa = XCBuildConfiguration;
|
|
633
|
+
buildSettings = {
|
|
634
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
635
|
+
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
|
|
636
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
637
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
638
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
639
|
+
CLANG_ENABLE_MODULES = YES;
|
|
640
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
641
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
642
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
643
|
+
CLANG_WARN_COMMA = YES;
|
|
644
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
645
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
646
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
647
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
648
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
649
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
650
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
651
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
652
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
653
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
654
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
655
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
656
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
657
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
658
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
659
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
660
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
661
|
+
COPY_PHASE_STRIP = NO;
|
|
662
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
663
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
664
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
665
|
+
ENABLE_USER_SCRIPT_SANDBOXING = NO;
|
|
666
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
667
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
668
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
669
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
670
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
671
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
672
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
673
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
674
|
+
IPHONEOS_DEPLOYMENT_TARGET = 17.6;
|
|
675
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
676
|
+
SDKROOT = iphoneos;
|
|
677
|
+
SUPPORTED_PLATFORMS = iphoneos;
|
|
678
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
679
|
+
VALIDATE_PRODUCT = YES;
|
|
680
|
+
};
|
|
681
|
+
name = Profile;
|
|
682
|
+
};
|
|
683
|
+
249021D4217E4FDB00AE95B9 /* Profile */ = {
|
|
684
|
+
isa = XCBuildConfiguration;
|
|
685
|
+
baseConfigurationReference = B5D3E8F12A4B5C6D0083083F /* Profile.xcconfig */;
|
|
686
|
+
buildSettings = {
|
|
687
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
688
|
+
CLANG_ENABLE_MODULES = YES;
|
|
689
|
+
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
|
|
690
|
+
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
|
691
|
+
DEVELOPMENT_TEAM = BQD635VU9F;
|
|
692
|
+
ENABLE_BITCODE = NO;
|
|
693
|
+
INFOPLIST_FILE = Runner/Info.plist;
|
|
694
|
+
IPHONEOS_DEPLOYMENT_TARGET = 17.6;
|
|
695
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
696
|
+
"$(inherited)",
|
|
697
|
+
"@executable_path/Frameworks",
|
|
698
|
+
);
|
|
699
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.aicrus.firebase.kit;
|
|
700
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
701
|
+
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
|
702
|
+
SWIFT_VERSION = 5.0;
|
|
703
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
704
|
+
};
|
|
705
|
+
name = Profile;
|
|
706
|
+
};
|
|
707
|
+
331C8088294A63A400263BE5 /* Debug */ = {
|
|
708
|
+
isa = XCBuildConfiguration;
|
|
709
|
+
baseConfigurationReference = BC31FEFC0C2AC3E4101BBA2D /* Pods-RunnerTests.debug.xcconfig */;
|
|
710
|
+
buildSettings = {
|
|
711
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
712
|
+
CODE_SIGN_STYLE = Automatic;
|
|
713
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
714
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
715
|
+
MARKETING_VERSION = 1.0;
|
|
716
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.aicrus.firebase.kit.RunnerTests;
|
|
717
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
718
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
719
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
720
|
+
SWIFT_VERSION = 5.0;
|
|
721
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
|
|
722
|
+
};
|
|
723
|
+
name = Debug;
|
|
724
|
+
};
|
|
725
|
+
331C8089294A63A400263BE5 /* Release */ = {
|
|
726
|
+
isa = XCBuildConfiguration;
|
|
727
|
+
baseConfigurationReference = A1E7B3FCB9D87BFBCB766568 /* Pods-RunnerTests.release.xcconfig */;
|
|
728
|
+
buildSettings = {
|
|
729
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
730
|
+
CODE_SIGN_STYLE = Automatic;
|
|
731
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
732
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
733
|
+
MARKETING_VERSION = 1.0;
|
|
734
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.aicrus.firebase.kit.RunnerTests;
|
|
735
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
736
|
+
SWIFT_VERSION = 5.0;
|
|
737
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
|
|
738
|
+
};
|
|
739
|
+
name = Release;
|
|
740
|
+
};
|
|
741
|
+
331C808A294A63A400263BE5 /* Profile */ = {
|
|
742
|
+
isa = XCBuildConfiguration;
|
|
743
|
+
baseConfigurationReference = 32B3A5A2C2D74E9C1C9446F5 /* Pods-RunnerTests.profile.xcconfig */;
|
|
744
|
+
buildSettings = {
|
|
745
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
|
746
|
+
CODE_SIGN_STYLE = Automatic;
|
|
747
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
748
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
749
|
+
MARKETING_VERSION = 1.0;
|
|
750
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.aicrus.firebase.kit.RunnerTests;
|
|
751
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
752
|
+
SWIFT_VERSION = 5.0;
|
|
753
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
|
|
754
|
+
};
|
|
755
|
+
name = Profile;
|
|
756
|
+
};
|
|
757
|
+
6CF556941B1B1975B7284607 /* Release */ = {
|
|
758
|
+
isa = XCBuildConfiguration;
|
|
759
|
+
buildSettings = {
|
|
760
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
761
|
+
CODE_SIGN_ENTITLEMENTS = HomeWidgetExtension.entitlements;
|
|
762
|
+
DEVELOPMENT_TEAM = BQD635VU9F;
|
|
763
|
+
GENERATE_INFOPLIST_FILE = NO;
|
|
764
|
+
INFOPLIST_FILE = HomeWidgetExtension/Info.plist;
|
|
765
|
+
IPHONEOS_DEPLOYMENT_TARGET = 17.6;
|
|
766
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
767
|
+
"$(inherited)",
|
|
768
|
+
"@executable_path/Frameworks",
|
|
769
|
+
"@executable_path/../../Frameworks",
|
|
770
|
+
);
|
|
771
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.aicrus.firebase.kit.HomeWidgetExtension;
|
|
772
|
+
PRODUCT_NAME = HomeWidgetExtension;
|
|
773
|
+
SDKROOT = iphoneos;
|
|
774
|
+
SKIP_INSTALL = YES;
|
|
775
|
+
SWIFT_VERSION = 5.0;
|
|
776
|
+
VALIDATE_PRODUCT = YES;
|
|
777
|
+
WRAPPER_EXTENSION = appex;
|
|
778
|
+
};
|
|
779
|
+
name = Release;
|
|
780
|
+
};
|
|
781
|
+
72702ACD644CCEBC3D3B8E60 /* Profile */ = {
|
|
782
|
+
isa = XCBuildConfiguration;
|
|
783
|
+
buildSettings = {
|
|
784
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
785
|
+
CODE_SIGN_ENTITLEMENTS = HomeWidgetExtension.entitlements;
|
|
786
|
+
DEVELOPMENT_TEAM = BQD635VU9F;
|
|
787
|
+
GENERATE_INFOPLIST_FILE = NO;
|
|
788
|
+
INFOPLIST_FILE = HomeWidgetExtension/Info.plist;
|
|
789
|
+
IPHONEOS_DEPLOYMENT_TARGET = 17.6;
|
|
790
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
791
|
+
"$(inherited)",
|
|
792
|
+
"@executable_path/Frameworks",
|
|
793
|
+
"@executable_path/../../Frameworks",
|
|
794
|
+
);
|
|
795
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.aicrus.firebase.kit.HomeWidgetExtension;
|
|
796
|
+
PRODUCT_NAME = HomeWidgetExtension;
|
|
797
|
+
SDKROOT = iphoneos;
|
|
798
|
+
SKIP_INSTALL = YES;
|
|
799
|
+
SWIFT_VERSION = 5.0;
|
|
800
|
+
VALIDATE_PRODUCT = YES;
|
|
801
|
+
WRAPPER_EXTENSION = appex;
|
|
802
|
+
};
|
|
803
|
+
name = Profile;
|
|
804
|
+
};
|
|
805
|
+
8F611FE9702C8FBA418D1ED7 /* Profile */ = {
|
|
806
|
+
isa = XCBuildConfiguration;
|
|
807
|
+
buildSettings = {
|
|
808
|
+
ARCHS = arm64;
|
|
809
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
810
|
+
CODE_SIGN_STYLE = Automatic;
|
|
811
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
812
|
+
DEVELOPMENT_TEAM = BQD635VU9F;
|
|
813
|
+
INFOPLIST_FILE = NotificationService/Info.plist;
|
|
814
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
|
|
815
|
+
MARKETING_VERSION = 1.0;
|
|
816
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.aicrus.firebase.kit.NotificationService;
|
|
817
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
818
|
+
SDKROOT = iphoneos;
|
|
819
|
+
SKIP_INSTALL = YES;
|
|
820
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
821
|
+
SWIFT_VERSION = 5.0;
|
|
822
|
+
VALIDATE_PRODUCT = YES;
|
|
823
|
+
};
|
|
824
|
+
name = Profile;
|
|
825
|
+
};
|
|
826
|
+
97C147031CF9000F007C117D /* Debug */ = {
|
|
827
|
+
isa = XCBuildConfiguration;
|
|
828
|
+
buildSettings = {
|
|
829
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
830
|
+
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = AppIcon;
|
|
831
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
832
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
833
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
834
|
+
CLANG_ENABLE_MODULES = YES;
|
|
835
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
836
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
837
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
838
|
+
CLANG_WARN_COMMA = YES;
|
|
839
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
840
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
841
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
842
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
843
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
844
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
845
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
846
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
847
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
848
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
849
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
850
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
851
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
852
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
853
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
854
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
855
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
856
|
+
COPY_PHASE_STRIP = NO;
|
|
857
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
858
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
859
|
+
ENABLE_TESTABILITY = YES;
|
|
860
|
+
ENABLE_USER_SCRIPT_SANDBOXING = NO;
|
|
861
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
862
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
863
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
864
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
865
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
866
|
+
"DEBUG=1",
|
|
867
|
+
"$(inherited)",
|
|
868
|
+
);
|
|
869
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
870
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
871
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
872
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
873
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
874
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
875
|
+
IPHONEOS_DEPLOYMENT_TARGET = 17.6;
|
|
876
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
877
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
878
|
+
SDKROOT = iphoneos;
|
|
879
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
880
|
+
};
|
|
881
|
+
name = Debug;
|
|
882
|
+
};
|
|
883
|
+
97C147041CF9000F007C117D /* Release */ = {
|
|
884
|
+
isa = XCBuildConfiguration;
|
|
885
|
+
buildSettings = {
|
|
886
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
887
|
+
ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = AppIcon;
|
|
888
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
889
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
890
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
891
|
+
CLANG_ENABLE_MODULES = YES;
|
|
892
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
893
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
894
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
895
|
+
CLANG_WARN_COMMA = YES;
|
|
896
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
897
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
898
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
899
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
900
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
901
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
902
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
903
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
904
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
905
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
906
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
907
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
908
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
909
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
910
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
911
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
912
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
913
|
+
COPY_PHASE_STRIP = NO;
|
|
914
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
915
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
916
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
917
|
+
ENABLE_USER_SCRIPT_SANDBOXING = NO;
|
|
918
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
919
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
920
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
921
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
922
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
923
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
924
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
925
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
926
|
+
IPHONEOS_DEPLOYMENT_TARGET = 17.6;
|
|
927
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
928
|
+
SDKROOT = iphoneos;
|
|
929
|
+
SUPPORTED_PLATFORMS = iphoneos;
|
|
930
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
931
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
932
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
933
|
+
VALIDATE_PRODUCT = YES;
|
|
934
|
+
};
|
|
935
|
+
name = Release;
|
|
936
|
+
};
|
|
937
|
+
97C147061CF9000F007C117D /* Debug */ = {
|
|
938
|
+
isa = XCBuildConfiguration;
|
|
939
|
+
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
|
|
940
|
+
buildSettings = {
|
|
941
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
942
|
+
CLANG_ENABLE_MODULES = YES;
|
|
943
|
+
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
|
|
944
|
+
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
|
945
|
+
DEVELOPMENT_TEAM = BQD635VU9F;
|
|
946
|
+
ENABLE_BITCODE = NO;
|
|
947
|
+
INFOPLIST_FILE = Runner/Info.plist;
|
|
948
|
+
IPHONEOS_DEPLOYMENT_TARGET = 17.6;
|
|
949
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
950
|
+
"$(inherited)",
|
|
951
|
+
"@executable_path/Frameworks",
|
|
952
|
+
);
|
|
953
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.aicrus.firebase.kit;
|
|
954
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
955
|
+
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
|
956
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
957
|
+
SWIFT_VERSION = 5.0;
|
|
958
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
959
|
+
};
|
|
960
|
+
name = Debug;
|
|
961
|
+
};
|
|
962
|
+
97C147071CF9000F007C117D /* Release */ = {
|
|
963
|
+
isa = XCBuildConfiguration;
|
|
964
|
+
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
|
|
965
|
+
buildSettings = {
|
|
966
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
967
|
+
CLANG_ENABLE_MODULES = YES;
|
|
968
|
+
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
|
|
969
|
+
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
|
970
|
+
DEVELOPMENT_TEAM = BQD635VU9F;
|
|
971
|
+
ENABLE_BITCODE = NO;
|
|
972
|
+
INFOPLIST_FILE = Runner/Info.plist;
|
|
973
|
+
IPHONEOS_DEPLOYMENT_TARGET = 17.6;
|
|
974
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
975
|
+
"$(inherited)",
|
|
976
|
+
"@executable_path/Frameworks",
|
|
977
|
+
);
|
|
978
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.aicrus.firebase.kit;
|
|
979
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
980
|
+
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
|
981
|
+
SWIFT_VERSION = 5.0;
|
|
982
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
983
|
+
};
|
|
984
|
+
name = Release;
|
|
985
|
+
};
|
|
986
|
+
A5BBA5CF6DD9F27A464193D3 /* Debug */ = {
|
|
987
|
+
isa = XCBuildConfiguration;
|
|
988
|
+
buildSettings = {
|
|
989
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
990
|
+
CODE_SIGN_ENTITLEMENTS = HomeWidgetExtension.entitlements;
|
|
991
|
+
DEVELOPMENT_TEAM = BQD635VU9F;
|
|
992
|
+
GENERATE_INFOPLIST_FILE = NO;
|
|
993
|
+
INFOPLIST_FILE = HomeWidgetExtension/Info.plist;
|
|
994
|
+
IPHONEOS_DEPLOYMENT_TARGET = 17.6;
|
|
995
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
996
|
+
"$(inherited)",
|
|
997
|
+
"@executable_path/Frameworks",
|
|
998
|
+
"@executable_path/../../Frameworks",
|
|
999
|
+
);
|
|
1000
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.aicrus.firebase.kit.HomeWidgetExtension;
|
|
1001
|
+
PRODUCT_NAME = HomeWidgetExtension;
|
|
1002
|
+
SDKROOT = iphoneos;
|
|
1003
|
+
SKIP_INSTALL = YES;
|
|
1004
|
+
SWIFT_VERSION = 5.0;
|
|
1005
|
+
WRAPPER_EXTENSION = appex;
|
|
1006
|
+
};
|
|
1007
|
+
name = Debug;
|
|
1008
|
+
};
|
|
1009
|
+
C5BD53F61E0556FD8C21858F /* Debug */ = {
|
|
1010
|
+
isa = XCBuildConfiguration;
|
|
1011
|
+
buildSettings = {
|
|
1012
|
+
ARCHS = arm64;
|
|
1013
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1014
|
+
CODE_SIGN_STYLE = Automatic;
|
|
1015
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1016
|
+
DEVELOPMENT_TEAM = BQD635VU9F;
|
|
1017
|
+
INFOPLIST_FILE = NotificationService/Info.plist;
|
|
1018
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
|
|
1019
|
+
MARKETING_VERSION = 1.0;
|
|
1020
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.aicrus.firebase.kit.NotificationService;
|
|
1021
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
1022
|
+
SDKROOT = iphoneos;
|
|
1023
|
+
SKIP_INSTALL = YES;
|
|
1024
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
1025
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
1026
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
1027
|
+
SWIFT_VERSION = 5.0;
|
|
1028
|
+
};
|
|
1029
|
+
name = Debug;
|
|
1030
|
+
};
|
|
1031
|
+
E7E2FA1F0D10766DD3CAC305 /* Release */ = {
|
|
1032
|
+
isa = XCBuildConfiguration;
|
|
1033
|
+
buildSettings = {
|
|
1034
|
+
ARCHS = arm64;
|
|
1035
|
+
CLANG_ENABLE_OBJC_WEAK = NO;
|
|
1036
|
+
CODE_SIGN_STYLE = Automatic;
|
|
1037
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
1038
|
+
DEVELOPMENT_TEAM = BQD635VU9F;
|
|
1039
|
+
INFOPLIST_FILE = NotificationService/Info.plist;
|
|
1040
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
|
|
1041
|
+
MARKETING_VERSION = 1.0;
|
|
1042
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.aicrus.firebase.kit.NotificationService;
|
|
1043
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
1044
|
+
SDKROOT = iphoneos;
|
|
1045
|
+
SKIP_INSTALL = YES;
|
|
1046
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
1047
|
+
SWIFT_VERSION = 5.0;
|
|
1048
|
+
VALIDATE_PRODUCT = YES;
|
|
1049
|
+
};
|
|
1050
|
+
name = Release;
|
|
1051
|
+
};
|
|
1052
|
+
/* End XCBuildConfiguration section */
|
|
1053
|
+
|
|
1054
|
+
/* Begin XCConfigurationList section */
|
|
1055
|
+
331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
|
|
1056
|
+
isa = XCConfigurationList;
|
|
1057
|
+
buildConfigurations = (
|
|
1058
|
+
331C8088294A63A400263BE5 /* Debug */,
|
|
1059
|
+
331C8089294A63A400263BE5 /* Release */,
|
|
1060
|
+
331C808A294A63A400263BE5 /* Profile */,
|
|
1061
|
+
);
|
|
1062
|
+
defaultConfigurationIsVisible = 0;
|
|
1063
|
+
defaultConfigurationName = Release;
|
|
1064
|
+
};
|
|
1065
|
+
463FBB76E794D0CDC53D2CAE /* Build configuration list for PBXNativeTarget "HomeWidgetExtension" */ = {
|
|
1066
|
+
isa = XCConfigurationList;
|
|
1067
|
+
buildConfigurations = (
|
|
1068
|
+
6CF556941B1B1975B7284607 /* Release */,
|
|
1069
|
+
A5BBA5CF6DD9F27A464193D3 /* Debug */,
|
|
1070
|
+
72702ACD644CCEBC3D3B8E60 /* Profile */,
|
|
1071
|
+
);
|
|
1072
|
+
defaultConfigurationIsVisible = 0;
|
|
1073
|
+
defaultConfigurationName = Release;
|
|
1074
|
+
};
|
|
1075
|
+
802B66E54645CD75B9E96597 /* Build configuration list for PBXNativeTarget "NotificationService" */ = {
|
|
1076
|
+
isa = XCConfigurationList;
|
|
1077
|
+
buildConfigurations = (
|
|
1078
|
+
E7E2FA1F0D10766DD3CAC305 /* Release */,
|
|
1079
|
+
C5BD53F61E0556FD8C21858F /* Debug */,
|
|
1080
|
+
8F611FE9702C8FBA418D1ED7 /* Profile */,
|
|
1081
|
+
);
|
|
1082
|
+
defaultConfigurationIsVisible = 0;
|
|
1083
|
+
defaultConfigurationName = Release;
|
|
1084
|
+
};
|
|
1085
|
+
97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
|
|
1086
|
+
isa = XCConfigurationList;
|
|
1087
|
+
buildConfigurations = (
|
|
1088
|
+
97C147031CF9000F007C117D /* Debug */,
|
|
1089
|
+
97C147041CF9000F007C117D /* Release */,
|
|
1090
|
+
249021D3217E4FDB00AE95B9 /* Profile */,
|
|
1091
|
+
);
|
|
1092
|
+
defaultConfigurationIsVisible = 0;
|
|
1093
|
+
defaultConfigurationName = Release;
|
|
1094
|
+
};
|
|
1095
|
+
97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
|
|
1096
|
+
isa = XCConfigurationList;
|
|
1097
|
+
buildConfigurations = (
|
|
1098
|
+
97C147061CF9000F007C117D /* Debug */,
|
|
1099
|
+
97C147071CF9000F007C117D /* Release */,
|
|
1100
|
+
249021D4217E4FDB00AE95B9 /* Profile */,
|
|
1101
|
+
);
|
|
1102
|
+
defaultConfigurationIsVisible = 0;
|
|
1103
|
+
defaultConfigurationName = Release;
|
|
1104
|
+
};
|
|
1105
|
+
/* End XCConfigurationList section */
|
|
1106
|
+
};
|
|
1107
|
+
rootObject = 97C146E61CF9000F007C117D /* Project object */;
|
|
1108
|
+
}
|