From a033128dd8667a18d2abd3f9141a26bbc6bdd406 Mon Sep 17 00:00:00 2001 From: louisehsu Date: Tue, 2 Dec 2025 16:02:26 -0800 Subject: [PATCH 1/8] init --- .../flutter_module/.gitignore | 48 + .../flutter_module/.metadata | 10 + .../flutter_module/README.md | 11 + .../flutter_module/analysis_options.yaml | 4 + .../flutter_module/lib/main.dart | 42 + .../flutter_module/pubspec.yaml | 87 ++ .../flutter_module/test/widget_test.dart | 30 + .../ios_content_resizing/Podfile | 32 + .../Pods/Local Podspecs/Flutter.podspec.json | 20 + .../FlutterPluginRegistrant.podspec.json | 31 + .../ios_content_resizing/Pods/Manifest.lock | 22 + .../Pods/Pods.xcodeproj/project.pbxproj | 1276 +++++++++++++++++ .../xcschemes/Flutter.xcscheme | 58 + .../FlutterPluginRegistrant.xcscheme | 58 + ...izing-ios_content_resizingUITests.xcscheme | 58 + .../Pods-ios_content_resizing.xcscheme | 58 + .../Pods-ios_content_resizingTests.xcscheme | 58 + .../xcschemes/xcschememanagement.plist | 46 + .../Flutter/Flutter.debug.xcconfig | 12 + .../Flutter/Flutter.release.xcconfig | 12 + .../FlutterPluginRegistrant-Info.plist | 26 + .../FlutterPluginRegistrant-dummy.m | 5 + .../FlutterPluginRegistrant-prefix.pch | 12 + .../FlutterPluginRegistrant-umbrella.h | 17 + .../FlutterPluginRegistrant.debug.xcconfig | 13 + .../FlutterPluginRegistrant.modulemap | 6 + .../FlutterPluginRegistrant.release.xcconfig | 13 + ...ing-ios_content_resizingUITests-Info.plist | 26 + ..._resizingUITests-acknowledgements.markdown | 3 + ...ent_resizingUITests-acknowledgements.plist | 29 + ...sizing-ios_content_resizingUITests-dummy.m | 5 + ...ing-ios_content_resizingUITests-umbrella.h | 16 + ...ios_content_resizingUITests.debug.xcconfig | 14 + ...zing-ios_content_resizingUITests.modulemap | 6 + ...s_content_resizingUITests.release.xcconfig | 14 + .../Pods-ios_content_resizing-Info.plist | 26 + ...content_resizing-acknowledgements.markdown | 3 + ...os_content_resizing-acknowledgements.plist | 29 + .../Pods-ios_content_resizing-dummy.m | 5 + .../Pods-ios_content_resizing-umbrella.h | 16 + .../Pods-ios_content_resizing.debug.xcconfig | 14 + .../Pods-ios_content_resizing.modulemap | 6 + ...Pods-ios_content_resizing.release.xcconfig | 14 + .../Pods-ios_content_resizingTests-Info.plist | 26 + ...nt_resizingTests-acknowledgements.markdown | 3 + ...ntent_resizingTests-acknowledgements.plist | 29 + .../Pods-ios_content_resizingTests-dummy.m | 5 + .../Pods-ios_content_resizingTests-umbrella.h | 16 + ...s-ios_content_resizingTests.debug.xcconfig | 10 + .../Pods-ios_content_resizingTests.modulemap | 6 + ...ios_content_resizingTests.release.xcconfig | 10 + .../project.pbxproj | 707 +++++++++ .../contents.xcworkspacedata | 7 + .../UserInterfaceState.xcuserstate | Bin 0 -> 13688 bytes .../xcschemes/xcschememanagement.plist | 14 + .../contents.xcworkspacedata | 13 + .../UserInterfaceState.xcuserstate | Bin 0 -> 16055 bytes .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 35 + .../Assets.xcassets/Contents.json | 6 + .../ios_content_resizing/ContentView.swift | 24 + .../ios_content_resizingApp.swift | 17 + .../ios_content_resizingTests.swift | 36 + .../ios_content_resizingUITests.swift | 41 + ...s_content_resizingUITestsLaunchTests.swift | 33 + .../contents.xcworkspacedata | 7 + .../UserInterfaceState.xcuserstate | Bin 0 -> 13562 bytes .../project.pbxproj | 563 ++++++++ .../contents.xcworkspacedata | 7 + .../UserInterfaceState.xcuserstate | Bin 0 -> 13562 bytes .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 35 + .../Assets.xcassets/Contents.json | 6 + .../ContentView.swift | 24 + .../ios_content_resizing_exampleApp.swift | 17 + .../ios_content_resizing_exampleTests.swift | 36 + .../ios_content_resizing_exampleUITests.swift | 41 + ...t_resizing_exampleUITestsLaunchTests.swift | 33 + .../project.pbxproj | 583 ++++++++ .../AccentColor.colorset/Contents.json | 11 + .../AppIcon.appiconset/Contents.json | 35 + .../Assets.xcassets/Contents.json | 6 + .../ContentView.swift | 24 + .../ios_dynamic_content_resizeApp.swift | 17 + .../ios_dynamic_content_resizeTests.swift | 36 + .../ios_dynamic_content_resizeUITests.swift | 41 + ...mic_content_resizeUITestsLaunchTests.swift | 33 + 87 files changed, 4906 insertions(+) create mode 100644 add_to_app/ios_content_resizing/flutter_module/.gitignore create mode 100644 add_to_app/ios_content_resizing/flutter_module/.metadata create mode 100644 add_to_app/ios_content_resizing/flutter_module/README.md create mode 100644 add_to_app/ios_content_resizing/flutter_module/analysis_options.yaml create mode 100644 add_to_app/ios_content_resizing/flutter_module/lib/main.dart create mode 100644 add_to_app/ios_content_resizing/flutter_module/pubspec.yaml create mode 100644 add_to_app/ios_content_resizing/flutter_module/test/widget_test.dart create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Podfile create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/Flutter.podspec.json create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/FlutterPluginRegistrant.podspec.json create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Manifest.lock create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/project.pbxproj create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Flutter.xcscheme create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/FlutterPluginRegistrant.xcscheme create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing-ios_content_resizingUITests.xcscheme create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing.xcscheme create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizingTests.xcscheme create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.debug.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.release.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-dummy.m create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-umbrella.h create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.debug.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.release.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.modulemap create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-Info.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.markdown create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-dummy.m create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-umbrella.h create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.debug.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.modulemap create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.release.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-Info.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.markdown create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-dummy.m create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-umbrella.h create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.debug.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.modulemap create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.release.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.pbxproj create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/contents.xcworkspacedata create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/Assets.xcassets/Contents.json create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ContentView.swift create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ios_content_resizingApp.swift create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizingTests/ios_content_resizingTests.swift create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizingUITests/ios_content_resizingUITests.swift create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizingUITests/ios_content_resizingUITestsLaunchTests.swift create mode 100644 add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example.xcworkspace/contents.xcworkspacedata create mode 100644 add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate create mode 100644 add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example.xcodeproj/project.pbxproj create mode 100644 add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example.xcodeproj/project.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate create mode 100644 add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/Assets.xcassets/Contents.json create mode 100644 add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/ContentView.swift create mode 100644 add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/ios_content_resizing_exampleApp.swift create mode 100644 add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_exampleTests/ios_content_resizing_exampleTests.swift create mode 100644 add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_exampleUITests/ios_content_resizing_exampleUITests.swift create mode 100644 add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_exampleUITests/ios_content_resizing_exampleUITestsLaunchTests.swift create mode 100644 add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize.xcodeproj/project.pbxproj create mode 100644 add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/Assets.xcassets/AccentColor.colorset/Contents.json create mode 100644 add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/Assets.xcassets/Contents.json create mode 100644 add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/ContentView.swift create mode 100644 add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/ios_dynamic_content_resizeApp.swift create mode 100644 add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resizeTests/ios_dynamic_content_resizeTests.swift create mode 100644 add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resizeUITests/ios_dynamic_content_resizeUITests.swift create mode 100644 add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resizeUITests/ios_dynamic_content_resizeUITestsLaunchTests.swift diff --git a/add_to_app/ios_content_resizing/flutter_module/.gitignore b/add_to_app/ios_content_resizing/flutter_module/.gitignore new file mode 100644 index 00000000000..5d88593fb3b --- /dev/null +++ b/add_to_app/ios_content_resizing/flutter_module/.gitignore @@ -0,0 +1,48 @@ +.DS_Store +.dart_tool/ + +.pub/ + +.idea/ +.vagrant/ +.sconsign.dblite +.svn/ + +migrate_working_dir/ + +*.swp +profile + +DerivedData/ + +.generated/ + +*.pbxuser +*.mode1v3 +*.mode2v3 +*.perspectivev3 + +!default.pbxuser +!default.mode1v3 +!default.mode2v3 +!default.perspectivev3 + +xcuserdata + +*.moved-aside + +*.pyc +*sync/ +Icon? +.tags* + +build/ +.android/ +.ios/ +.flutter-plugins-dependencies + +# Symbolication related +app.*.symbols + +# Obfuscation related +app.*.map.json diff --git a/add_to_app/ios_content_resizing/flutter_module/.metadata b/add_to_app/ios_content_resizing/flutter_module/.metadata new file mode 100644 index 00000000000..25888c8e590 --- /dev/null +++ b/add_to_app/ios_content_resizing/flutter_module/.metadata @@ -0,0 +1,10 @@ +# This file tracks properties of this Flutter project. +# Used by Flutter tool to assess capabilities and perform upgrades etc. +# +# This file should be version controlled and should not be manually edited. + +version: + revision: "8bb8135b3960454cf4cd8a36576e4b9b6d513a75" + channel: "[user-branch]" + +project_type: module diff --git a/add_to_app/ios_content_resizing/flutter_module/README.md b/add_to_app/ios_content_resizing/flutter_module/README.md new file mode 100644 index 00000000000..68e507145bb --- /dev/null +++ b/add_to_app/ios_content_resizing/flutter_module/README.md @@ -0,0 +1,11 @@ +# flutter_module + +A new Flutter module project. + +## Getting Started + +For help getting started with Flutter development, view the online +[documentation](https://flutter.dev/). + +For instructions integrating Flutter modules to your existing applications, +see the [add-to-app documentation](https://flutter.dev/to/add-to-app). diff --git a/add_to_app/ios_content_resizing/flutter_module/analysis_options.yaml b/add_to_app/ios_content_resizing/flutter_module/analysis_options.yaml new file mode 100644 index 00000000000..a5744c1cfbe --- /dev/null +++ b/add_to_app/ios_content_resizing/flutter_module/analysis_options.yaml @@ -0,0 +1,4 @@ +include: package:flutter_lints/flutter.yaml + +# Additional information about this file can be found at +# https://dart.dev/guides/language/analysis-options diff --git a/add_to_app/ios_content_resizing/flutter_module/lib/main.dart b/add_to_app/ios_content_resizing/flutter_module/lib/main.dart new file mode 100644 index 00000000000..4b54bd39088 --- /dev/null +++ b/add_to_app/ios_content_resizing/flutter_module/lib/main.dart @@ -0,0 +1,42 @@ +// Copyright 2014 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +import 'package:flutter/material.dart'; + +class ResizeApp extends StatefulWidget { + /// Creates the [ResizeApp]. + const ResizeApp({super.key}); + + @override + State createState() => _ResizeAppState(); +} + +class _ResizeAppState extends State { + int _listSize = 1; + void _addToList() { + setState(() { + _listSize++; + }); + } + + @override + Widget build(BuildContext context) { + return GestureDetector( + onTap: _addToList, // The tap anywhere logic + child: Center( + heightFactor: 1, + child: Directionality( + textDirection: TextDirection.ltr, + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + for (int i = 0; i < _listSize; i++) + Container(color: HSVColor.fromAHSV(1, (10.0 * i), 1, 1).toColor(), height: 100), + ], + ), + ), + ), + ); + } +} \ No newline at end of file diff --git a/add_to_app/ios_content_resizing/flutter_module/pubspec.yaml b/add_to_app/ios_content_resizing/flutter_module/pubspec.yaml new file mode 100644 index 00000000000..602106991f2 --- /dev/null +++ b/add_to_app/ios_content_resizing/flutter_module/pubspec.yaml @@ -0,0 +1,87 @@ +name: flutter_module +description: "A new Flutter module project." + +# The following defines the version and build number for your application. +# A version number is three numbers separated by dots, like 1.2.43 +# followed by an optional build number separated by a +. +# Both the version and the builder number may be overridden in flutter +# build by specifying --build-name and --build-number, respectively. +# In Android, build-name is used as versionName while build-number used as versionCode. +# Read more about Android versioning at https://developer.android.com/studio/publish/versioning +# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. +# Read more about iOS versioning at +# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html +# +# This version is used _only_ for the Runner app, which is used if you just do +# a `flutter run`. It has no impact on any other native host app that you embed +# your Flutter project into. +version: 1.0.0+1 + +environment: + sdk: ^3.11.0-173.0.dev + +dependencies: + flutter: + sdk: flutter + + # The following adds the Cupertino Icons font to your application. + # Use with the CupertinoIcons class for iOS style icons. + cupertino_icons: ^1.0.8 + +dev_dependencies: + flutter_test: + sdk: flutter + flutter_lints: ^6.0.0 + +# For information on the generic Dart part of this file, see the +# following page: https://dart.dev/tools/pub/pubspec + +flutter: + # The following line ensures that the Material Icons font is + # included with your application, so that you can use the icons in + # the material Icons class. + uses-material-design: true + + # To add Flutter specific assets to your application, add an assets section, + # like this: + # assets: + # - images/a_dot_burr.jpeg + # - images/a_dot_ham.jpeg + + # An image asset can refer to one or more resolution-specific "variants", see + # https://flutter.dev/to/resolution-aware-images + + # For details regarding adding assets from package dependencies, see + # https://flutter.dev/to/asset-from-package + + # To add Flutter specific custom fonts to your application, add a fonts + # section here, in this "flutter" section. Each entry in this list should + # have a "family" key with the font family name, and a "fonts" key with a + # list giving the asset and other descriptors for the font. For + # example: + # fonts: + # - family: Schyler + # fonts: + # - asset: fonts/Schyler-Regular.ttf + # - asset: fonts/Schyler-Italic.ttf + # style: italic + # - family: Trajan Pro + # fonts: + # - asset: fonts/TrajanPro.ttf + # - asset: fonts/TrajanPro_Bold.ttf + # weight: 700 + # + # For details regarding fonts from package dependencies, + # see https://flutter.dev/to/font-from-package + + + # This section identifies your Flutter project as a module meant for + # embedding in a native host app. These identifiers should _not_ ordinarily + # be changed after generation - they are used to ensure that the tooling can + # maintain consistency when adding or modifying assets and plugins. + # They also do not have any bearing on your native host application's + # identifiers, which may be completely independent or the same as these. + module: + androidX: true + androidPackage: com.example.flutter_module + iosBundleIdentifier: com.example.flutterModule diff --git a/add_to_app/ios_content_resizing/flutter_module/test/widget_test.dart b/add_to_app/ios_content_resizing/flutter_module/test/widget_test.dart new file mode 100644 index 00000000000..396d69651a1 --- /dev/null +++ b/add_to_app/ios_content_resizing/flutter_module/test/widget_test.dart @@ -0,0 +1,30 @@ +// This is a basic Flutter widget test. +// +// To perform an interaction with a widget in your test, use the WidgetTester +// utility in the flutter_test package. For example, you can send tap and scroll +// gestures. You can also use WidgetTester to find child widgets in the widget +// tree, read text, and verify that the values of widget properties are correct. + +import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; + +import 'package:flutter_module/main.dart'; + +void main() { + testWidgets('Counter increments smoke test', (WidgetTester tester) async { + // Build our app and trigger a frame. + await tester.pumpWidget(const MyApp()); + + // Verify that our counter starts at 0. + expect(find.text('0'), findsOneWidget); + expect(find.text('1'), findsNothing); + + // Tap the '+' icon and trigger a frame. + await tester.tap(find.byIcon(Icons.add)); + await tester.pump(); + + // Verify that our counter has incremented. + expect(find.text('0'), findsNothing); + expect(find.text('1'), findsOneWidget); + }); +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Podfile b/add_to_app/ios_content_resizing/ios_content_resizing/Podfile new file mode 100644 index 00000000000..a17a105625a --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Podfile @@ -0,0 +1,32 @@ +# Uncomment the next line to define a global platform for your project +# platform :ios, '15.0' + +flutter_application_path = '../flutter_module' +load File.join(flutter_application_path, '.ios', 'Flutter', 'podhelper.rb') + + +target 'ios_content_resizing' do + # Comment the next line if you don't want to use dynamic frameworks + use_frameworks! + + # Pods for ios_content_resizing + + install_all_flutter_pods(flutter_application_path) + + target 'ios_content_resizingTests' do + inherit! :search_paths + # Pods for testing + end + + target 'ios_content_resizingUITests' do + # Pods for testing + end + +end + + +post_install do |installer| + flutter_post_install(installer) if defined?(flutter_post_install) +end + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/Flutter.podspec.json b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/Flutter.podspec.json new file mode 100644 index 00000000000..d67a7c76f8a --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/Flutter.podspec.json @@ -0,0 +1,20 @@ +{ + "name": "Flutter", + "version": "1.0.0", + "summary": "A UI toolkit for beautiful and fast apps.", + "homepage": "https://flutter.dev", + "license": { + "type": "BSD" + }, + "authors": { + "Flutter Dev Team": "flutter-dev@googlegroups.com" + }, + "source": { + "git": "https://github.com/flutter/engine", + "tag": "1.0.0" + }, + "platforms": { + "ios": "13.0" + }, + "vendored_frameworks": "path/to/nothing" +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/FlutterPluginRegistrant.podspec.json b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/FlutterPluginRegistrant.podspec.json new file mode 100644 index 00000000000..0000381624f --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/FlutterPluginRegistrant.podspec.json @@ -0,0 +1,31 @@ +{ + "name": "FlutterPluginRegistrant", + "version": "0.0.1", + "summary": "Registers plugins with your Flutter app", + "description": "Depends on all your plugins, and provides a function to register them.", + "homepage": "https://flutter.dev", + "license": { + "type": "BSD" + }, + "authors": { + "Flutter Dev Team": "flutter-dev@googlegroups.com" + }, + "platforms": { + "ios": "13.0" + }, + "source_files": [ + "Classes", + "Classes/**/*.{h,m}" + ], + "source": { + "path": "." + }, + "public_header_files": "./Classes/**/*.h", + "static_framework": true, + "pod_target_xcconfig": { + "DEFINES_MODULE": "YES" + }, + "dependencies": { + "Flutter": [] + } +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Manifest.lock b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Manifest.lock new file mode 100644 index 00000000000..00cca2c02a7 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Manifest.lock @@ -0,0 +1,22 @@ +PODS: + - Flutter (1.0.0) + - FlutterPluginRegistrant (0.0.1): + - Flutter + +DEPENDENCIES: + - Flutter (from `../flutter_module/.ios/Flutter`) + - FlutterPluginRegistrant (from `../flutter_module/.ios/Flutter/FlutterPluginRegistrant`) + +EXTERNAL SOURCES: + Flutter: + :path: "../flutter_module/.ios/Flutter" + FlutterPluginRegistrant: + :path: "../flutter_module/.ios/Flutter/FlutterPluginRegistrant" + +SPEC CHECKSUMS: + Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467 + FlutterPluginRegistrant: 1bf2b93dcc6a731089dfe77f7a867be153c5008f + +PODFILE CHECKSUM: 8512f9d26835e64e2656751293a9f1e09c986b9d + +COCOAPODS: 1.16.2 diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/project.pbxproj b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/project.pbxproj new file mode 100644 index 00000000000..8c0ad06b70b --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/project.pbxproj @@ -0,0 +1,1276 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 77; + objects = { + +/* Begin PBXAggregateTarget section */ + 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */ = { + isa = PBXAggregateTarget; + buildConfigurationList = B26E11467D023FA6CDCE36F75198812F /* Build configuration list for PBXAggregateTarget "Flutter" */; + buildPhases = ( + ); + dependencies = ( + ); + name = Flutter; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + 0B55D92CD2BAF933FE9D276939406D2C /* Pods-ios_content_resizingTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BA027B63B056E637B52DC48E997871D7 /* Pods-ios_content_resizingTests-dummy.m */; }; + 1C8B15B53492E657E17E19CD85AA35C0 /* Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 740A60CC3FE2346AA1FEB529CDCCD439 /* Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m */; }; + 203789EDA9BC17C4D2BB55B087DE25B8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; }; + 44F46818A4A76D2DC7F7FDADAB40E781 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CE7A004F669D9407A99593AB2AFD491 /* GeneratedPluginRegistrant.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4E3441E90BAB7D083993C56E292FA52C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; }; + 4EE0C80B8A3C1107458579AFB4E41741 /* GeneratedPluginRegistrant.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E2D1DC1EC3C3E20E7FB2A0FF3EF4FCE /* GeneratedPluginRegistrant.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5A79D8994BC80675EE4A3F50CA6FEF4F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; }; + 8DFAE2FA34C28A0530B72F4B5D3F0623 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; }; + ACC932BEF12584E78B91E93346CB63E2 /* FlutterPluginRegistrant-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC08935243F50B63245B117C34B45F3 /* FlutterPluginRegistrant-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B3889D09053A313F7A70C12C7D2B587C /* Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CC33182B193B07DB144E4A6C9E01AB79 /* Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B6AE8F15F2F866E8B52DC17217A64E71 /* Pods-ios_content_resizingTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 715630C735F4805B3A805CF50A9585F3 /* Pods-ios_content_resizingTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C31439779167DBFB0C2D6E1D2F3C673C /* Pods-ios_content_resizing-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 31098EA55F47B77CF6DE1E5F5057F68A /* Pods-ios_content_resizing-dummy.m */; }; + D065E4911A1DC5E493EEF7DB517B7214 /* FlutterPluginRegistrant-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AAF585701677AEC4242C6CA033275B4 /* FlutterPluginRegistrant-dummy.m */; }; + D082208849F456F5518E6230A683096B /* Pods-ios_content_resizing-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F732C0211A045562F5E572138528CEB7 /* Pods-ios_content_resizing-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 0F89DBD5A9470B70308A8E62C10B4DC1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; + remoteInfo = Flutter; + }; + 2C9791B40262CCA18DEA3CC7B7E1C667 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; + remoteInfo = Flutter; + }; + 30CCE7DF2B096D489C0337201A23FEAB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 83DAA8F43D74F8D51203DE23C7C3A3F5; + remoteInfo = FlutterPluginRegistrant; + }; + 78511F1C1FD5C9BCB89672C1D4CF0475 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CD1FE7E172044780FE5855099C6F9044; + remoteInfo = "Pods-ios_content_resizing"; + }; + 7948C6A42ED494BC018F1377A88CB2A6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; + remoteInfo = Flutter; + }; + FC692C20666B5D147B676FA8171775D9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 83DAA8F43D74F8D51203DE23C7C3A3F5; + remoteInfo = FlutterPluginRegistrant; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 1B2A7B60A690627987F4A32728B1C441 /* Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig"; sourceTree = ""; }; + 1CD0339A7DDFF44C520DC672454F4CE6 /* Pods-ios_content_resizing-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ios_content_resizing-acknowledgements.markdown"; sourceTree = ""; }; + 1D1E78871CC9F2B1032560E19646993A /* FlutterPluginRegistrant.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlutterPluginRegistrant.release.xcconfig; sourceTree = ""; }; + 1DB7953AE371D07C9F6F2864A55214EC /* Pods-ios_content_resizingTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ios_content_resizingTests.release.xcconfig"; sourceTree = ""; }; + 2AAF585701677AEC4242C6CA033275B4 /* FlutterPluginRegistrant-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FlutterPluginRegistrant-dummy.m"; sourceTree = ""; }; + 2ABF8D83AB2BF46EE272C48561AC5A9E /* Pods-ios_content_resizing.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ios_content_resizing.release.xcconfig"; sourceTree = ""; }; + 2CE7A004F669D9407A99593AB2AFD491 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GeneratedPluginRegistrant.m; path = Classes/GeneratedPluginRegistrant.m; sourceTree = ""; }; + 31098EA55F47B77CF6DE1E5F5057F68A /* Pods-ios_content_resizing-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ios_content_resizing-dummy.m"; sourceTree = ""; }; + 384DDA2CB25005BD6479B5987C619DD4 /* 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; }; + 3E69713BE606BC991F1C594C917D928F /* Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown"; sourceTree = ""; }; + 4A162C470ECD31CC6B84AE1812A68341 /* Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist"; sourceTree = ""; }; + 4C51364643265E0627F1B989ABA783AC /* FlutterPluginRegistrant-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FlutterPluginRegistrant-Info.plist"; sourceTree = ""; }; + 4F9125ED2B32F99F97EDBFBE15D053F3 /* Pods-ios_content_resizingTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ios_content_resizingTests.modulemap"; sourceTree = ""; }; + 550F9C4A71235EA01D58F70B41B5E3B9 /* Pods-ios_content_resizingTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ios_content_resizingTests-acknowledgements.plist"; sourceTree = ""; }; + 5793332C56B5C51F3F1A35E29F0F9B5C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 5A9ED177DD476853C074763AE7635D34 /* FlutterPluginRegistrant.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlutterPluginRegistrant.debug.xcconfig; sourceTree = ""; }; + 5E6A76AF8DCCA1B2712836D571D61A68 /* Flutter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Flutter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6056F33DB108BE122160D138498C99F8 /* Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig"; sourceTree = ""; }; + 715630C735F4805B3A805CF50A9585F3 /* Pods-ios_content_resizingTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ios_content_resizingTests-umbrella.h"; sourceTree = ""; }; + 7190D3A2421CEF0390C6C11ED312EB1B /* Flutter.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flutter.release.xcconfig; sourceTree = ""; }; + 740A60CC3FE2346AA1FEB529CDCCD439 /* Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m"; sourceTree = ""; }; + 7E2D1DC1EC3C3E20E7FB2A0FF3EF4FCE /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GeneratedPluginRegistrant.h; path = Classes/GeneratedPluginRegistrant.h; sourceTree = ""; }; + 808964E349CF6A9C44A0909D0D6EEE8E /* Pods-ios_content_resizing.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ios_content_resizing.debug.xcconfig"; sourceTree = ""; }; + 80CEA24FF2084B8F57DFDFCC07F2064A /* Pods-ios_content_resizing-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ios_content_resizing-acknowledgements.plist"; sourceTree = ""; }; + 848315FC91D61DDA12BFE10AF7903DD9 /* Pods-ios_content_resizingTests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-ios_content_resizingTests"; path = Pods_ios_content_resizingTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 863E29E35DF7586D71558E0FB794DDBC /* Pods-ios_content_resizing.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ios_content_resizing.modulemap"; sourceTree = ""; }; + 89F5E495C830BAE2B7079C84C449077F /* FlutterPluginRegistrant-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlutterPluginRegistrant-prefix.pch"; sourceTree = ""; }; + 95DFED33AEBE20CFC59AC2D89DF45F13 /* Pods-ios_content_resizingTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ios_content_resizingTests.debug.xcconfig"; sourceTree = ""; }; + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B1B78154C420D3C3E3BB30C73471AF58 /* Pods-ios_content_resizing */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-ios_content_resizing"; path = Pods_ios_content_resizing.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + B6420A4EFE167F7BACB091FE384D2AFB /* FlutterPluginRegistrant.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FlutterPluginRegistrant.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BA027B63B056E637B52DC48E997871D7 /* Pods-ios_content_resizingTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ios_content_resizingTests-dummy.m"; sourceTree = ""; }; + BB6445B421DA90DD6610EE80D499E3B4 /* Flutter.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flutter.debug.xcconfig; sourceTree = ""; }; + CC33182B193B07DB144E4A6C9E01AB79 /* Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h"; sourceTree = ""; }; + D8740969C1272A3D14589F37950232B7 /* Pods-ios_content_resizing-ios_content_resizingUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ios_content_resizing-ios_content_resizingUITests.modulemap"; sourceTree = ""; }; + D8DBE60F83CC9855059B3B56F3C86603 /* FlutterPluginRegistrant.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FlutterPluginRegistrant.modulemap; sourceTree = ""; }; + DAC271DF29EEC36C2D6DF4B29D00059D /* Pods-ios_content_resizing-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ios_content_resizing-Info.plist"; sourceTree = ""; }; + DCC08935243F50B63245B117C34B45F3 /* FlutterPluginRegistrant-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlutterPluginRegistrant-umbrella.h"; sourceTree = ""; }; + DEE6C5FCB90FB050631DE9252A0FF907 /* Pods-ios_content_resizing-ios_content_resizingUITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-ios_content_resizing-ios_content_resizingUITests"; path = Pods_ios_content_resizing_ios_content_resizingUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + DF7C6EBB9161EEF650EC12B4BB67E628 /* FlutterPluginRegistrant */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FlutterPluginRegistrant; path = FlutterPluginRegistrant.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + EB01D38E9B9397013BDA6F2ECD3C116A /* Pods-ios_content_resizingTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ios_content_resizingTests-acknowledgements.markdown"; sourceTree = ""; }; + EC58DCEFE8DA0A2BC696E7AD13C037B4 /* Pods-ios_content_resizingTests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ios_content_resizingTests-Info.plist"; sourceTree = ""; }; + F0FC688EB853C97544D47655599785D8 /* Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist"; sourceTree = ""; }; + F732C0211A045562F5E572138528CEB7 /* Pods-ios_content_resizing-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ios_content_resizing-umbrella.h"; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 3C14517AA188AA0F4644710BDF6F2E0B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 203789EDA9BC17C4D2BB55B087DE25B8 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 830D63870BCE1E7548BFBF07AF254BC6 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 8DFAE2FA34C28A0530B72F4B5D3F0623 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C85264A7AE5B8D2D6D41BECD6C886F30 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 5A79D8994BC80675EE4A3F50CA6FEF4F /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DE8E25759FD7427C882BA4EB71D22E80 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 4E3441E90BAB7D083993C56E292FA52C /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 17E661ACE046111F65EB8BC53399F9D5 /* Targets Support Files */ = { + isa = PBXGroup; + children = ( + C8D1B05D3D5016D84F1E8CFC2829BA53 /* Pods-ios_content_resizing */, + AEE7DDCA547716D81E9370F489774C49 /* Pods-ios_content_resizing-ios_content_resizingUITests */, + D89266006DC36009E817D04F8788D146 /* Pods-ios_content_resizingTests */, + ); + name = "Targets Support Files"; + sourceTree = ""; + }; + 2479EE86B1BDE660ABC7156E54E5A81C /* Support Files */ = { + isa = PBXGroup; + children = ( + D8DBE60F83CC9855059B3B56F3C86603 /* FlutterPluginRegistrant.modulemap */, + 2AAF585701677AEC4242C6CA033275B4 /* FlutterPluginRegistrant-dummy.m */, + 4C51364643265E0627F1B989ABA783AC /* FlutterPluginRegistrant-Info.plist */, + 89F5E495C830BAE2B7079C84C449077F /* FlutterPluginRegistrant-prefix.pch */, + DCC08935243F50B63245B117C34B45F3 /* FlutterPluginRegistrant-umbrella.h */, + 5A9ED177DD476853C074763AE7635D34 /* FlutterPluginRegistrant.debug.xcconfig */, + 1D1E78871CC9F2B1032560E19646993A /* FlutterPluginRegistrant.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant"; + sourceTree = ""; + }; + 6F7106898BE13FDCFDCF877524DD896B /* Products */ = { + isa = PBXGroup; + children = ( + DF7C6EBB9161EEF650EC12B4BB67E628 /* FlutterPluginRegistrant */, + B1B78154C420D3C3E3BB30C73471AF58 /* Pods-ios_content_resizing */, + DEE6C5FCB90FB050631DE9252A0FF907 /* Pods-ios_content_resizing-ios_content_resizingUITests */, + 848315FC91D61DDA12BFE10AF7903DD9 /* Pods-ios_content_resizingTests */, + ); + name = Products; + sourceTree = ""; + }; + A95135DC3DC55EDD6E2AE851A351550A /* Development Pods */ = { + isa = PBXGroup; + children = ( + C4828404A16E02F8503F54C1BEFB50AD /* Flutter */, + E236746D72969B68FE0982CAC2FA077D /* FlutterPluginRegistrant */, + ); + name = "Development Pods"; + sourceTree = ""; + }; + AEE7DDCA547716D81E9370F489774C49 /* Pods-ios_content_resizing-ios_content_resizingUITests */ = { + isa = PBXGroup; + children = ( + D8740969C1272A3D14589F37950232B7 /* Pods-ios_content_resizing-ios_content_resizingUITests.modulemap */, + 3E69713BE606BC991F1C594C917D928F /* Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown */, + 4A162C470ECD31CC6B84AE1812A68341 /* Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist */, + 740A60CC3FE2346AA1FEB529CDCCD439 /* Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m */, + F0FC688EB853C97544D47655599785D8 /* Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist */, + CC33182B193B07DB144E4A6C9E01AB79 /* Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h */, + 1B2A7B60A690627987F4A32728B1C441 /* Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig */, + 6056F33DB108BE122160D138498C99F8 /* Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig */, + ); + name = "Pods-ios_content_resizing-ios_content_resizingUITests"; + path = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests"; + sourceTree = ""; + }; + C4828404A16E02F8503F54C1BEFB50AD /* Flutter */ = { + isa = PBXGroup; + children = ( + C82424DE68A1A19BFC1B640369F4BC62 /* Pod */, + E30233976B4062D1B8D8CBF9AB58FDEF /* Support Files */, + ); + name = Flutter; + path = ../../flutter_module/.ios/Flutter; + sourceTree = ""; + }; + C82424DE68A1A19BFC1B640369F4BC62 /* Pod */ = { + isa = PBXGroup; + children = ( + 5E6A76AF8DCCA1B2712836D571D61A68 /* Flutter.podspec */, + 5793332C56B5C51F3F1A35E29F0F9B5C /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + C8D1B05D3D5016D84F1E8CFC2829BA53 /* Pods-ios_content_resizing */ = { + isa = PBXGroup; + children = ( + 863E29E35DF7586D71558E0FB794DDBC /* Pods-ios_content_resizing.modulemap */, + 1CD0339A7DDFF44C520DC672454F4CE6 /* Pods-ios_content_resizing-acknowledgements.markdown */, + 80CEA24FF2084B8F57DFDFCC07F2064A /* Pods-ios_content_resizing-acknowledgements.plist */, + 31098EA55F47B77CF6DE1E5F5057F68A /* Pods-ios_content_resizing-dummy.m */, + DAC271DF29EEC36C2D6DF4B29D00059D /* Pods-ios_content_resizing-Info.plist */, + F732C0211A045562F5E572138528CEB7 /* Pods-ios_content_resizing-umbrella.h */, + 808964E349CF6A9C44A0909D0D6EEE8E /* Pods-ios_content_resizing.debug.xcconfig */, + 2ABF8D83AB2BF46EE272C48561AC5A9E /* Pods-ios_content_resizing.release.xcconfig */, + ); + name = "Pods-ios_content_resizing"; + path = "Target Support Files/Pods-ios_content_resizing"; + sourceTree = ""; + }; + CAF78B8E3930ADF8B64CF30FC13AA025 /* Pod */ = { + isa = PBXGroup; + children = ( + B6420A4EFE167F7BACB091FE384D2AFB /* FlutterPluginRegistrant.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + CF1408CF629C7361332E53B88F7BD30C = { + isa = PBXGroup; + children = ( + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, + A95135DC3DC55EDD6E2AE851A351550A /* Development Pods */, + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, + 6F7106898BE13FDCFDCF877524DD896B /* Products */, + 17E661ACE046111F65EB8BC53399F9D5 /* Targets Support Files */, + ); + sourceTree = ""; + }; + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { + isa = PBXGroup; + children = ( + E4801F62A6B08CD9B5410329F1A18FDE /* iOS */, + ); + name = Frameworks; + sourceTree = ""; + }; + D89266006DC36009E817D04F8788D146 /* Pods-ios_content_resizingTests */ = { + isa = PBXGroup; + children = ( + 4F9125ED2B32F99F97EDBFBE15D053F3 /* Pods-ios_content_resizingTests.modulemap */, + EB01D38E9B9397013BDA6F2ECD3C116A /* Pods-ios_content_resizingTests-acknowledgements.markdown */, + 550F9C4A71235EA01D58F70B41B5E3B9 /* Pods-ios_content_resizingTests-acknowledgements.plist */, + BA027B63B056E637B52DC48E997871D7 /* Pods-ios_content_resizingTests-dummy.m */, + EC58DCEFE8DA0A2BC696E7AD13C037B4 /* Pods-ios_content_resizingTests-Info.plist */, + 715630C735F4805B3A805CF50A9585F3 /* Pods-ios_content_resizingTests-umbrella.h */, + 95DFED33AEBE20CFC59AC2D89DF45F13 /* Pods-ios_content_resizingTests.debug.xcconfig */, + 1DB7953AE371D07C9F6F2864A55214EC /* Pods-ios_content_resizingTests.release.xcconfig */, + ); + name = "Pods-ios_content_resizingTests"; + path = "Target Support Files/Pods-ios_content_resizingTests"; + sourceTree = ""; + }; + E236746D72969B68FE0982CAC2FA077D /* FlutterPluginRegistrant */ = { + isa = PBXGroup; + children = ( + 7E2D1DC1EC3C3E20E7FB2A0FF3EF4FCE /* GeneratedPluginRegistrant.h */, + 2CE7A004F669D9407A99593AB2AFD491 /* GeneratedPluginRegistrant.m */, + CAF78B8E3930ADF8B64CF30FC13AA025 /* Pod */, + 2479EE86B1BDE660ABC7156E54E5A81C /* Support Files */, + ); + name = FlutterPluginRegistrant; + path = ../../flutter_module/.ios/Flutter/FlutterPluginRegistrant; + sourceTree = ""; + }; + E30233976B4062D1B8D8CBF9AB58FDEF /* Support Files */ = { + isa = PBXGroup; + children = ( + BB6445B421DA90DD6610EE80D499E3B4 /* Flutter.debug.xcconfig */, + 7190D3A2421CEF0390C6C11ED312EB1B /* Flutter.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios_content_resizing/Pods/Target Support Files/Flutter"; + sourceTree = ""; + }; + E4801F62A6B08CD9B5410329F1A18FDE /* iOS */ = { + isa = PBXGroup; + children = ( + 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */, + ); + name = iOS; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 0FD43C857895FACDAB7AA8C0FF502499 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + B6AE8F15F2F866E8B52DC17217A64E71 /* Pods-ios_content_resizingTests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 32F610179E9D72EE3A16EB3843931EE5 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ACC932BEF12584E78B91E93346CB63E2 /* FlutterPluginRegistrant-umbrella.h in Headers */, + 4EE0C80B8A3C1107458579AFB4E41741 /* GeneratedPluginRegistrant.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 51C7632BD4576CB1075F90A036533FE9 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + B3889D09053A313F7A70C12C7D2B587C /* Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B2B5AE61D5B2BAC16D2CCA2B5E4F8DEE /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + D082208849F456F5518E6230A683096B /* Pods-ios_content_resizing-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 81D87E4496B08116037E5861D2F209C8 /* Pods-ios_content_resizing-ios_content_resizingUITests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 6B2F3D8F2303282D58B664BE8F2D4EA8 /* Build configuration list for PBXNativeTarget "Pods-ios_content_resizing-ios_content_resizingUITests" */; + buildPhases = ( + 51C7632BD4576CB1075F90A036533FE9 /* Headers */, + 6558434F3ED48ADA5D330EDA3E26529C /* Sources */, + DE8E25759FD7427C882BA4EB71D22E80 /* Frameworks */, + A566FEC23C5B98D2E72A7B131DA712B0 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + EA4B8DFAE72877B05FABD41CFF09E680 /* PBXTargetDependency */, + EDA8F941BE29B16B5B697A2DED6651F5 /* PBXTargetDependency */, + ); + name = "Pods-ios_content_resizing-ios_content_resizingUITests"; + productName = Pods_ios_content_resizing_ios_content_resizingUITests; + productReference = DEE6C5FCB90FB050631DE9252A0FF907 /* Pods-ios_content_resizing-ios_content_resizingUITests */; + productType = "com.apple.product-type.framework"; + }; + 83DAA8F43D74F8D51203DE23C7C3A3F5 /* FlutterPluginRegistrant */ = { + isa = PBXNativeTarget; + buildConfigurationList = C9C0BE58A278116122B314654A0C4A57 /* Build configuration list for PBXNativeTarget "FlutterPluginRegistrant" */; + buildPhases = ( + 32F610179E9D72EE3A16EB3843931EE5 /* Headers */, + EE402EE2699B3EFF89477200DF3CE148 /* Sources */, + C85264A7AE5B8D2D6D41BECD6C886F30 /* Frameworks */, + 41C85A835F7246370834586E809DA47B /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 3796C178DFE7E4BF73050579F753935D /* PBXTargetDependency */, + ); + name = FlutterPluginRegistrant; + productName = FlutterPluginRegistrant; + productReference = DF7C6EBB9161EEF650EC12B4BB67E628 /* FlutterPluginRegistrant */; + productType = "com.apple.product-type.framework"; + }; + CD1FE7E172044780FE5855099C6F9044 /* Pods-ios_content_resizing */ = { + isa = PBXNativeTarget; + buildConfigurationList = F446D705FA553D5DDA096E4FA9C58C9A /* Build configuration list for PBXNativeTarget "Pods-ios_content_resizing" */; + buildPhases = ( + B2B5AE61D5B2BAC16D2CCA2B5E4F8DEE /* Headers */, + D8AB908807A6536C9CCC151F2A5AC435 /* Sources */, + 3C14517AA188AA0F4644710BDF6F2E0B /* Frameworks */, + 2C5BDD3A05AF10694FB31F41E7136D9A /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 28E6E08F0100197B5A7C30DEE65648FD /* PBXTargetDependency */, + 1DE7FB42D09CCE770F342A633F255B1E /* PBXTargetDependency */, + ); + name = "Pods-ios_content_resizing"; + productName = Pods_ios_content_resizing; + productReference = B1B78154C420D3C3E3BB30C73471AF58 /* Pods-ios_content_resizing */; + productType = "com.apple.product-type.framework"; + }; + E4EA532EB8D753070F4018E9EB3C09A2 /* Pods-ios_content_resizingTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 9C81C4875C3CAE4CE50BCD8564492388 /* Build configuration list for PBXNativeTarget "Pods-ios_content_resizingTests" */; + buildPhases = ( + 0FD43C857895FACDAB7AA8C0FF502499 /* Headers */, + 5CEB1B2249C5D86647F8F2BEFA578F1C /* Sources */, + 830D63870BCE1E7548BFBF07AF254BC6 /* Frameworks */, + AF5798AF7A08861DE74D1251C1BE5D0C /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 97EE237CECB95E15153F7C32A348F503 /* PBXTargetDependency */, + ); + name = "Pods-ios_content_resizingTests"; + productName = Pods_ios_content_resizingTests; + productReference = 848315FC91D61DDA12BFE10AF7903DD9 /* Pods-ios_content_resizingTests */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + BFDFE7DC352907FC980B868725387E98 /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 1600; + LastUpgradeCheck = 1600; + }; + buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; + compatibilityVersion = "Xcode 16.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + Base, + en, + ); + mainGroup = CF1408CF629C7361332E53B88F7BD30C; + minimizedProjectReferenceProxies = 0; + preferredProjectObjectVersion = 77; + productRefGroup = 6F7106898BE13FDCFDCF877524DD896B /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */, + 83DAA8F43D74F8D51203DE23C7C3A3F5 /* FlutterPluginRegistrant */, + CD1FE7E172044780FE5855099C6F9044 /* Pods-ios_content_resizing */, + 81D87E4496B08116037E5861D2F209C8 /* Pods-ios_content_resizing-ios_content_resizingUITests */, + E4EA532EB8D753070F4018E9EB3C09A2 /* Pods-ios_content_resizingTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 2C5BDD3A05AF10694FB31F41E7136D9A /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 41C85A835F7246370834586E809DA47B /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A566FEC23C5B98D2E72A7B131DA712B0 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AF5798AF7A08861DE74D1251C1BE5D0C /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 5CEB1B2249C5D86647F8F2BEFA578F1C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0B55D92CD2BAF933FE9D276939406D2C /* Pods-ios_content_resizingTests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6558434F3ED48ADA5D330EDA3E26529C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 1C8B15B53492E657E17E19CD85AA35C0 /* Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D8AB908807A6536C9CCC151F2A5AC435 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C31439779167DBFB0C2D6E1D2F3C673C /* Pods-ios_content_resizing-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + EE402EE2699B3EFF89477200DF3CE148 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D065E4911A1DC5E493EEF7DB517B7214 /* FlutterPluginRegistrant-dummy.m in Sources */, + 44F46818A4A76D2DC7F7FDADAB40E781 /* GeneratedPluginRegistrant.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 1DE7FB42D09CCE770F342A633F255B1E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FlutterPluginRegistrant; + target = 83DAA8F43D74F8D51203DE23C7C3A3F5 /* FlutterPluginRegistrant */; + targetProxy = 30CCE7DF2B096D489C0337201A23FEAB /* PBXContainerItemProxy */; + }; + 28E6E08F0100197B5A7C30DEE65648FD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Flutter; + target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; + targetProxy = 7948C6A42ED494BC018F1377A88CB2A6 /* PBXContainerItemProxy */; + }; + 3796C178DFE7E4BF73050579F753935D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Flutter; + target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; + targetProxy = 0F89DBD5A9470B70308A8E62C10B4DC1 /* PBXContainerItemProxy */; + }; + 97EE237CECB95E15153F7C32A348F503 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-ios_content_resizing"; + target = CD1FE7E172044780FE5855099C6F9044 /* Pods-ios_content_resizing */; + targetProxy = 78511F1C1FD5C9BCB89672C1D4CF0475 /* PBXContainerItemProxy */; + }; + EA4B8DFAE72877B05FABD41CFF09E680 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Flutter; + target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; + targetProxy = 2C9791B40262CCA18DEA3CC7B7E1C667 /* PBXContainerItemProxy */; + }; + EDA8F941BE29B16B5B697A2DED6651F5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FlutterPluginRegistrant; + target = 83DAA8F43D74F8D51203DE23C7C3A3F5 /* FlutterPluginRegistrant */; + targetProxy = FC692C20666B5D147B676FA8171775D9 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 040F80BD2D4B620F91B295DA27374820 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 95DFED33AEBE20CFC59AC2D89DF45F13 /* Pods-ios_content_resizingTests.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + INFOPLIST_FILE = "Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.modulemap"; + ONLY_ACTIVE_ARCH = NO; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 1602B4EBAE0C64817990D65F3711E6C6 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6056F33DB108BE122160D138498C99F8 /* Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + INFOPLIST_FILE = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.modulemap"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 7CA996BECDFC2548E01D9AF66C171E89 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1B2A7B60A690627987F4A32728B1C441 /* Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + INFOPLIST_FILE = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.modulemap"; + ONLY_ACTIVE_ARCH = NO; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + A3CA710B05DD0D38FF0C61760F3B99FB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_DEBUG=1", + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Debug; + }; + B0AD22997967310A1650F12017E3C2C7 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1D1E78871CC9F2B1032560E19646993A /* FlutterPluginRegistrant.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + GCC_PREFIX_HEADER = "Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + PRODUCT_MODULE_NAME = FlutterPluginRegistrant; + PRODUCT_NAME = FlutterPluginRegistrant; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + CB3A369004330A68D6CB0D804AE27792 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7190D3A2421CEF0390C6C11ED312EB1B /* Flutter.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + D8D83461AC915BEDCB4A478E1E489628 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BB6445B421DA90DD6610EE80D499E3B4 /* Flutter.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + ONLY_ACTIVE_ARCH = NO; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + DFFBA46802CC7CCEBC5643E3F5B22C07 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5A9ED177DD476853C074763AE7635D34 /* FlutterPluginRegistrant.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + GCC_PREFIX_HEADER = "Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap"; + ONLY_ACTIVE_ARCH = NO; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + PRODUCT_MODULE_NAME = FlutterPluginRegistrant; + PRODUCT_NAME = FlutterPluginRegistrant; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + E2364721D6682F8B9E80045232309A09 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Release; + }; + F955CE243E6CED064AA3566C5AB2B4C0 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2ABF8D83AB2BF46EE272C48561AC5A9E /* Pods-ios_content_resizing.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + INFOPLIST_FILE = "Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.modulemap"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + FCDBA9CEDD692CC12B081D6F97592E39 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1DB7953AE371D07C9F6F2864A55214EC /* Pods-ios_content_resizingTests.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + INFOPLIST_FILE = "Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.modulemap"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + FD819B07C2E487E567F75DEA02AA0254 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 808964E349CF6A9C44A0909D0D6EEE8E /* Pods-ios_content_resizing.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + INFOPLIST_FILE = "Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.modulemap"; + ONLY_ACTIVE_ARCH = NO; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A3CA710B05DD0D38FF0C61760F3B99FB /* Debug */, + E2364721D6682F8B9E80045232309A09 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 6B2F3D8F2303282D58B664BE8F2D4EA8 /* Build configuration list for PBXNativeTarget "Pods-ios_content_resizing-ios_content_resizingUITests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 7CA996BECDFC2548E01D9AF66C171E89 /* Debug */, + 1602B4EBAE0C64817990D65F3711E6C6 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 9C81C4875C3CAE4CE50BCD8564492388 /* Build configuration list for PBXNativeTarget "Pods-ios_content_resizingTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 040F80BD2D4B620F91B295DA27374820 /* Debug */, + FCDBA9CEDD692CC12B081D6F97592E39 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B26E11467D023FA6CDCE36F75198812F /* Build configuration list for PBXAggregateTarget "Flutter" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D8D83461AC915BEDCB4A478E1E489628 /* Debug */, + CB3A369004330A68D6CB0D804AE27792 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C9C0BE58A278116122B314654A0C4A57 /* Build configuration list for PBXNativeTarget "FlutterPluginRegistrant" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DFFBA46802CC7CCEBC5643E3F5B22C07 /* Debug */, + B0AD22997967310A1650F12017E3C2C7 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + F446D705FA553D5DDA096E4FA9C58C9A /* Build configuration list for PBXNativeTarget "Pods-ios_content_resizing" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FD819B07C2E487E567F75DEA02AA0254 /* Debug */, + F955CE243E6CED064AA3566C5AB2B4C0 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Flutter.xcscheme b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Flutter.xcscheme new file mode 100644 index 00000000000..efb76cca4d8 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Flutter.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/FlutterPluginRegistrant.xcscheme b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/FlutterPluginRegistrant.xcscheme new file mode 100644 index 00000000000..629d12c5c15 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/FlutterPluginRegistrant.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing-ios_content_resizingUITests.xcscheme b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing-ios_content_resizingUITests.xcscheme new file mode 100644 index 00000000000..f6460fe27f5 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing-ios_content_resizingUITests.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing.xcscheme b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing.xcscheme new file mode 100644 index 00000000000..ff91729c9f6 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizingTests.xcscheme b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizingTests.xcscheme new file mode 100644 index 00000000000..c080fe82e0b --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizingTests.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 00000000000..b602389ceef --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,46 @@ + + + + + SchemeUserState + + Flutter.xcscheme + + isShown + + orderHint + 0 + + FlutterPluginRegistrant.xcscheme + + isShown + + orderHint + 1 + + Pods-ios_content_resizing-ios_content_resizingUITests.xcscheme + + isShown + + orderHint + 3 + + Pods-ios_content_resizing.xcscheme + + isShown + + orderHint + 2 + + Pods-ios_content_resizingTests.xcscheme + + isShown + + orderHint + 4 + + + SuppressBuildableAutocreation + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.debug.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.debug.xcconfig new file mode 100644 index 00000000000..17a86f0b2e7 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.debug.xcconfig @@ -0,0 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Flutter +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../flutter_module/.ios/Flutter +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.release.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.release.xcconfig new file mode 100644 index 00000000000..17a86f0b2e7 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.release.xcconfig @@ -0,0 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Flutter +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../flutter_module/.ios/Flutter +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist new file mode 100644 index 00000000000..8928a8d90b7 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 0.0.1 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-dummy.m b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-dummy.m new file mode 100644 index 00000000000..e6bdef1cfa3 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_FlutterPluginRegistrant : NSObject +@end +@implementation PodsDummy_FlutterPluginRegistrant +@end diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch new file mode 100644 index 00000000000..beb2a244183 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-umbrella.h b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-umbrella.h new file mode 100644 index 00000000000..43d71fa4ac2 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-umbrella.h @@ -0,0 +1,17 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "GeneratedPluginRegistrant.h" + +FOUNDATION_EXPORT double FlutterPluginRegistrantVersionNumber; +FOUNDATION_EXPORT const unsigned char FlutterPluginRegistrantVersionString[]; + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.debug.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.debug.xcconfig new file mode 100644 index 00000000000..ce7bdbb7b0b --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.debug.xcconfig @@ -0,0 +1,13 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant +DEFINES_MODULE = YES +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../flutter_module/.ios/Flutter/FlutterPluginRegistrant +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap new file mode 100644 index 00000000000..44b5ef2d0d5 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap @@ -0,0 +1,6 @@ +framework module FlutterPluginRegistrant { + umbrella header "FlutterPluginRegistrant-umbrella.h" + + export * + module * { export * } +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.release.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.release.xcconfig new file mode 100644 index 00000000000..ce7bdbb7b0b --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.release.xcconfig @@ -0,0 +1,13 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant +DEFINES_MODULE = YES +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../flutter_module/.ios/Flutter/FlutterPluginRegistrant +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist new file mode 100644 index 00000000000..19cf209d21e --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown new file mode 100644 index 00000000000..102af753851 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown @@ -0,0 +1,3 @@ +# Acknowledgements +This application makes use of the following third party libraries: +Generated by CocoaPods - https://cocoapods.org diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist new file mode 100644 index 00000000000..7acbad1eabb --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist @@ -0,0 +1,29 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m new file mode 100644 index 00000000000..365aa010f9d --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_ios_content_resizing_ios_content_resizingUITests : NSObject +@end +@implementation PodsDummy_Pods_ios_content_resizing_ios_content_resizingUITests +@end diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h new file mode 100644 index 00000000000..0746477c77a --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_ios_content_resizing_ios_content_resizingUITestsVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_ios_content_resizing_ios_content_resizingUITestsVersionString[]; + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig new file mode 100644 index 00000000000..a2c851c8141 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig @@ -0,0 +1,14 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +OTHER_LDFLAGS = $(inherited) -ObjC -framework "FlutterPluginRegistrant" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/Flutter" "-F${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.modulemap b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.modulemap new file mode 100644 index 00000000000..01cab2eaaba --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.modulemap @@ -0,0 +1,6 @@ +framework module Pods_ios_content_resizing_ios_content_resizingUITests { + umbrella header "Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h" + + export * + module * { export * } +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig new file mode 100644 index 00000000000..a2c851c8141 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig @@ -0,0 +1,14 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +OTHER_LDFLAGS = $(inherited) -ObjC -framework "FlutterPluginRegistrant" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/Flutter" "-F${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-Info.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-Info.plist new file mode 100644 index 00000000000..19cf209d21e --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.markdown b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.markdown new file mode 100644 index 00000000000..102af753851 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.markdown @@ -0,0 +1,3 @@ +# Acknowledgements +This application makes use of the following third party libraries: +Generated by CocoaPods - https://cocoapods.org diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.plist new file mode 100644 index 00000000000..7acbad1eabb --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.plist @@ -0,0 +1,29 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-dummy.m b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-dummy.m new file mode 100644 index 00000000000..16c489cde6d --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_ios_content_resizing : NSObject +@end +@implementation PodsDummy_Pods_ios_content_resizing +@end diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-umbrella.h b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-umbrella.h new file mode 100644 index 00000000000..d3e7c43d4f5 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_ios_content_resizingVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_ios_content_resizingVersionString[]; + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.debug.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.debug.xcconfig new file mode 100644 index 00000000000..a2c851c8141 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.debug.xcconfig @@ -0,0 +1,14 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +OTHER_LDFLAGS = $(inherited) -ObjC -framework "FlutterPluginRegistrant" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/Flutter" "-F${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.modulemap b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.modulemap new file mode 100644 index 00000000000..c1ff0898cbe --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.modulemap @@ -0,0 +1,6 @@ +framework module Pods_ios_content_resizing { + umbrella header "Pods-ios_content_resizing-umbrella.h" + + export * + module * { export * } +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.release.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.release.xcconfig new file mode 100644 index 00000000000..a2c851c8141 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.release.xcconfig @@ -0,0 +1,14 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +OTHER_LDFLAGS = $(inherited) -ObjC -framework "FlutterPluginRegistrant" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/Flutter" "-F${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-Info.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-Info.plist new file mode 100644 index 00000000000..19cf209d21e --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.markdown b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.markdown new file mode 100644 index 00000000000..102af753851 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.markdown @@ -0,0 +1,3 @@ +# Acknowledgements +This application makes use of the following third party libraries: +Generated by CocoaPods - https://cocoapods.org diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.plist new file mode 100644 index 00000000000..7acbad1eabb --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.plist @@ -0,0 +1,29 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-dummy.m b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-dummy.m new file mode 100644 index 00000000000..9e93bedc36a --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_ios_content_resizingTests : NSObject +@end +@implementation PodsDummy_Pods_ios_content_resizingTests +@end diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-umbrella.h b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-umbrella.h new file mode 100644 index 00000000000..793d3fca3c2 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_ios_content_resizingTestsVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_ios_content_resizingTestsVersionString[]; + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.debug.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.debug.xcconfig new file mode 100644 index 00000000000..80e5b31ec2f --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.debug.xcconfig @@ -0,0 +1,10 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.modulemap b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.modulemap new file mode 100644 index 00000000000..a09c5bac370 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.modulemap @@ -0,0 +1,6 @@ +framework module Pods_ios_content_resizingTests { + umbrella header "Pods-ios_content_resizingTests-umbrella.h" + + export * + module * { export * } +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.release.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.release.xcconfig new file mode 100644 index 00000000000..80e5b31ec2f --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.release.xcconfig @@ -0,0 +1,10 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.pbxproj b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.pbxproj new file mode 100644 index 00000000000..bed1ca40b6a --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.pbxproj @@ -0,0 +1,707 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 77; + objects = { + +/* Begin PBXBuildFile section */ + 4DAB140B9F5E2D9A20A8401E /* Pods_ios_content_resizing.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4E62017EB1C0A39E3EFC18A4 /* Pods_ios_content_resizing.framework */; }; + 556795E6023CF9E74872609E /* Pods_ios_content_resizing_ios_content_resizingUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 360DA1E0B282E115E3C8D7BB /* Pods_ios_content_resizing_ios_content_resizingUITests.framework */; }; + A629C1369AEEF868404EE51E /* Pods_ios_content_resizingTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BA5ED9EA5F86CC457B7A551 /* Pods_ios_content_resizingTests.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + F23EDF872EDFB13600A217AA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = F23EDF712EDFB13200A217AA /* Project object */; + proxyType = 1; + remoteGlobalIDString = F23EDF782EDFB13200A217AA; + remoteInfo = ios_content_resizing; + }; + F23EDF912EDFB13600A217AA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = F23EDF712EDFB13200A217AA /* Project object */; + proxyType = 1; + remoteGlobalIDString = F23EDF782EDFB13200A217AA; + remoteInfo = ios_content_resizing; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 0733AA154A58ADE65312896D /* Pods-ios_content_resizingTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios_content_resizingTests.debug.xcconfig"; path = "Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.debug.xcconfig"; sourceTree = ""; }; + 2A7A73D9E31CDD167C0DABA2 /* Pods-ios_content_resizing.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios_content_resizing.release.xcconfig"; path = "Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.release.xcconfig"; sourceTree = ""; }; + 2BA5ED9EA5F86CC457B7A551 /* Pods_ios_content_resizingTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ios_content_resizingTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 360DA1E0B282E115E3C8D7BB /* Pods_ios_content_resizing_ios_content_resizingUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ios_content_resizing_ios_content_resizingUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 4E62017EB1C0A39E3EFC18A4 /* Pods_ios_content_resizing.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ios_content_resizing.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 6668053CE993405B3DC50D73 /* Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig"; path = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig"; sourceTree = ""; }; + 7977AC1A580247C02F750060 /* Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig"; path = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig"; sourceTree = ""; }; + E7C9AB9AF800727134F490DD /* Pods-ios_content_resizing.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios_content_resizing.debug.xcconfig"; path = "Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.debug.xcconfig"; sourceTree = ""; }; + E83F8034DEBD121D26C241B2 /* Pods-ios_content_resizingTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios_content_resizingTests.release.xcconfig"; path = "Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.release.xcconfig"; sourceTree = ""; }; + F23EDF792EDFB13200A217AA /* ios_content_resizing.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ios_content_resizing.app; sourceTree = BUILT_PRODUCTS_DIR; }; + F23EDF862EDFB13600A217AA /* ios_content_resizingTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ios_content_resizingTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + F23EDF902EDFB13600A217AA /* ios_content_resizingUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ios_content_resizingUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFileSystemSynchronizedRootGroup section */ + F23EDF7B2EDFB13200A217AA /* ios_content_resizing */ = { + isa = PBXFileSystemSynchronizedRootGroup; + exceptions = ( + ); + path = ios_content_resizing; + sourceTree = ""; + }; + F23EDF892EDFB13600A217AA /* ios_content_resizingTests */ = { + isa = PBXFileSystemSynchronizedRootGroup; + exceptions = ( + ); + path = ios_content_resizingTests; + sourceTree = ""; + }; + F23EDF932EDFB13600A217AA /* ios_content_resizingUITests */ = { + isa = PBXFileSystemSynchronizedRootGroup; + exceptions = ( + ); + path = ios_content_resizingUITests; + sourceTree = ""; + }; +/* End PBXFileSystemSynchronizedRootGroup section */ + +/* Begin PBXFrameworksBuildPhase section */ + F23EDF762EDFB13200A217AA /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 4DAB140B9F5E2D9A20A8401E /* Pods_ios_content_resizing.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F23EDF832EDFB13600A217AA /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + A629C1369AEEF868404EE51E /* Pods_ios_content_resizingTests.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F23EDF8D2EDFB13600A217AA /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 556795E6023CF9E74872609E /* Pods_ios_content_resizing_ios_content_resizingUITests.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + E4F00B57B56B5F4C870D955C /* Pods */ = { + isa = PBXGroup; + children = ( + E7C9AB9AF800727134F490DD /* Pods-ios_content_resizing.debug.xcconfig */, + 2A7A73D9E31CDD167C0DABA2 /* Pods-ios_content_resizing.release.xcconfig */, + 6668053CE993405B3DC50D73 /* Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig */, + 7977AC1A580247C02F750060 /* Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig */, + 0733AA154A58ADE65312896D /* Pods-ios_content_resizingTests.debug.xcconfig */, + E83F8034DEBD121D26C241B2 /* Pods-ios_content_resizingTests.release.xcconfig */, + ); + name = Pods; + path = Pods; + sourceTree = ""; + }; + F23EDF702EDFB13200A217AA = { + isa = PBXGroup; + children = ( + F23EDF7B2EDFB13200A217AA /* ios_content_resizing */, + F23EDF892EDFB13600A217AA /* ios_content_resizingTests */, + F23EDF932EDFB13600A217AA /* ios_content_resizingUITests */, + F23EDF7A2EDFB13200A217AA /* Products */, + E4F00B57B56B5F4C870D955C /* Pods */, + FDD2BF5D11FE0C2E86DF71DF /* Frameworks */, + ); + sourceTree = ""; + }; + F23EDF7A2EDFB13200A217AA /* Products */ = { + isa = PBXGroup; + children = ( + F23EDF792EDFB13200A217AA /* ios_content_resizing.app */, + F23EDF862EDFB13600A217AA /* ios_content_resizingTests.xctest */, + F23EDF902EDFB13600A217AA /* ios_content_resizingUITests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + FDD2BF5D11FE0C2E86DF71DF /* Frameworks */ = { + isa = PBXGroup; + children = ( + 4E62017EB1C0A39E3EFC18A4 /* Pods_ios_content_resizing.framework */, + 360DA1E0B282E115E3C8D7BB /* Pods_ios_content_resizing_ios_content_resizingUITests.framework */, + 2BA5ED9EA5F86CC457B7A551 /* Pods_ios_content_resizingTests.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + F23EDF782EDFB13200A217AA /* ios_content_resizing */ = { + isa = PBXNativeTarget; + buildConfigurationList = F23EDF9A2EDFB13600A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizing" */; + buildPhases = ( + D122D976A970A0D87E823669 /* [CP] Check Pods Manifest.lock */, + 9A9A5AC07BA43CAE86140CAA /* [CP-User] Run Flutter Build flutter_module Script */, + F23EDF752EDFB13200A217AA /* Sources */, + F23EDF762EDFB13200A217AA /* Frameworks */, + F23EDF772EDFB13200A217AA /* Resources */, + 47743C1E64091918F08E3FBC /* [CP-User] Embed Flutter Build flutter_module Script */, + ); + buildRules = ( + ); + dependencies = ( + ); + fileSystemSynchronizedGroups = ( + F23EDF7B2EDFB13200A217AA /* ios_content_resizing */, + ); + name = ios_content_resizing; + productName = ios_content_resizing; + productReference = F23EDF792EDFB13200A217AA /* ios_content_resizing.app */; + productType = "com.apple.product-type.application"; + }; + F23EDF852EDFB13600A217AA /* ios_content_resizingTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = F23EDF9D2EDFB13600A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizingTests" */; + buildPhases = ( + 0B12C86ED93DBB1AC985689F /* [CP] Check Pods Manifest.lock */, + F23EDF822EDFB13600A217AA /* Sources */, + F23EDF832EDFB13600A217AA /* Frameworks */, + F23EDF842EDFB13600A217AA /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + F23EDF882EDFB13600A217AA /* PBXTargetDependency */, + ); + fileSystemSynchronizedGroups = ( + F23EDF892EDFB13600A217AA /* ios_content_resizingTests */, + ); + name = ios_content_resizingTests; + productName = ios_content_resizingTests; + productReference = F23EDF862EDFB13600A217AA /* ios_content_resizingTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + F23EDF8F2EDFB13600A217AA /* ios_content_resizingUITests */ = { + isa = PBXNativeTarget; + buildConfigurationList = F23EDFA02EDFB13600A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizingUITests" */; + buildPhases = ( + 892568C02BCB8E63C262CECA /* [CP] Check Pods Manifest.lock */, + F23EDF8C2EDFB13600A217AA /* Sources */, + F23EDF8D2EDFB13600A217AA /* Frameworks */, + F23EDF8E2EDFB13600A217AA /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + F23EDF922EDFB13600A217AA /* PBXTargetDependency */, + ); + fileSystemSynchronizedGroups = ( + F23EDF932EDFB13600A217AA /* ios_content_resizingUITests */, + ); + name = ios_content_resizingUITests; + productName = ios_content_resizingUITests; + productReference = F23EDF902EDFB13600A217AA /* ios_content_resizingUITests.xctest */; + productType = "com.apple.product-type.bundle.ui-testing"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + F23EDF712EDFB13200A217AA /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1640; + LastUpgradeCheck = 1640; + TargetAttributes = { + F23EDF782EDFB13200A217AA = { + CreatedOnToolsVersion = 16.4; + }; + F23EDF852EDFB13600A217AA = { + CreatedOnToolsVersion = 16.4; + TestTargetID = F23EDF782EDFB13200A217AA; + }; + F23EDF8F2EDFB13600A217AA = { + CreatedOnToolsVersion = 16.4; + TestTargetID = F23EDF782EDFB13200A217AA; + }; + }; + }; + buildConfigurationList = F23EDF742EDFB13200A217AA /* Build configuration list for PBXProject "ios_content_resizing" */; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = F23EDF702EDFB13200A217AA; + minimizedProjectReferenceProxies = 1; + preferredProjectObjectVersion = 77; + productRefGroup = F23EDF7A2EDFB13200A217AA /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + F23EDF782EDFB13200A217AA /* ios_content_resizing */, + F23EDF852EDFB13600A217AA /* ios_content_resizingTests */, + F23EDF8F2EDFB13600A217AA /* ios_content_resizingUITests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + F23EDF772EDFB13200A217AA /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F23EDF842EDFB13600A217AA /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F23EDF8E2EDFB13600A217AA /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 0B12C86ED93DBB1AC985689F /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-ios_content_resizingTests-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + 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"; + showEnvVarsInLog = 0; + }; + 47743C1E64091918F08E3FBC /* [CP-User] Embed Flutter Build flutter_module Script */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + name = "[CP-User] Embed Flutter Build flutter_module Script"; + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "set -e\nset -u\nsource \"${SRCROOT}/../flutter_module/.ios/Flutter/flutter_export_environment.sh\"\nexport VERBOSE_SCRIPT_LOGGING=1 && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/xcode_backend.sh embed_and_thin"; + }; + 892568C02BCB8E63C262CECA /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-ios_content_resizing-ios_content_resizingUITests-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + 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"; + showEnvVarsInLog = 0; + }; + 9A9A5AC07BA43CAE86140CAA /* [CP-User] Run Flutter Build flutter_module Script */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + name = "[CP-User] Run Flutter Build flutter_module Script"; + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "set -e\nset -u\nsource \"${SRCROOT}/../flutter_module/.ios/Flutter/flutter_export_environment.sh\"\nexport VERBOSE_SCRIPT_LOGGING=1 && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/xcode_backend.sh build"; + }; + D122D976A970A0D87E823669 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-ios_content_resizing-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + 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"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + F23EDF752EDFB13200A217AA /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F23EDF822EDFB13600A217AA /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F23EDF8C2EDFB13600A217AA /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + F23EDF882EDFB13600A217AA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = F23EDF782EDFB13200A217AA /* ios_content_resizing */; + targetProxy = F23EDF872EDFB13600A217AA /* PBXContainerItemProxy */; + }; + F23EDF922EDFB13600A217AA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = F23EDF782EDFB13200A217AA /* ios_content_resizing */; + targetProxy = F23EDF912EDFB13600A217AA /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + F23EDF982EDFB13600A217AA /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + DEVELOPMENT_TEAM = S8QB4VV633; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + F23EDF992EDFB13600A217AA /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEVELOPMENT_TEAM = S8QB4VV633; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + F23EDF9B2EDFB13600A217AA /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E7C9AB9AF800727134F490DD /* Pods-ios_content_resizing.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchScreen_Generation = YES; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-content-resizing"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + F23EDF9C2EDFB13600A217AA /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2A7A73D9E31CDD167C0DABA2 /* Pods-ios_content_resizing.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchScreen_Generation = YES; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-content-resizing"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + F23EDF9E2EDFB13600A217AA /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 0733AA154A58ADE65312896D /* Pods-ios_content_resizingTests.debug.xcconfig */; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-content-resizingTests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ios_content_resizing.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/ios_content_resizing"; + }; + name = Debug; + }; + F23EDF9F2EDFB13600A217AA /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = E83F8034DEBD121D26C241B2 /* Pods-ios_content_resizingTests.release.xcconfig */; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-content-resizingTests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ios_content_resizing.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/ios_content_resizing"; + }; + name = Release; + }; + F23EDFA12EDFB13600A217AA /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6668053CE993405B3DC50D73 /* Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig */; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-content-resizingUITests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = ios_content_resizing; + }; + name = Debug; + }; + F23EDFA22EDFB13600A217AA /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7977AC1A580247C02F750060 /* Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig */; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-content-resizingUITests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = ios_content_resizing; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + F23EDF742EDFB13200A217AA /* Build configuration list for PBXProject "ios_content_resizing" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F23EDF982EDFB13600A217AA /* Debug */, + F23EDF992EDFB13600A217AA /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + F23EDF9A2EDFB13600A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizing" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F23EDF9B2EDFB13600A217AA /* Debug */, + F23EDF9C2EDFB13600A217AA /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + F23EDF9D2EDFB13600A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizingTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F23EDF9E2EDFB13600A217AA /* Debug */, + F23EDF9F2EDFB13600A217AA /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + F23EDFA02EDFB13600A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizingUITests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F23EDFA12EDFB13600A217AA /* Debug */, + F23EDFA22EDFB13600A217AA /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = F23EDF712EDFB13200A217AA /* Project object */; +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000000..919434a6254 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000000000000000000000000000000000000..63d37995bfd779f00ff9480679538542e615b1c6 GIT binary patch literal 13688 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 literal 0 HcmV?d00001 diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 00000000000..4ccf2d12203 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,14 @@ + + + + + SchemeUserState + + ios_content_resizing.xcscheme_^#shared#^_ + + orderHint + 5 + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/contents.xcworkspacedata b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000000..9e9621febf6 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000000000000000000000000000000000000..5c7b1e3b26dc208f4957ef6b6279ece348dc42eb GIT binary patch literal 16055 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 + + + + diff --git a/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000000000000000000000000000000000000..9fe1a796bffd1e3a2d58890bdb515d6547dcd637 GIT binary patch literal 13562 zcmeHt33!v$*6tpX7Mi9_hlDf(Nt&ijlg^Y<6oF1iWh!)Fl#n)GOC(Kdl0qw>J1EK^ z4hKh^Xp10%%28AlMMMt{Ajl}r3gUza>On+A{`Gxd(*cm<|3CNM=icYJ_}C2 z3(*p^3@u0ZpnK6H=uz|-YDbTwC(t^y9&JZ&p|{aH=v}k}?L_aPU1&FYAMHUOpabY* z^a=VDeTELBpV2Sq-{=(j6`e-EVS*`^U@7j4lduJ+;tZUJ_TvF~5WW%*!NYM8z8a6j zqj3cuk8AK0JOewi3v;+0Ux&TekLThAcoDuG--YkN_u>cfb9f_u9>0KJ#GCL-_+`8q zzk*-ITktmg4&Hp4`bRGRCeU?5) zU!q}56160$I>p=U@$5r#6oX=s0wo~T#IcoGv$)p46!`44;F^>=k24TxM{y{g5k}il zB2qF5`-mkw6e)Rw3X1Yei^?)f2Ik~t<`2v%%q%J>D9g+(EGjC>D<~~1DIDNXB$k(! zP4xL^1)7|7T&b_Fxsme*!vkxO8D%_yv`B~as6R3wBQl|6CS?&UlJ#MISrn78=qFGL zvY=Fy27mkW-2?3xtYZ|xg#?3%L?)b6c-i^E*d<@p-AoO5n2~J{S%#m z8h5}AlbPra&a8BM8$2A;I1~mDEUF6vj&!N3_jrn=?yh`3Pp#8m9`4GaPcP(eRIY-XS*AmpmnjR z>t~Ul1Kr1gRCUnpaR=R8V4~XENf0pQ>?EozKN(LGw}WU{=>SSzX$Pc~){Bm=EXb zss%W|+V5*_5-R}w1K|-J$b~Xip&7`DYEd22v;NG$jH?ib>QMvYn2DKL3jBqU6Gyl` zLC!B2V{z*km<2cp7;UsO5bPR>FLo$Y)!zC`3aiCFI9GLf?|#Db@u4Q9TDg)X??nL= zM9paS6!A2B!LBEXU%9}vv6ZE6Fgl;t>2GZZsX3FzR*n<=muOSH=2Pi|Ed#;u7&oAK zNY#esGD{np&r*3*;O+2|ZT14rgwO(XvqPZ)#q+1Jg7>TwxF$ar08DW5vtU-1HZG3P z+OXHfgi53l#uP9RfTCbgT^$z)a4tB*++=r|MA?F5l=+M#3!oMn*MwH^o^2NH93PbCj$U*EhF9DV7n~Zq0qT~0Y@F2aF~t* zX63#Cj;DibaW*!2U^7gYtF8i&2`IpO#VX>ab1h9yFV78x=?OD9x)t51KrnPdT$>D} zlyPG5^B=cCVZXR`8DE;zS^C;HhoMxfZ5nC(Aoz zGBa2fk6N&%8aFp5D=^1hA8fZ++f&obsPmtBYl`@-J>6y=e!ckJJbbZL{MH8?KnhTk zAwWZ_fOyn`MPCm_wH&>OUP4=dMjS+kfI57RzCy==Je)$m17+xgWjGgTLLm@@5`iGh zz;!?he7FTD!7XCf1dE@@-uc=2ftQJPdn>vPFtn_t$s;28xaOe8?dABDh=htaq|P(Y zffk{~XwKi3cPMHdRl%!EYH|xoYpS}(06fSm=>FMb$g0*RE-7>ML>cYqe)Is#V%hCz1$v0(uspuUwB`Wk zukdsAoZrv6x6;O#H zzuyUf(t+lP606agm27}0u@*f!y-O8>Uui*}h_co9#5d1b6aPornh2J}z#EP4)Y zM9-ra!0tA&0yc;hvcc>Mb|o9au3|&kFgAQ0dKqm-ub@}KEMG%g(d%d%dIP=5idYFN zWo2vxyPBzS}rLprzvnS{VND&6A@VgrUQ%5^nea%7OB^S&?uqxOJ zbCW0+t`;H=S8wzL69f1y?BfpZDN z0b&TP8^B5Ny5LXSKC~C@0}S5}fxGOmg9mV1Hn1Qf`ji0{Coe>2tKE4Sm5zvH@WuIfA}N z8LPoOj-s#8H|SgR9T-J9yM~QoquH3%=otC|Q0W*t0mN}E8^;>q?>eB4a1!D~ZNi|y z%sQ8zAeM~;MS-nDVco32wPG2+!?^?OQ+YQt3S5Waw)H?qnmsO_lvDtZoWNZV#4`xS z!V}$qf`+Gg2A$(6$?xba`h!)l@oYi|`V(w*GphvKEa9gU&#%5H&^ff=%)sx34HPN` zl>-MUZ3Qpxt_zn4n!ypMtqn)ADwcZ)M*;RmV>yb&F*p`0a2$@u2{;ie;afkfb|{iu zom5;jSHL8GxUmA~H38+|c$Un=T~;9I2Sn>_FffGxAHa6wm_woU3Y@RArwirdde!pd zObySVdctUE9sbn~E?pSPCbR1pV%5w8-x}DggII&LSO<&K8fxpnR-BG)Y!aKsrnB6AI1^{Vs^V}C&YjXdTD33_So;(< z^-|7UIAAy*4+I7S=fB%8!ic;x5|Pa9Z^s3^cf71jcn*bVGtOn#f?dLpm*qv_7FP)^ z9Dl1tF|4u#m*O&<(9;Yi2i=Wuc7Sd%C#z)u18aCwydpb0n@8I~w#V1(4sbIA&Do{g zY|i6r;?G!iK;UPAY^TfR2>Kk(rl#!6F(#q%ZwdVs70kYfPl;Plj;{d-1}+h{n6MSL z<59fkFI5G+7>~hY@wh2GAr*Iwam?jVJn(ct z1ElvT0+gr#^yFOp2`huRxm9dA5l?a`tX+XZCt`G)ZEx&o$CG*8{cZVucq*uL8o=Fj z?BJ6cwax$so+iuBc>oe-a{wi725$ZTE!(Qab=6}l0V~^atzb({&9xqPok-_11HNW| z9fT;ET~NdawW8Mw8)H@l*We5^2Py^G64*>}I~p)3gHO}+a(uiyXvc1Ts7uy~AT|rU zG4?PoP&@1cwKw7GAqK2#24d+AUeq7+u_rI>o0{?Lux}F3ehzE8G}_O@^TTM*X0z+V zAS}-2W*$;+!3*)N%+CTWcmbq}2pYz#9tamMx?6y-=Kn5)iD0!)Os3%#cr|cV{1AQ^ zKY|~{kKvWL4Y%VCyb3?gT39Q)fz4&}*nD;)yNNLtVhh&cHIUh|pcK3gug6aTC$QiR zD23e&BqatiD+}2@>|U5u3|j-gfG23Ww@}n^mKXp7=LE36xDu$z7`GQ_W)o2QOIGvN zP~w9WwzC1O$Z$!Sa_?+0am5D)7fE;o{@UfedB%E?j2M^$r3!LczWVwA2Yi=5*Ww}| zBAE?DlP6h4%`K1}0#+>62rVu(XwMG$u<)-|U(_6&>GQ*!E>;c?Y9o9e7a!?gLa}rF z&Zg1Ob3nAP*LaS#mEFPzJCHfWZ=kkSJcko_9M9tT|8m2o@GgE2soL=lyp!F^ZfnQ8 z@NTw<-OlGpG^Ly;=oFVHQr#}qL29Z3wAlc8CNB{D0C4%h1tQ@A_Tvxu0S@4UY%yEX zjt`*~Y$=3!$|r>dkFa+3I9n}{c>#($jXIDu#pi1T z`|DlE2Mv61Rm^WSn5U*oyz^X_IK8tWsSP#?r}DzeQs7E%uRwD}32pD*E8Jc$IA8Ht z0iC_D{Wv)9eo%S9JnW>fdT!641NYSVrNgVwUEBRhrq6vvgGP|IIMvS>{~DZGJxcZd3{lNJtMewGLZLVeA55o zO5iEsh|VF__KGk_AsO7|bDm{S_3}An82B7AoD`8__B4BjZTN5c95P1mIsXLM_|HVU z2W{@JzB3clypstX=D}xZ;lzK9YAEtrKByMsYdx^cwHnUe&f$Q1~`K1)F{}R|F!9{6n zAXUPry5Nd}o5S0AV1jdwcq;>T-n+Ilds|uOYXUnr_No+``}~m3;4Q8Rzy{8Vs+Wk+ zJ0Git=Q*3)1lLMr4rw8+#3jcf~hjcsMGvu*4R_9pw+6N1wPx7+z?f%%IL zSNs$*1a@8_;Ut?2;49$saC}x}w7b^NJ18%|$Z*<(zl6G^bX7R8=`C;jEBT7@(kiIy z)p^EW36J4|P8Wphy~TOQdg-}NF8dS`B!V9%527{gWCeMMy~B2OWroP3 zq#gVld5o+iZR}mPgYE1f6Hy9z98QRwy~mQTh3>lJ>}mY3?khC~{N$}~jI+V(4mP_W z$Lbf|M0kSh$%c#ip9K9s2j@@DcC%#j@X#g!S;H+}B%4qM+{&aYy0G>YvZZU4ud#hB zU0l&NenoGPH`#vnLHCN@B0DY`aVLzpiyeRw53=ORur(rvnTNY)^cs5~0kUv`HV%RR z`iLC@yZ?~)_OZ}9ocZI8+&p~R)?R&lPJTogPm?dmm*g-xLcStL$=Bo?@-6v}d{2&% zAINd`G5dsl%06SCvoF|}>@YjRzG6q&*X$ei?bGB0IZ1vZKLcJ^$SL^$H2IC3fs(U; z9^bL=LpULXm4G5KA*|;AB!#dxgl$6kU=dl=6S%sr;36E`KwQMT&(1ujr~rXA21fY& zVx?ZZTm=*5UuRTu!S0QRJl-_1wz6&}$6x!VOlbD@aIZpa8iZz$X%}+7{M{v7*;ybj zT*nnRyFD%#r^w^!DHtfPAIotr4nq0Z@I1vEXP9b&cs{CTf|gxZJNXM`=uaco^Eq*E z15Cs#W^v2C^*%`az?_7{LkpyDc@;o6iQ=?-&(@*nci~$36DedXW5e0Ru9+kj!xUyU z`QQ>PAT$GZ?h$d0k}PQ#}CXcAum!fjN;e(0{y z({u=jXn$&;MrxwT)J#*Tg{IOpYGudSkL(0H$$nx#vtQW1*(vrbJH3wD1Vm1uS$I9o z;cbNu0Q>l@6PP5l3WNHqDZ|I+~xEd~>zCG1RRKtxAeE+C>~Xa%r3 zI+l)OXW1X^bUdBF&V?}gUltM3iF67-!X$`@{uCl2It^Ik`HLbV(ZFX2_f}yWuA>bA zkkmyvS|7qVgh>d~4*WHB)9cvs5SE0nl%MH;2weUrvC!WPv-Z*^6icuFJ2A~(8U)ei zi$yOEpTg^Jp+K8f(^h%|olED@`SivRjtt>GA>22Fqe55~!qGy=Ll+P!;^;y?g~J4sv!$FN7+iIOBjr~@x2dIc?E@%!n65ZcfO zLRfLB*d{FYC~Xts7rK%?5yJ89bQ%OO=lKBUg3x6T?9!SLP832Ix|Ti(G3;2lM{1{Q zyRL=ldipd!=u;sKf1e2f%qH{iUU*aoiYKHlE}Nqlt$ib$RTKvgxw_zd6MY#_n=fml zn?qRBNj~Tn{*sNC3}3R*ZFD<-Hr}9b(tm}pE`;?V+`ogqMc=0Hgs>rm%^{p791fV* zMUF~zs{z3S4ZM^9|MUe?{I1@PthiNdD751rQeD(>Z+U)z@CNLrdthnw{SY>`(Y+xo zyu7)*lITI$ix21_K55L~M40)PBS#m0vnhndS2Xk^`Y~(||M;Yx!u@4^JFoaVf8sWg@<%GIe9s` zWe#`KOrMv72P#f~V?n-XF5lAcfLwIlrHi)ELBFNn3lDk3-{D#QK!Llp(c>X(ZKEeb zIGvy6-ycxW&M)+kpp~zqCvE_(guDJ#f{}NQgu#iI7A}`hbU*hj2cRDET2gFoX+2cu)uzf`?C@ z;trH~+ztGzIp92E4gzj~+;#AV$Qc9@2B{TQ&*E};RtEWgh(+K|P^_pd9VJAK@U*9Q z7vW19xPKKTdy=@xU5z1o&~pSnUiR>5(~Cw1js|ZDgWRO99aH2%C{Y4wGI7qCdBsI} z14~8}W|rg(D$X2ORxl{Duy|ljW?_EWz{1?z5rg5QTG-}k;XZN;vj$FaSMVl~J1_&b zAF_`Ujqs=f-V-OGWR!t&;pyHmcpY2=uY;$PgYZuEJD}Eo!28rb@G3Q$CvQ{
    H< zJgubx+6=EvTLJ3l)0=3B-c0X-x26x!74Y8lQM!`0(^c^1^dS9_o|6ofG)NXp9+zyD zye`=$IU+eJIWNUhDwRqjrG2F`sa&d)_Lmx^$Qs?;jANi(Fwq!Xm|(pKp*=}PI- z(#_Is(l@2srEg1jOZQ0kNe@Urkp3PK6JdHt0T%IMn#N?7#A@< zVrIm=hU$dQrbBfXJL zk^a7|eHZjy*Z0}JA4d(3DvxqR)kg)QW=FL|&5fELbyL)us0~rCMs16FGirO(j;Qyd zc1P`rIx92Ctg>{OU6wB!A}f+zBO4_fBdd{dGLNiTwm|lv>>=4Bvd3g?vJTnfvNf`` zvURejWY5U9%ifl~E88jCC3|1CSGHevPjkn4*}mG1V~>VJ*%!LE%=+QnV;;RxDO5RV-87spwFwSL{%{ zuQ;LjL-A)EiX(BRxU9IGxV*UhxXQR0ah|x@aV>E-#LbIOjn9rRi@zp*M!Y*d7(Y9{ zB_Sa}mtalEPPj5*OhQdUDB;$GeQm~|>ND!I>T^k{Nt2RV zlNKc1nbe-ND(R`DjY%&hZA;pnbU5j&q~l4yYN$q`iPt1*R2sELqtR*7HFiy=CR>xM z8K4=c8KfDlnWb5zc~bMX<}1x{&F`A?TCAnoKH4a4v^GYo)Fx}K+Dz>g+N-p~w8h#| z?Fen9_FC<9?JTWF+o<(v=V?RQo3#tIOSHFZ@6g_*y-)kN_G#^Q?GEh`?I~T1PN9p} zCF)cukCVU6w9Km!})1E7Fzd%5)QSRk|A8Bps(~(7AQ9bW3#i>mJlSq-7EgMt!p0uFuqG>vQ!3 z^aJ&k`X>Ey{d)aN`gip^^}F=%>-XyS>ksM==|9pR(;wHL(Ep_WMSn_vT7O1=R)4O) zz5mqyi~7IV|F9w6P-+MmnBiu_Lc=1%62t9=m4>y3rwtnn&l)xwUN^jLc-OGgu*-13 z@PXk&!^ehC4aW?>8D+*qqseGB+Kd^-EaO1qAmd=;mBy=#BaD^CDr2>AqH(gZ-sm>Y zGJ1_oM!#{ckr@{lZ!z9#Ty9)peAxJ?aiwvMajkKk@hRgo#+QuSjJu5ojfadM89y-| zF&;I3WBkr|%y`ZeVM;LNnDR{drUFx;=?c>j(@@iJQ?aSkG{Q8}bd71W$!(ftYBV*O z0;Xou9McV^d8V683rq`5i%d&R%S?Bgo;1B>`o{F{WNmUua&_{orCtQ z))wo0>k{iS>s{96*88jvSXW#BW!+`nW8G&xU_ER-YW>Fgz4f^Dg!MP;S?f9L`Sj@Y zgmhJUQo1hPoSvGVo}Q7Ol|C;0w)73@ucmKJea7mTk+k4YUoi)z}<1x6Na_-?q~BtnDS+HrsC7UfTiNA=}5cPwjo|adwSeZ@1a6 zvJbbH*hkpQ?W67E>=W$O_DS|x_C|Y?-EVKUx7g>}Z?uQ(H`^E5@3OD4Z?*5Ue{VmZ p(Ko}CaYaT+MoY$x8A~(n%XlnfrI6S|1a7$ae-fSe8UCBm{$Ds(V<`Xt literal 0 HcmV?d00001 diff --git a/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example.xcodeproj/project.pbxproj b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example.xcodeproj/project.pbxproj new file mode 100644 index 00000000000..1ffada49889 --- /dev/null +++ b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example.xcodeproj/project.pbxproj @@ -0,0 +1,563 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 77; + objects = { + +/* Begin PBXContainerItemProxy section */ + F214C5BC2EDFA9CA000FC3CB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = F214C5A62EDFA9C7000FC3CB /* Project object */; + proxyType = 1; + remoteGlobalIDString = F214C5AD2EDFA9C7000FC3CB; + remoteInfo = ios_content_resizing_example; + }; + F214C5C62EDFA9CA000FC3CB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = F214C5A62EDFA9C7000FC3CB /* Project object */; + proxyType = 1; + remoteGlobalIDString = F214C5AD2EDFA9C7000FC3CB; + remoteInfo = ios_content_resizing_example; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + F214C5AE2EDFA9C7000FC3CB /* ios_content_resizing_example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ios_content_resizing_example.app; sourceTree = BUILT_PRODUCTS_DIR; }; + F214C5BB2EDFA9CA000FC3CB /* ios_content_resizing_exampleTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ios_content_resizing_exampleTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + F214C5C52EDFA9CA000FC3CB /* ios_content_resizing_exampleUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ios_content_resizing_exampleUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFileSystemSynchronizedRootGroup section */ + F214C5B02EDFA9C7000FC3CB /* ios_content_resizing_example */ = { + isa = PBXFileSystemSynchronizedRootGroup; + path = ios_content_resizing_example; + sourceTree = ""; + }; + F214C5BE2EDFA9CA000FC3CB /* ios_content_resizing_exampleTests */ = { + isa = PBXFileSystemSynchronizedRootGroup; + path = ios_content_resizing_exampleTests; + sourceTree = ""; + }; + F214C5C82EDFA9CA000FC3CB /* ios_content_resizing_exampleUITests */ = { + isa = PBXFileSystemSynchronizedRootGroup; + path = ios_content_resizing_exampleUITests; + sourceTree = ""; + }; +/* End PBXFileSystemSynchronizedRootGroup section */ + +/* Begin PBXFrameworksBuildPhase section */ + F214C5AB2EDFA9C7000FC3CB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F214C5B82EDFA9CA000FC3CB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F214C5C22EDFA9CA000FC3CB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + F214C5A52EDFA9C7000FC3CB = { + isa = PBXGroup; + children = ( + F214C5B02EDFA9C7000FC3CB /* ios_content_resizing_example */, + F214C5BE2EDFA9CA000FC3CB /* ios_content_resizing_exampleTests */, + F214C5C82EDFA9CA000FC3CB /* ios_content_resizing_exampleUITests */, + F214C5AF2EDFA9C7000FC3CB /* Products */, + ); + sourceTree = ""; + }; + F214C5AF2EDFA9C7000FC3CB /* Products */ = { + isa = PBXGroup; + children = ( + F214C5AE2EDFA9C7000FC3CB /* ios_content_resizing_example.app */, + F214C5BB2EDFA9CA000FC3CB /* ios_content_resizing_exampleTests.xctest */, + F214C5C52EDFA9CA000FC3CB /* ios_content_resizing_exampleUITests.xctest */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + F214C5AD2EDFA9C7000FC3CB /* ios_content_resizing_example */ = { + isa = PBXNativeTarget; + buildConfigurationList = F214C5CF2EDFA9CA000FC3CB /* Build configuration list for PBXNativeTarget "ios_content_resizing_example" */; + buildPhases = ( + F214C5AA2EDFA9C7000FC3CB /* Sources */, + F214C5AB2EDFA9C7000FC3CB /* Frameworks */, + F214C5AC2EDFA9C7000FC3CB /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + fileSystemSynchronizedGroups = ( + F214C5B02EDFA9C7000FC3CB /* ios_content_resizing_example */, + ); + name = ios_content_resizing_example; + packageProductDependencies = ( + ); + productName = ios_content_resizing_example; + productReference = F214C5AE2EDFA9C7000FC3CB /* ios_content_resizing_example.app */; + productType = "com.apple.product-type.application"; + }; + F214C5BA2EDFA9CA000FC3CB /* ios_content_resizing_exampleTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = F214C5D22EDFA9CA000FC3CB /* Build configuration list for PBXNativeTarget "ios_content_resizing_exampleTests" */; + buildPhases = ( + F214C5B72EDFA9CA000FC3CB /* Sources */, + F214C5B82EDFA9CA000FC3CB /* Frameworks */, + F214C5B92EDFA9CA000FC3CB /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + F214C5BD2EDFA9CA000FC3CB /* PBXTargetDependency */, + ); + fileSystemSynchronizedGroups = ( + F214C5BE2EDFA9CA000FC3CB /* ios_content_resizing_exampleTests */, + ); + name = ios_content_resizing_exampleTests; + packageProductDependencies = ( + ); + productName = ios_content_resizing_exampleTests; + productReference = F214C5BB2EDFA9CA000FC3CB /* ios_content_resizing_exampleTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + F214C5C42EDFA9CA000FC3CB /* ios_content_resizing_exampleUITests */ = { + isa = PBXNativeTarget; + buildConfigurationList = F214C5D52EDFA9CA000FC3CB /* Build configuration list for PBXNativeTarget "ios_content_resizing_exampleUITests" */; + buildPhases = ( + F214C5C12EDFA9CA000FC3CB /* Sources */, + F214C5C22EDFA9CA000FC3CB /* Frameworks */, + F214C5C32EDFA9CA000FC3CB /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + F214C5C72EDFA9CA000FC3CB /* PBXTargetDependency */, + ); + fileSystemSynchronizedGroups = ( + F214C5C82EDFA9CA000FC3CB /* ios_content_resizing_exampleUITests */, + ); + name = ios_content_resizing_exampleUITests; + packageProductDependencies = ( + ); + productName = ios_content_resizing_exampleUITests; + productReference = F214C5C52EDFA9CA000FC3CB /* ios_content_resizing_exampleUITests.xctest */; + productType = "com.apple.product-type.bundle.ui-testing"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + F214C5A62EDFA9C7000FC3CB /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1640; + LastUpgradeCheck = 1640; + TargetAttributes = { + F214C5AD2EDFA9C7000FC3CB = { + CreatedOnToolsVersion = 16.4; + }; + F214C5BA2EDFA9CA000FC3CB = { + CreatedOnToolsVersion = 16.4; + TestTargetID = F214C5AD2EDFA9C7000FC3CB; + }; + F214C5C42EDFA9CA000FC3CB = { + CreatedOnToolsVersion = 16.4; + TestTargetID = F214C5AD2EDFA9C7000FC3CB; + }; + }; + }; + buildConfigurationList = F214C5A92EDFA9C7000FC3CB /* Build configuration list for PBXProject "ios_content_resizing_example" */; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = F214C5A52EDFA9C7000FC3CB; + minimizedProjectReferenceProxies = 1; + preferredProjectObjectVersion = 77; + productRefGroup = F214C5AF2EDFA9C7000FC3CB /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + F214C5AD2EDFA9C7000FC3CB /* ios_content_resizing_example */, + F214C5BA2EDFA9CA000FC3CB /* ios_content_resizing_exampleTests */, + F214C5C42EDFA9CA000FC3CB /* ios_content_resizing_exampleUITests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + F214C5AC2EDFA9C7000FC3CB /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F214C5B92EDFA9CA000FC3CB /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F214C5C32EDFA9CA000FC3CB /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + F214C5AA2EDFA9C7000FC3CB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F214C5B72EDFA9CA000FC3CB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F214C5C12EDFA9CA000FC3CB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + F214C5BD2EDFA9CA000FC3CB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = F214C5AD2EDFA9C7000FC3CB /* ios_content_resizing_example */; + targetProxy = F214C5BC2EDFA9CA000FC3CB /* PBXContainerItemProxy */; + }; + F214C5C72EDFA9CA000FC3CB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = F214C5AD2EDFA9C7000FC3CB /* ios_content_resizing_example */; + targetProxy = F214C5C62EDFA9CA000FC3CB /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + F214C5CD2EDFA9CA000FC3CB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + DEVELOPMENT_TEAM = S8QB4VV633; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + F214C5CE2EDFA9CA000FC3CB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEVELOPMENT_TEAM = S8QB4VV633; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + F214C5D02EDFA9CA000FC3CB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchScreen_Generation = YES; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-content-resizing-example"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + F214C5D12EDFA9CA000FC3CB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchScreen_Generation = YES; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-content-resizing-example"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + F214C5D32EDFA9CA000FC3CB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-content-resizing-exampleTests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ios_content_resizing_example.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/ios_content_resizing_example"; + }; + name = Debug; + }; + F214C5D42EDFA9CA000FC3CB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-content-resizing-exampleTests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ios_content_resizing_example.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/ios_content_resizing_example"; + }; + name = Release; + }; + F214C5D62EDFA9CA000FC3CB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-content-resizing-exampleUITests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = ios_content_resizing_example; + }; + name = Debug; + }; + F214C5D72EDFA9CA000FC3CB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-content-resizing-exampleUITests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = ios_content_resizing_example; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + F214C5A92EDFA9C7000FC3CB /* Build configuration list for PBXProject "ios_content_resizing_example" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F214C5CD2EDFA9CA000FC3CB /* Debug */, + F214C5CE2EDFA9CA000FC3CB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + F214C5CF2EDFA9CA000FC3CB /* Build configuration list for PBXNativeTarget "ios_content_resizing_example" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F214C5D02EDFA9CA000FC3CB /* Debug */, + F214C5D12EDFA9CA000FC3CB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + F214C5D22EDFA9CA000FC3CB /* Build configuration list for PBXNativeTarget "ios_content_resizing_exampleTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F214C5D32EDFA9CA000FC3CB /* Debug */, + F214C5D42EDFA9CA000FC3CB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + F214C5D52EDFA9CA000FC3CB /* Build configuration list for PBXNativeTarget "ios_content_resizing_exampleUITests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F214C5D62EDFA9CA000FC3CB /* Debug */, + F214C5D72EDFA9CA000FC3CB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = F214C5A62EDFA9C7000FC3CB /* Project object */; +} diff --git a/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000000..919434a6254 --- /dev/null +++ b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example.xcodeproj/project.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example.xcodeproj/project.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000000000000000000000000000000000000..9fe1a796bffd1e3a2d58890bdb515d6547dcd637 GIT binary patch literal 13562 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
      H< zJgubx+6=EvTLJ3l)0=3B-c0X-x26x!74Y8lQM!`0(^c^1^dS9_o|6ofG)NXp9+zyD zye`=$IU+eJIWNUhDwRqjrG2F`sa&d)_Lmx^$Qs?;jANi(Fwq!Xm|(pKp*=}PI- z(#_Is(l@2srEg1jOZQ0kNe@Urkp3PK6JdHt0T%IMn#N?7#A@< zVrIm=hU$dQrbBfXJL zk^a7|eHZjy*Z0}JA4d(3DvxqR)kg)QW=FL|&5fELbyL)us0~rCMs16FGirO(j;Qyd zc1P`rIx92Ctg>{OU6wB!A}f+zBO4_fBdd{dGLNiTwm|lv>>=4Bvd3g?vJTnfvNf`` zvURejWY5U9%ifl~E88jCC3|1CSGHevPjkn4*}mG1V~>VJ*%!LE%=+QnV;;RxDO5RV-87spwFwSL{%{ zuQ;LjL-A)EiX(BRxU9IGxV*UhxXQR0ah|x@aV>E-#LbIOjn9rRi@zp*M!Y*d7(Y9{ zB_Sa}mtalEPPj5*OhQdUDB;$GeQm~|>ND!I>T^k{Nt2RV zlNKc1nbe-ND(R`DjY%&hZA;pnbU5j&q~l4yYN$q`iPt1*R2sELqtR*7HFiy=CR>xM z8K4=c8KfDlnWb5zc~bMX<}1x{&F`A?TCAnoKH4a4v^GYo)Fx}K+Dz>g+N-p~w8h#| z?Fen9_FC<9?JTWF+o<(v=V?RQo3#tIOSHFZ@6g_*y-)kN_G#^Q?GEh`?I~T1PN9p} zCF)cukCVU6w9Km!})1E7Fzd%5)QSRk|A8Bps(~(7AQ9bW3#i>mJlSq-7EgMt!p0uFuqG>vQ!3 z^aJ&k`X>Ey{d)aN`gip^^}F=%>-XyS>ksM==|9pR(;wHL(Ep_WMSn_vT7O1=R)4O) zz5mqyi~7IV|F9w6P-+MmnBiu_Lc=1%62t9=m4>y3rwtnn&l)xwUN^jLc-OGgu*-13 z@PXk&!^ehC4aW?>8D+*qqseGB+Kd^-EaO1qAmd=;mBy=#BaD^CDr2>AqH(gZ-sm>Y zGJ1_oM!#{ckr@{lZ!z9#Ty9)peAxJ?aiwvMajkKk@hRgo#+QuSjJu5ojfadM89y-| zF&;I3WBkr|%y`ZeVM;LNnDR{drUFx;=?c>j(@@iJQ?aSkG{Q8}bd71W$!(ftYBV*O z0;Xou9McV^d8V683rq`5i%d&R%S?Bgo;1B>`o{F{WNmUua&_{orCtQ z))wo0>k{iS>s{96*88jvSXW#BW!+`nW8G&xU_ER-YW>Fgz4f^Dg!MP;S?f9L`Sj@Y zgmhJUQo1hPoSvGVo}Q7Ol|C;0w)73@ucmKJea7mTk+k4YUoi)z}<1x6Na_-?q~BtnDS+HrsC7UfTiNA=}5cPwjo|adwSeZ@1a6 zvJbbH*hkpQ?W67E>=W$O_DS|x_C|Y?-EVKUx7g>}Z?uQ(H`^E5@3OD4Z?*5Ue{VmZ p(Ko}CaYaT+MoY$x8A~(n%XlnfrI6S|1a7$ae-fSe8UCBm{$Ds(V<`Xt literal 0 HcmV?d00001 diff --git a/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/Assets.xcassets/AccentColor.colorset/Contents.json b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 00000000000..eb878970081 --- /dev/null +++ b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/Assets.xcassets/AppIcon.appiconset/Contents.json b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 00000000000..2305880107d --- /dev/null +++ b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,35 @@ +{ + "images" : [ + { + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "tinted" + } + ], + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/Assets.xcassets/Contents.json b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/Assets.xcassets/Contents.json new file mode 100644 index 00000000000..73c00596a7f --- /dev/null +++ b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/ContentView.swift b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/ContentView.swift new file mode 100644 index 00000000000..4493f97571a --- /dev/null +++ b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/ContentView.swift @@ -0,0 +1,24 @@ +// +// ContentView.swift +// ios_content_resizing_example +// +// Created by Louise Hsu on 12/2/25. +// + +import SwiftUI + +struct ContentView: View { + var body: some View { + VStack { + Image(systemName: "globe") + .imageScale(.large) + .foregroundStyle(.tint) + Text("Hello, world!") + } + .padding() + } +} + +#Preview { + ContentView() +} diff --git a/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/ios_content_resizing_exampleApp.swift b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/ios_content_resizing_exampleApp.swift new file mode 100644 index 00000000000..c033879a9e0 --- /dev/null +++ b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_example/ios_content_resizing_exampleApp.swift @@ -0,0 +1,17 @@ +// +// ios_content_resizing_exampleApp.swift +// ios_content_resizing_example +// +// Created by Louise Hsu on 12/2/25. +// + +import SwiftUI + +@main +struct ios_content_resizing_exampleApp: App { + var body: some Scene { + WindowGroup { + ContentView() + } + } +} diff --git a/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_exampleTests/ios_content_resizing_exampleTests.swift b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_exampleTests/ios_content_resizing_exampleTests.swift new file mode 100644 index 00000000000..787b405c3bc --- /dev/null +++ b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_exampleTests/ios_content_resizing_exampleTests.swift @@ -0,0 +1,36 @@ +// +// ios_content_resizing_exampleTests.swift +// ios_content_resizing_exampleTests +// +// Created by Louise Hsu on 12/2/25. +// + +import XCTest +@testable import ios_content_resizing_example + +final class ios_content_resizing_exampleTests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct results. + // Any test you write for XCTest can be annotated as throws and async. + // Mark your test throws to produce an unexpected failure when your test encounters an uncaught error. + // Mark your test async to allow awaiting for asynchronous code to complete. Check the results with assertions afterwards. + } + + func testPerformanceExample() throws { + // This is an example of a performance test case. + self.measure { + // Put the code you want to measure the time of here. + } + } + +} diff --git a/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_exampleUITests/ios_content_resizing_exampleUITests.swift b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_exampleUITests/ios_content_resizing_exampleUITests.swift new file mode 100644 index 00000000000..3b1990b8661 --- /dev/null +++ b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_exampleUITests/ios_content_resizing_exampleUITests.swift @@ -0,0 +1,41 @@ +// +// ios_content_resizing_exampleUITests.swift +// ios_content_resizing_exampleUITests +// +// Created by Louise Hsu on 12/2/25. +// + +import XCTest + +final class ios_content_resizing_exampleUITests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + + // In UI tests it is usually best to stop immediately when a failure occurs. + continueAfterFailure = false + + // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + @MainActor + func testExample() throws { + // UI tests must launch the application that they test. + let app = XCUIApplication() + app.launch() + + // Use XCTAssert and related functions to verify your tests produce the correct results. + } + + @MainActor + func testLaunchPerformance() throws { + // This measures how long it takes to launch your application. + measure(metrics: [XCTApplicationLaunchMetric()]) { + XCUIApplication().launch() + } + } +} diff --git a/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_exampleUITests/ios_content_resizing_exampleUITestsLaunchTests.swift b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_exampleUITests/ios_content_resizing_exampleUITestsLaunchTests.swift new file mode 100644 index 00000000000..29e3af7755e --- /dev/null +++ b/add_to_app/ios_content_resizing_example/ios_app/ios_content_resizing_example/ios_content_resizing_exampleUITests/ios_content_resizing_exampleUITestsLaunchTests.swift @@ -0,0 +1,33 @@ +// +// ios_content_resizing_exampleUITestsLaunchTests.swift +// ios_content_resizing_exampleUITests +// +// Created by Louise Hsu on 12/2/25. +// + +import XCTest + +final class ios_content_resizing_exampleUITestsLaunchTests: XCTestCase { + + override class var runsForEachTargetApplicationUIConfiguration: Bool { + true + } + + override func setUpWithError() throws { + continueAfterFailure = false + } + + @MainActor + func testLaunch() throws { + let app = XCUIApplication() + app.launch() + + // Insert steps here to perform after app launch but before taking a screenshot, + // such as logging into a test account or navigating somewhere in the app + + let attachment = XCTAttachment(screenshot: app.screenshot()) + attachment.name = "Launch Screen" + attachment.lifetime = .keepAlways + add(attachment) + } +} diff --git a/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize.xcodeproj/project.pbxproj b/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize.xcodeproj/project.pbxproj new file mode 100644 index 00000000000..bbe1f071c1c --- /dev/null +++ b/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize.xcodeproj/project.pbxproj @@ -0,0 +1,583 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 77; + objects = { + +/* Begin PBXContainerItemProxy section */ + F20094D12EC3F7A0001B3EFD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = F20094BB2EC3F79E001B3EFD /* Project object */; + proxyType = 1; + remoteGlobalIDString = F20094C22EC3F79E001B3EFD; + remoteInfo = ios_dynamic_content_resize; + }; + F20094DB2EC3F7A0001B3EFD /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = F20094BB2EC3F79E001B3EFD /* Project object */; + proxyType = 1; + remoteGlobalIDString = F20094C22EC3F79E001B3EFD; + remoteInfo = ios_dynamic_content_resize; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + F20094C32EC3F79E001B3EFD /* ios_dynamic_content_resize.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ios_dynamic_content_resize.app; sourceTree = BUILT_PRODUCTS_DIR; }; + F20094D02EC3F7A0001B3EFD /* ios_dynamic_content_resizeTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ios_dynamic_content_resizeTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + F20094DA2EC3F7A0001B3EFD /* ios_dynamic_content_resizeUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ios_dynamic_content_resizeUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFileSystemSynchronizedRootGroup section */ + F20094C52EC3F79E001B3EFD /* ios_dynamic_content_resize */ = { + isa = PBXFileSystemSynchronizedRootGroup; + path = ios_dynamic_content_resize; + sourceTree = ""; + }; + F20094D32EC3F7A0001B3EFD /* ios_dynamic_content_resizeTests */ = { + isa = PBXFileSystemSynchronizedRootGroup; + path = ios_dynamic_content_resizeTests; + sourceTree = ""; + }; + F20094DD2EC3F7A0001B3EFD /* ios_dynamic_content_resizeUITests */ = { + isa = PBXFileSystemSynchronizedRootGroup; + path = ios_dynamic_content_resizeUITests; + sourceTree = ""; + }; +/* End PBXFileSystemSynchronizedRootGroup section */ + +/* Begin PBXFrameworksBuildPhase section */ + F20094C02EC3F79E001B3EFD /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F20094CD2EC3F7A0001B3EFD /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F20094D72EC3F7A0001B3EFD /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + F20094BA2EC3F79E001B3EFD = { + isa = PBXGroup; + children = ( + F20094C52EC3F79E001B3EFD /* ios_dynamic_content_resize */, + F20094D32EC3F7A0001B3EFD /* ios_dynamic_content_resizeTests */, + F20094DD2EC3F7A0001B3EFD /* ios_dynamic_content_resizeUITests */, + F20094C42EC3F79E001B3EFD /* Products */, + ); + sourceTree = ""; + }; + F20094C42EC3F79E001B3EFD /* Products */ = { + isa = PBXGroup; + children = ( + F20094C32EC3F79E001B3EFD /* ios_dynamic_content_resize.app */, + F20094D02EC3F7A0001B3EFD /* ios_dynamic_content_resizeTests.xctest */, + F20094DA2EC3F7A0001B3EFD /* ios_dynamic_content_resizeUITests.xctest */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + F20094C22EC3F79E001B3EFD /* ios_dynamic_content_resize */ = { + isa = PBXNativeTarget; + buildConfigurationList = F20094E42EC3F7A0001B3EFD /* Build configuration list for PBXNativeTarget "ios_dynamic_content_resize" */; + buildPhases = ( + F20094BF2EC3F79E001B3EFD /* Sources */, + F20094C02EC3F79E001B3EFD /* Frameworks */, + F20094C12EC3F79E001B3EFD /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + fileSystemSynchronizedGroups = ( + F20094C52EC3F79E001B3EFD /* ios_dynamic_content_resize */, + ); + name = ios_dynamic_content_resize; + packageProductDependencies = ( + ); + productName = ios_dynamic_content_resize; + productReference = F20094C32EC3F79E001B3EFD /* ios_dynamic_content_resize.app */; + productType = "com.apple.product-type.application"; + }; + F20094CF2EC3F7A0001B3EFD /* ios_dynamic_content_resizeTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = F20094E72EC3F7A0001B3EFD /* Build configuration list for PBXNativeTarget "ios_dynamic_content_resizeTests" */; + buildPhases = ( + F20094CC2EC3F7A0001B3EFD /* Sources */, + F20094CD2EC3F7A0001B3EFD /* Frameworks */, + F20094CE2EC3F7A0001B3EFD /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + F20094D22EC3F7A0001B3EFD /* PBXTargetDependency */, + ); + fileSystemSynchronizedGroups = ( + F20094D32EC3F7A0001B3EFD /* ios_dynamic_content_resizeTests */, + ); + name = ios_dynamic_content_resizeTests; + packageProductDependencies = ( + ); + productName = ios_dynamic_content_resizeTests; + productReference = F20094D02EC3F7A0001B3EFD /* ios_dynamic_content_resizeTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + F20094D92EC3F7A0001B3EFD /* ios_dynamic_content_resizeUITests */ = { + isa = PBXNativeTarget; + buildConfigurationList = F20094EA2EC3F7A0001B3EFD /* Build configuration list for PBXNativeTarget "ios_dynamic_content_resizeUITests" */; + buildPhases = ( + F20094D62EC3F7A0001B3EFD /* Sources */, + F20094D72EC3F7A0001B3EFD /* Frameworks */, + F20094D82EC3F7A0001B3EFD /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + F20094DC2EC3F7A0001B3EFD /* PBXTargetDependency */, + ); + fileSystemSynchronizedGroups = ( + F20094DD2EC3F7A0001B3EFD /* ios_dynamic_content_resizeUITests */, + ); + name = ios_dynamic_content_resizeUITests; + packageProductDependencies = ( + ); + productName = ios_dynamic_content_resizeUITests; + productReference = F20094DA2EC3F7A0001B3EFD /* ios_dynamic_content_resizeUITests.xctest */; + productType = "com.apple.product-type.bundle.ui-testing"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + F20094BB2EC3F79E001B3EFD /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 2620; + LastUpgradeCheck = 2620; + TargetAttributes = { + F20094C22EC3F79E001B3EFD = { + CreatedOnToolsVersion = 26.2; + }; + F20094CF2EC3F7A0001B3EFD = { + CreatedOnToolsVersion = 26.2; + TestTargetID = F20094C22EC3F79E001B3EFD; + }; + F20094D92EC3F7A0001B3EFD = { + CreatedOnToolsVersion = 26.2; + TestTargetID = F20094C22EC3F79E001B3EFD; + }; + }; + }; + buildConfigurationList = F20094BE2EC3F79E001B3EFD /* Build configuration list for PBXProject "ios_dynamic_content_resize" */; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = F20094BA2EC3F79E001B3EFD; + minimizedProjectReferenceProxies = 1; + preferredProjectObjectVersion = 77; + productRefGroup = F20094C42EC3F79E001B3EFD /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + F20094C22EC3F79E001B3EFD /* ios_dynamic_content_resize */, + F20094CF2EC3F7A0001B3EFD /* ios_dynamic_content_resizeTests */, + F20094D92EC3F7A0001B3EFD /* ios_dynamic_content_resizeUITests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + F20094C12EC3F79E001B3EFD /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F20094CE2EC3F7A0001B3EFD /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F20094D82EC3F7A0001B3EFD /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + F20094BF2EC3F79E001B3EFD /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F20094CC2EC3F7A0001B3EFD /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F20094D62EC3F7A0001B3EFD /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + F20094D22EC3F7A0001B3EFD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = F20094C22EC3F79E001B3EFD /* ios_dynamic_content_resize */; + targetProxy = F20094D12EC3F7A0001B3EFD /* PBXContainerItemProxy */; + }; + F20094DC2EC3F7A0001B3EFD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = F20094C22EC3F79E001B3EFD /* ios_dynamic_content_resize */; + targetProxy = F20094DB2EC3F7A0001B3EFD /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + F20094E22EC3F7A0001B3EFD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + DEVELOPMENT_TEAM = S8QB4VV633; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 26.2; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + F20094E32EC3F7A0001B3EFD /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEVELOPMENT_TEAM = S8QB4VV633; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 26.2; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + F20094E52EC3F7A0001B3EFD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchScreen_Generation = YES; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-dynamic-content-resize"; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRING_CATALOG_GENERATE_SYMBOLS = YES; + SWIFT_APPROACHABLE_CONCURRENCY = YES; + SWIFT_DEFAULT_ACTOR_ISOLATION = MainActor; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_UPCOMING_FEATURE_MEMBER_IMPORT_VISIBILITY = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + F20094E62EC3F7A0001B3EFD /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchScreen_Generation = YES; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-dynamic-content-resize"; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRING_CATALOG_GENERATE_SYMBOLS = YES; + SWIFT_APPROACHABLE_CONCURRENCY = YES; + SWIFT_DEFAULT_ACTOR_ISOLATION = MainActor; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_UPCOMING_FEATURE_MEMBER_IMPORT_VISIBILITY = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + F20094E82EC3F7A0001B3EFD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 26.2; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-dynamic-content-resizeTests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRING_CATALOG_GENERATE_SYMBOLS = NO; + SWIFT_APPROACHABLE_CONCURRENCY = YES; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_UPCOMING_FEATURE_MEMBER_IMPORT_VISIBILITY = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ios_dynamic_content_resize.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/ios_dynamic_content_resize"; + }; + name = Debug; + }; + F20094E92EC3F7A0001B3EFD /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 26.2; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-dynamic-content-resizeTests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRING_CATALOG_GENERATE_SYMBOLS = NO; + SWIFT_APPROACHABLE_CONCURRENCY = YES; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_UPCOMING_FEATURE_MEMBER_IMPORT_VISIBILITY = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ios_dynamic_content_resize.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/ios_dynamic_content_resize"; + }; + name = Release; + }; + F20094EB2EC3F7A0001B3EFD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-dynamic-content-resizeUITests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRING_CATALOG_GENERATE_SYMBOLS = NO; + SWIFT_APPROACHABLE_CONCURRENCY = YES; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_UPCOMING_FEATURE_MEMBER_IMPORT_VISIBILITY = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = ios_dynamic_content_resize; + }; + name = Debug; + }; + F20094EC2EC3F7A0001B3EFD /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-dynamic-content-resizeUITests"; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRING_CATALOG_GENERATE_SYMBOLS = NO; + SWIFT_APPROACHABLE_CONCURRENCY = YES; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_UPCOMING_FEATURE_MEMBER_IMPORT_VISIBILITY = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = ios_dynamic_content_resize; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + F20094BE2EC3F79E001B3EFD /* Build configuration list for PBXProject "ios_dynamic_content_resize" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F20094E22EC3F7A0001B3EFD /* Debug */, + F20094E32EC3F7A0001B3EFD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + F20094E42EC3F7A0001B3EFD /* Build configuration list for PBXNativeTarget "ios_dynamic_content_resize" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F20094E52EC3F7A0001B3EFD /* Debug */, + F20094E62EC3F7A0001B3EFD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + F20094E72EC3F7A0001B3EFD /* Build configuration list for PBXNativeTarget "ios_dynamic_content_resizeTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F20094E82EC3F7A0001B3EFD /* Debug */, + F20094E92EC3F7A0001B3EFD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + F20094EA2EC3F7A0001B3EFD /* Build configuration list for PBXNativeTarget "ios_dynamic_content_resizeUITests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + F20094EB2EC3F7A0001B3EFD /* Debug */, + F20094EC2EC3F7A0001B3EFD /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = F20094BB2EC3F79E001B3EFD /* Project object */; +} diff --git a/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/Assets.xcassets/AccentColor.colorset/Contents.json b/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 00000000000..eb878970081 --- /dev/null +++ b/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/Assets.xcassets/AppIcon.appiconset/Contents.json b/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 00000000000..2305880107d --- /dev/null +++ b/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,35 @@ +{ + "images" : [ + { + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "tinted" + } + ], + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/Assets.xcassets/Contents.json b/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/Assets.xcassets/Contents.json new file mode 100644 index 00000000000..73c00596a7f --- /dev/null +++ b/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/ContentView.swift b/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/ContentView.swift new file mode 100644 index 00000000000..30e27829745 --- /dev/null +++ b/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/ContentView.swift @@ -0,0 +1,24 @@ +// +// ContentView.swift +// ios_dynamic_content_resize +// +// Created by Louise Hsu on 11/11/25. +// + +import SwiftUI + +struct ContentView: View { + var body: some View { + VStack { + Image(systemName: "globe") + .imageScale(.large) + .foregroundStyle(.tint) + Text("Hello, world!") + } + .padding() + } +} + +#Preview { + ContentView() +} diff --git a/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/ios_dynamic_content_resizeApp.swift b/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/ios_dynamic_content_resizeApp.swift new file mode 100644 index 00000000000..62e7f048853 --- /dev/null +++ b/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resize/ios_dynamic_content_resizeApp.swift @@ -0,0 +1,17 @@ +// +// ios_dynamic_content_resizeApp.swift +// ios_dynamic_content_resize +// +// Created by Louise Hsu on 11/11/25. +// + +import SwiftUI + +@main +struct ios_dynamic_content_resizeApp: App { + var body: some Scene { + WindowGroup { + ContentView() + } + } +} diff --git a/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resizeTests/ios_dynamic_content_resizeTests.swift b/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resizeTests/ios_dynamic_content_resizeTests.swift new file mode 100644 index 00000000000..cff1e1e3826 --- /dev/null +++ b/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resizeTests/ios_dynamic_content_resizeTests.swift @@ -0,0 +1,36 @@ +// +// ios_dynamic_content_resizeTests.swift +// ios_dynamic_content_resizeTests +// +// Created by Louise Hsu on 11/11/25. +// + +import XCTest +@testable import ios_dynamic_content_resize + +final class ios_dynamic_content_resizeTests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + func testExample() throws { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct results. + // Any test you write for XCTest can be annotated as throws and async. + // Mark your test throws to produce an unexpected failure when your test encounters an uncaught error. + // Mark your test async to allow awaiting for asynchronous code to complete. Check the results with assertions afterwards. + } + + func testPerformanceExample() throws { + // This is an example of a performance test case. + self.measure { + // Put the code you want to measure the time of here. + } + } + +} diff --git a/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resizeUITests/ios_dynamic_content_resizeUITests.swift b/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resizeUITests/ios_dynamic_content_resizeUITests.swift new file mode 100644 index 00000000000..0aa562d17b9 --- /dev/null +++ b/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resizeUITests/ios_dynamic_content_resizeUITests.swift @@ -0,0 +1,41 @@ +// +// ios_dynamic_content_resizeUITests.swift +// ios_dynamic_content_resizeUITests +// +// Created by Louise Hsu on 11/11/25. +// + +import XCTest + +final class ios_dynamic_content_resizeUITests: XCTestCase { + + override func setUpWithError() throws { + // Put setup code here. This method is called before the invocation of each test method in the class. + + // In UI tests it is usually best to stop immediately when a failure occurs. + continueAfterFailure = false + + // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. + } + + override func tearDownWithError() throws { + // Put teardown code here. This method is called after the invocation of each test method in the class. + } + + @MainActor + func testExample() throws { + // UI tests must launch the application that they test. + let app = XCUIApplication() + app.launch() + + // Use XCTAssert and related functions to verify your tests produce the correct results. + } + + @MainActor + func testLaunchPerformance() throws { + // This measures how long it takes to launch your application. + measure(metrics: [XCTApplicationLaunchMetric()]) { + XCUIApplication().launch() + } + } +} diff --git a/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resizeUITests/ios_dynamic_content_resizeUITestsLaunchTests.swift b/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resizeUITests/ios_dynamic_content_resizeUITestsLaunchTests.swift new file mode 100644 index 00000000000..5562bba07e5 --- /dev/null +++ b/add_to_app/ios_dynamic_content_resize/ios_dynamic_content_resizeUITests/ios_dynamic_content_resizeUITestsLaunchTests.swift @@ -0,0 +1,33 @@ +// +// ios_dynamic_content_resizeUITestsLaunchTests.swift +// ios_dynamic_content_resizeUITests +// +// Created by Louise Hsu on 11/11/25. +// + +import XCTest + +final class ios_dynamic_content_resizeUITestsLaunchTests: XCTestCase { + + override class var runsForEachTargetApplicationUIConfiguration: Bool { + true + } + + override func setUpWithError() throws { + continueAfterFailure = false + } + + @MainActor + func testLaunch() throws { + let app = XCUIApplication() + app.launch() + + // Insert steps here to perform after app launch but before taking a screenshot, + // such as logging into a test account or navigating somewhere in the app + + let attachment = XCTAttachment(screenshot: app.screenshot()) + attachment.name = "Launch Screen" + attachment.lifetime = .keepAlways + add(attachment) + } +} From e419e0510fe8340946bdf7038b0222ced45a8d1d Mon Sep 17 00:00:00 2001 From: louisehsu Date: Wed, 3 Dec 2025 14:16:42 -0800 Subject: [PATCH 2/8] init buids --- .../ios_content_resizing/Podfile | 32 - .../Pods/Local Podspecs/Flutter.podspec.json | 20 - .../FlutterPluginRegistrant.podspec.json | 31 - .../ios_content_resizing/Pods/Manifest.lock | 22 - .../Pods/Pods.xcodeproj/project.pbxproj | 1276 ----------------- .../xcschemes/Flutter.xcscheme | 58 - .../FlutterPluginRegistrant.xcscheme | 58 - ...izing-ios_content_resizingUITests.xcscheme | 58 - .../Pods-ios_content_resizing.xcscheme | 58 - .../Pods-ios_content_resizingTests.xcscheme | 58 - .../xcschemes/xcschememanagement.plist | 46 - .../Flutter/Flutter.debug.xcconfig | 12 - .../Flutter/Flutter.release.xcconfig | 12 - .../FlutterPluginRegistrant-Info.plist | 26 - .../FlutterPluginRegistrant-dummy.m | 5 - .../FlutterPluginRegistrant-prefix.pch | 12 - .../FlutterPluginRegistrant-umbrella.h | 17 - .../FlutterPluginRegistrant.debug.xcconfig | 13 - .../FlutterPluginRegistrant.modulemap | 6 - .../FlutterPluginRegistrant.release.xcconfig | 13 - ...ing-ios_content_resizingUITests-Info.plist | 26 - ..._resizingUITests-acknowledgements.markdown | 3 - ...ent_resizingUITests-acknowledgements.plist | 29 - ...sizing-ios_content_resizingUITests-dummy.m | 5 - ...ing-ios_content_resizingUITests-umbrella.h | 16 - ...ios_content_resizingUITests.debug.xcconfig | 14 - ...zing-ios_content_resizingUITests.modulemap | 6 - ...s_content_resizingUITests.release.xcconfig | 14 - .../Pods-ios_content_resizing-Info.plist | 26 - ...content_resizing-acknowledgements.markdown | 3 - ...os_content_resizing-acknowledgements.plist | 29 - .../Pods-ios_content_resizing-dummy.m | 5 - .../Pods-ios_content_resizing-umbrella.h | 16 - .../Pods-ios_content_resizing.debug.xcconfig | 14 - .../Pods-ios_content_resizing.modulemap | 6 - ...Pods-ios_content_resizing.release.xcconfig | 14 - .../Pods-ios_content_resizingTests-Info.plist | 26 - ...nt_resizingTests-acknowledgements.markdown | 3 - ...ntent_resizingTests-acknowledgements.plist | 29 - .../Pods-ios_content_resizingTests-dummy.m | 5 - .../Pods-ios_content_resizingTests-umbrella.h | 16 - ...s-ios_content_resizingTests.debug.xcconfig | 10 - .../Pods-ios_content_resizingTests.modulemap | 6 - ...ios_content_resizingTests.release.xcconfig | 10 - .../project.pbxproj | 457 +++--- .../contents.xcworkspacedata | 7 - .../UserInterfaceState.xcuserstate | Bin 13688 -> 0 bytes .../xcschemes/xcschememanagement.plist | 14 - .../contents.xcworkspacedata | 13 - .../UserInterfaceState.xcuserstate | Bin 16055 -> 0 bytes .../ios_content_resizing/AppDelegate.swift | 36 + .../Base.lproj/LaunchScreen.storyboard | 25 + .../Base.lproj/Main.storyboard | 24 + .../ios_content_resizing/ContentView.swift | 24 - .../ios_content_resizing/Info.plist | 25 + .../ios_content_resizing/SceneDelegate.swift | 52 + .../ios_content_resizing/ViewController.swift | 19 + .../ios_content_resizingApp.swift | 17 - .../ios_content_resizingTests.swift | 2 +- .../ios_content_resizingUITests.swift | 2 +- ...s_content_resizingUITestsLaunchTests.swift | 2 +- 61 files changed, 347 insertions(+), 2536 deletions(-) delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Podfile delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/Flutter.podspec.json delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/FlutterPluginRegistrant.podspec.json delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Manifest.lock delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/project.pbxproj delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Flutter.xcscheme delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/FlutterPluginRegistrant.xcscheme delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing-ios_content_resizingUITests.xcscheme delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing.xcscheme delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizingTests.xcscheme delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.debug.xcconfig delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.release.xcconfig delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-dummy.m delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-umbrella.h delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.debug.xcconfig delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.release.xcconfig delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.modulemap delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-Info.plist delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.markdown delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.plist delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-dummy.m delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-umbrella.h delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.debug.xcconfig delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.modulemap delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.release.xcconfig delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-Info.plist delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.markdown delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.plist delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-dummy.m delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-umbrella.h delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.debug.xcconfig delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.modulemap delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.release.xcconfig delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/contents.xcworkspacedata delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/contents.xcworkspacedata delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/AppDelegate.swift create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/Base.lproj/LaunchScreen.storyboard create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/Base.lproj/Main.storyboard delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ContentView.swift create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/Info.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/SceneDelegate.swift create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift delete mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ios_content_resizingApp.swift diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Podfile b/add_to_app/ios_content_resizing/ios_content_resizing/Podfile deleted file mode 100644 index a17a105625a..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Podfile +++ /dev/null @@ -1,32 +0,0 @@ -# Uncomment the next line to define a global platform for your project -# platform :ios, '15.0' - -flutter_application_path = '../flutter_module' -load File.join(flutter_application_path, '.ios', 'Flutter', 'podhelper.rb') - - -target 'ios_content_resizing' do - # Comment the next line if you don't want to use dynamic frameworks - use_frameworks! - - # Pods for ios_content_resizing - - install_all_flutter_pods(flutter_application_path) - - target 'ios_content_resizingTests' do - inherit! :search_paths - # Pods for testing - end - - target 'ios_content_resizingUITests' do - # Pods for testing - end - -end - - -post_install do |installer| - flutter_post_install(installer) if defined?(flutter_post_install) -end - - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/Flutter.podspec.json b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/Flutter.podspec.json deleted file mode 100644 index d67a7c76f8a..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/Flutter.podspec.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "Flutter", - "version": "1.0.0", - "summary": "A UI toolkit for beautiful and fast apps.", - "homepage": "https://flutter.dev", - "license": { - "type": "BSD" - }, - "authors": { - "Flutter Dev Team": "flutter-dev@googlegroups.com" - }, - "source": { - "git": "https://github.com/flutter/engine", - "tag": "1.0.0" - }, - "platforms": { - "ios": "13.0" - }, - "vendored_frameworks": "path/to/nothing" -} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/FlutterPluginRegistrant.podspec.json b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/FlutterPluginRegistrant.podspec.json deleted file mode 100644 index 0000381624f..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/FlutterPluginRegistrant.podspec.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "name": "FlutterPluginRegistrant", - "version": "0.0.1", - "summary": "Registers plugins with your Flutter app", - "description": "Depends on all your plugins, and provides a function to register them.", - "homepage": "https://flutter.dev", - "license": { - "type": "BSD" - }, - "authors": { - "Flutter Dev Team": "flutter-dev@googlegroups.com" - }, - "platforms": { - "ios": "13.0" - }, - "source_files": [ - "Classes", - "Classes/**/*.{h,m}" - ], - "source": { - "path": "." - }, - "public_header_files": "./Classes/**/*.h", - "static_framework": true, - "pod_target_xcconfig": { - "DEFINES_MODULE": "YES" - }, - "dependencies": { - "Flutter": [] - } -} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Manifest.lock b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Manifest.lock deleted file mode 100644 index 00cca2c02a7..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Manifest.lock +++ /dev/null @@ -1,22 +0,0 @@ -PODS: - - Flutter (1.0.0) - - FlutterPluginRegistrant (0.0.1): - - Flutter - -DEPENDENCIES: - - Flutter (from `../flutter_module/.ios/Flutter`) - - FlutterPluginRegistrant (from `../flutter_module/.ios/Flutter/FlutterPluginRegistrant`) - -EXTERNAL SOURCES: - Flutter: - :path: "../flutter_module/.ios/Flutter" - FlutterPluginRegistrant: - :path: "../flutter_module/.ios/Flutter/FlutterPluginRegistrant" - -SPEC CHECKSUMS: - Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467 - FlutterPluginRegistrant: 1bf2b93dcc6a731089dfe77f7a867be153c5008f - -PODFILE CHECKSUM: 8512f9d26835e64e2656751293a9f1e09c986b9d - -COCOAPODS: 1.16.2 diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/project.pbxproj b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/project.pbxproj deleted file mode 100644 index 8c0ad06b70b..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/project.pbxproj +++ /dev/null @@ -1,1276 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 77; - objects = { - -/* Begin PBXAggregateTarget section */ - 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */ = { - isa = PBXAggregateTarget; - buildConfigurationList = B26E11467D023FA6CDCE36F75198812F /* Build configuration list for PBXAggregateTarget "Flutter" */; - buildPhases = ( - ); - dependencies = ( - ); - name = Flutter; - }; -/* End PBXAggregateTarget section */ - -/* Begin PBXBuildFile section */ - 0B55D92CD2BAF933FE9D276939406D2C /* Pods-ios_content_resizingTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BA027B63B056E637B52DC48E997871D7 /* Pods-ios_content_resizingTests-dummy.m */; }; - 1C8B15B53492E657E17E19CD85AA35C0 /* Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 740A60CC3FE2346AA1FEB529CDCCD439 /* Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m */; }; - 203789EDA9BC17C4D2BB55B087DE25B8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; }; - 44F46818A4A76D2DC7F7FDADAB40E781 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CE7A004F669D9407A99593AB2AFD491 /* GeneratedPluginRegistrant.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; - 4E3441E90BAB7D083993C56E292FA52C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; }; - 4EE0C80B8A3C1107458579AFB4E41741 /* GeneratedPluginRegistrant.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E2D1DC1EC3C3E20E7FB2A0FF3EF4FCE /* GeneratedPluginRegistrant.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5A79D8994BC80675EE4A3F50CA6FEF4F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; }; - 8DFAE2FA34C28A0530B72F4B5D3F0623 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; }; - ACC932BEF12584E78B91E93346CB63E2 /* FlutterPluginRegistrant-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC08935243F50B63245B117C34B45F3 /* FlutterPluginRegistrant-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B3889D09053A313F7A70C12C7D2B587C /* Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CC33182B193B07DB144E4A6C9E01AB79 /* Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B6AE8F15F2F866E8B52DC17217A64E71 /* Pods-ios_content_resizingTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 715630C735F4805B3A805CF50A9585F3 /* Pods-ios_content_resizingTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C31439779167DBFB0C2D6E1D2F3C673C /* Pods-ios_content_resizing-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 31098EA55F47B77CF6DE1E5F5057F68A /* Pods-ios_content_resizing-dummy.m */; }; - D065E4911A1DC5E493EEF7DB517B7214 /* FlutterPluginRegistrant-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AAF585701677AEC4242C6CA033275B4 /* FlutterPluginRegistrant-dummy.m */; }; - D082208849F456F5518E6230A683096B /* Pods-ios_content_resizing-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F732C0211A045562F5E572138528CEB7 /* Pods-ios_content_resizing-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 0F89DBD5A9470B70308A8E62C10B4DC1 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; - remoteInfo = Flutter; - }; - 2C9791B40262CCA18DEA3CC7B7E1C667 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; - remoteInfo = Flutter; - }; - 30CCE7DF2B096D489C0337201A23FEAB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 83DAA8F43D74F8D51203DE23C7C3A3F5; - remoteInfo = FlutterPluginRegistrant; - }; - 78511F1C1FD5C9BCB89672C1D4CF0475 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CD1FE7E172044780FE5855099C6F9044; - remoteInfo = "Pods-ios_content_resizing"; - }; - 7948C6A42ED494BC018F1377A88CB2A6 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; - remoteInfo = Flutter; - }; - FC692C20666B5D147B676FA8171775D9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 83DAA8F43D74F8D51203DE23C7C3A3F5; - remoteInfo = FlutterPluginRegistrant; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 1B2A7B60A690627987F4A32728B1C441 /* Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig"; sourceTree = ""; }; - 1CD0339A7DDFF44C520DC672454F4CE6 /* Pods-ios_content_resizing-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ios_content_resizing-acknowledgements.markdown"; sourceTree = ""; }; - 1D1E78871CC9F2B1032560E19646993A /* FlutterPluginRegistrant.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlutterPluginRegistrant.release.xcconfig; sourceTree = ""; }; - 1DB7953AE371D07C9F6F2864A55214EC /* Pods-ios_content_resizingTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ios_content_resizingTests.release.xcconfig"; sourceTree = ""; }; - 2AAF585701677AEC4242C6CA033275B4 /* FlutterPluginRegistrant-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FlutterPluginRegistrant-dummy.m"; sourceTree = ""; }; - 2ABF8D83AB2BF46EE272C48561AC5A9E /* Pods-ios_content_resizing.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ios_content_resizing.release.xcconfig"; sourceTree = ""; }; - 2CE7A004F669D9407A99593AB2AFD491 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GeneratedPluginRegistrant.m; path = Classes/GeneratedPluginRegistrant.m; sourceTree = ""; }; - 31098EA55F47B77CF6DE1E5F5057F68A /* Pods-ios_content_resizing-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ios_content_resizing-dummy.m"; sourceTree = ""; }; - 384DDA2CB25005BD6479B5987C619DD4 /* 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; }; - 3E69713BE606BC991F1C594C917D928F /* Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown"; sourceTree = ""; }; - 4A162C470ECD31CC6B84AE1812A68341 /* Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist"; sourceTree = ""; }; - 4C51364643265E0627F1B989ABA783AC /* FlutterPluginRegistrant-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FlutterPluginRegistrant-Info.plist"; sourceTree = ""; }; - 4F9125ED2B32F99F97EDBFBE15D053F3 /* Pods-ios_content_resizingTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ios_content_resizingTests.modulemap"; sourceTree = ""; }; - 550F9C4A71235EA01D58F70B41B5E3B9 /* Pods-ios_content_resizingTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ios_content_resizingTests-acknowledgements.plist"; sourceTree = ""; }; - 5793332C56B5C51F3F1A35E29F0F9B5C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - 5A9ED177DD476853C074763AE7635D34 /* FlutterPluginRegistrant.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlutterPluginRegistrant.debug.xcconfig; sourceTree = ""; }; - 5E6A76AF8DCCA1B2712836D571D61A68 /* Flutter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Flutter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 6056F33DB108BE122160D138498C99F8 /* Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig"; sourceTree = ""; }; - 715630C735F4805B3A805CF50A9585F3 /* Pods-ios_content_resizingTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ios_content_resizingTests-umbrella.h"; sourceTree = ""; }; - 7190D3A2421CEF0390C6C11ED312EB1B /* Flutter.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flutter.release.xcconfig; sourceTree = ""; }; - 740A60CC3FE2346AA1FEB529CDCCD439 /* Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m"; sourceTree = ""; }; - 7E2D1DC1EC3C3E20E7FB2A0FF3EF4FCE /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GeneratedPluginRegistrant.h; path = Classes/GeneratedPluginRegistrant.h; sourceTree = ""; }; - 808964E349CF6A9C44A0909D0D6EEE8E /* Pods-ios_content_resizing.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ios_content_resizing.debug.xcconfig"; sourceTree = ""; }; - 80CEA24FF2084B8F57DFDFCC07F2064A /* Pods-ios_content_resizing-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ios_content_resizing-acknowledgements.plist"; sourceTree = ""; }; - 848315FC91D61DDA12BFE10AF7903DD9 /* Pods-ios_content_resizingTests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-ios_content_resizingTests"; path = Pods_ios_content_resizingTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 863E29E35DF7586D71558E0FB794DDBC /* Pods-ios_content_resizing.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ios_content_resizing.modulemap"; sourceTree = ""; }; - 89F5E495C830BAE2B7079C84C449077F /* FlutterPluginRegistrant-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlutterPluginRegistrant-prefix.pch"; sourceTree = ""; }; - 95DFED33AEBE20CFC59AC2D89DF45F13 /* Pods-ios_content_resizingTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ios_content_resizingTests.debug.xcconfig"; sourceTree = ""; }; - 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - B1B78154C420D3C3E3BB30C73471AF58 /* Pods-ios_content_resizing */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-ios_content_resizing"; path = Pods_ios_content_resizing.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B6420A4EFE167F7BACB091FE384D2AFB /* FlutterPluginRegistrant.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FlutterPluginRegistrant.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - BA027B63B056E637B52DC48E997871D7 /* Pods-ios_content_resizingTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ios_content_resizingTests-dummy.m"; sourceTree = ""; }; - BB6445B421DA90DD6610EE80D499E3B4 /* Flutter.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flutter.debug.xcconfig; sourceTree = ""; }; - CC33182B193B07DB144E4A6C9E01AB79 /* Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h"; sourceTree = ""; }; - D8740969C1272A3D14589F37950232B7 /* Pods-ios_content_resizing-ios_content_resizingUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ios_content_resizing-ios_content_resizingUITests.modulemap"; sourceTree = ""; }; - D8DBE60F83CC9855059B3B56F3C86603 /* FlutterPluginRegistrant.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FlutterPluginRegistrant.modulemap; sourceTree = ""; }; - DAC271DF29EEC36C2D6DF4B29D00059D /* Pods-ios_content_resizing-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ios_content_resizing-Info.plist"; sourceTree = ""; }; - DCC08935243F50B63245B117C34B45F3 /* FlutterPluginRegistrant-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlutterPluginRegistrant-umbrella.h"; sourceTree = ""; }; - DEE6C5FCB90FB050631DE9252A0FF907 /* Pods-ios_content_resizing-ios_content_resizingUITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-ios_content_resizing-ios_content_resizingUITests"; path = Pods_ios_content_resizing_ios_content_resizingUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - DF7C6EBB9161EEF650EC12B4BB67E628 /* FlutterPluginRegistrant */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FlutterPluginRegistrant; path = FlutterPluginRegistrant.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - EB01D38E9B9397013BDA6F2ECD3C116A /* Pods-ios_content_resizingTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ios_content_resizingTests-acknowledgements.markdown"; sourceTree = ""; }; - EC58DCEFE8DA0A2BC696E7AD13C037B4 /* Pods-ios_content_resizingTests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ios_content_resizingTests-Info.plist"; sourceTree = ""; }; - F0FC688EB853C97544D47655599785D8 /* Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist"; sourceTree = ""; }; - F732C0211A045562F5E572138528CEB7 /* Pods-ios_content_resizing-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ios_content_resizing-umbrella.h"; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 3C14517AA188AA0F4644710BDF6F2E0B /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 203789EDA9BC17C4D2BB55B087DE25B8 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 830D63870BCE1E7548BFBF07AF254BC6 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 8DFAE2FA34C28A0530B72F4B5D3F0623 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C85264A7AE5B8D2D6D41BECD6C886F30 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 5A79D8994BC80675EE4A3F50CA6FEF4F /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DE8E25759FD7427C882BA4EB71D22E80 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 4E3441E90BAB7D083993C56E292FA52C /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 17E661ACE046111F65EB8BC53399F9D5 /* Targets Support Files */ = { - isa = PBXGroup; - children = ( - C8D1B05D3D5016D84F1E8CFC2829BA53 /* Pods-ios_content_resizing */, - AEE7DDCA547716D81E9370F489774C49 /* Pods-ios_content_resizing-ios_content_resizingUITests */, - D89266006DC36009E817D04F8788D146 /* Pods-ios_content_resizingTests */, - ); - name = "Targets Support Files"; - sourceTree = ""; - }; - 2479EE86B1BDE660ABC7156E54E5A81C /* Support Files */ = { - isa = PBXGroup; - children = ( - D8DBE60F83CC9855059B3B56F3C86603 /* FlutterPluginRegistrant.modulemap */, - 2AAF585701677AEC4242C6CA033275B4 /* FlutterPluginRegistrant-dummy.m */, - 4C51364643265E0627F1B989ABA783AC /* FlutterPluginRegistrant-Info.plist */, - 89F5E495C830BAE2B7079C84C449077F /* FlutterPluginRegistrant-prefix.pch */, - DCC08935243F50B63245B117C34B45F3 /* FlutterPluginRegistrant-umbrella.h */, - 5A9ED177DD476853C074763AE7635D34 /* FlutterPluginRegistrant.debug.xcconfig */, - 1D1E78871CC9F2B1032560E19646993A /* FlutterPluginRegistrant.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../../ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant"; - sourceTree = ""; - }; - 6F7106898BE13FDCFDCF877524DD896B /* Products */ = { - isa = PBXGroup; - children = ( - DF7C6EBB9161EEF650EC12B4BB67E628 /* FlutterPluginRegistrant */, - B1B78154C420D3C3E3BB30C73471AF58 /* Pods-ios_content_resizing */, - DEE6C5FCB90FB050631DE9252A0FF907 /* Pods-ios_content_resizing-ios_content_resizingUITests */, - 848315FC91D61DDA12BFE10AF7903DD9 /* Pods-ios_content_resizingTests */, - ); - name = Products; - sourceTree = ""; - }; - A95135DC3DC55EDD6E2AE851A351550A /* Development Pods */ = { - isa = PBXGroup; - children = ( - C4828404A16E02F8503F54C1BEFB50AD /* Flutter */, - E236746D72969B68FE0982CAC2FA077D /* FlutterPluginRegistrant */, - ); - name = "Development Pods"; - sourceTree = ""; - }; - AEE7DDCA547716D81E9370F489774C49 /* Pods-ios_content_resizing-ios_content_resizingUITests */ = { - isa = PBXGroup; - children = ( - D8740969C1272A3D14589F37950232B7 /* Pods-ios_content_resizing-ios_content_resizingUITests.modulemap */, - 3E69713BE606BC991F1C594C917D928F /* Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown */, - 4A162C470ECD31CC6B84AE1812A68341 /* Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist */, - 740A60CC3FE2346AA1FEB529CDCCD439 /* Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m */, - F0FC688EB853C97544D47655599785D8 /* Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist */, - CC33182B193B07DB144E4A6C9E01AB79 /* Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h */, - 1B2A7B60A690627987F4A32728B1C441 /* Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig */, - 6056F33DB108BE122160D138498C99F8 /* Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig */, - ); - name = "Pods-ios_content_resizing-ios_content_resizingUITests"; - path = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests"; - sourceTree = ""; - }; - C4828404A16E02F8503F54C1BEFB50AD /* Flutter */ = { - isa = PBXGroup; - children = ( - C82424DE68A1A19BFC1B640369F4BC62 /* Pod */, - E30233976B4062D1B8D8CBF9AB58FDEF /* Support Files */, - ); - name = Flutter; - path = ../../flutter_module/.ios/Flutter; - sourceTree = ""; - }; - C82424DE68A1A19BFC1B640369F4BC62 /* Pod */ = { - isa = PBXGroup; - children = ( - 5E6A76AF8DCCA1B2712836D571D61A68 /* Flutter.podspec */, - 5793332C56B5C51F3F1A35E29F0F9B5C /* README.md */, - ); - name = Pod; - sourceTree = ""; - }; - C8D1B05D3D5016D84F1E8CFC2829BA53 /* Pods-ios_content_resizing */ = { - isa = PBXGroup; - children = ( - 863E29E35DF7586D71558E0FB794DDBC /* Pods-ios_content_resizing.modulemap */, - 1CD0339A7DDFF44C520DC672454F4CE6 /* Pods-ios_content_resizing-acknowledgements.markdown */, - 80CEA24FF2084B8F57DFDFCC07F2064A /* Pods-ios_content_resizing-acknowledgements.plist */, - 31098EA55F47B77CF6DE1E5F5057F68A /* Pods-ios_content_resizing-dummy.m */, - DAC271DF29EEC36C2D6DF4B29D00059D /* Pods-ios_content_resizing-Info.plist */, - F732C0211A045562F5E572138528CEB7 /* Pods-ios_content_resizing-umbrella.h */, - 808964E349CF6A9C44A0909D0D6EEE8E /* Pods-ios_content_resizing.debug.xcconfig */, - 2ABF8D83AB2BF46EE272C48561AC5A9E /* Pods-ios_content_resizing.release.xcconfig */, - ); - name = "Pods-ios_content_resizing"; - path = "Target Support Files/Pods-ios_content_resizing"; - sourceTree = ""; - }; - CAF78B8E3930ADF8B64CF30FC13AA025 /* Pod */ = { - isa = PBXGroup; - children = ( - B6420A4EFE167F7BACB091FE384D2AFB /* FlutterPluginRegistrant.podspec */, - ); - name = Pod; - sourceTree = ""; - }; - CF1408CF629C7361332E53B88F7BD30C = { - isa = PBXGroup; - children = ( - 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, - A95135DC3DC55EDD6E2AE851A351550A /* Development Pods */, - D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, - 6F7106898BE13FDCFDCF877524DD896B /* Products */, - 17E661ACE046111F65EB8BC53399F9D5 /* Targets Support Files */, - ); - sourceTree = ""; - }; - D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { - isa = PBXGroup; - children = ( - E4801F62A6B08CD9B5410329F1A18FDE /* iOS */, - ); - name = Frameworks; - sourceTree = ""; - }; - D89266006DC36009E817D04F8788D146 /* Pods-ios_content_resizingTests */ = { - isa = PBXGroup; - children = ( - 4F9125ED2B32F99F97EDBFBE15D053F3 /* Pods-ios_content_resizingTests.modulemap */, - EB01D38E9B9397013BDA6F2ECD3C116A /* Pods-ios_content_resizingTests-acknowledgements.markdown */, - 550F9C4A71235EA01D58F70B41B5E3B9 /* Pods-ios_content_resizingTests-acknowledgements.plist */, - BA027B63B056E637B52DC48E997871D7 /* Pods-ios_content_resizingTests-dummy.m */, - EC58DCEFE8DA0A2BC696E7AD13C037B4 /* Pods-ios_content_resizingTests-Info.plist */, - 715630C735F4805B3A805CF50A9585F3 /* Pods-ios_content_resizingTests-umbrella.h */, - 95DFED33AEBE20CFC59AC2D89DF45F13 /* Pods-ios_content_resizingTests.debug.xcconfig */, - 1DB7953AE371D07C9F6F2864A55214EC /* Pods-ios_content_resizingTests.release.xcconfig */, - ); - name = "Pods-ios_content_resizingTests"; - path = "Target Support Files/Pods-ios_content_resizingTests"; - sourceTree = ""; - }; - E236746D72969B68FE0982CAC2FA077D /* FlutterPluginRegistrant */ = { - isa = PBXGroup; - children = ( - 7E2D1DC1EC3C3E20E7FB2A0FF3EF4FCE /* GeneratedPluginRegistrant.h */, - 2CE7A004F669D9407A99593AB2AFD491 /* GeneratedPluginRegistrant.m */, - CAF78B8E3930ADF8B64CF30FC13AA025 /* Pod */, - 2479EE86B1BDE660ABC7156E54E5A81C /* Support Files */, - ); - name = FlutterPluginRegistrant; - path = ../../flutter_module/.ios/Flutter/FlutterPluginRegistrant; - sourceTree = ""; - }; - E30233976B4062D1B8D8CBF9AB58FDEF /* Support Files */ = { - isa = PBXGroup; - children = ( - BB6445B421DA90DD6610EE80D499E3B4 /* Flutter.debug.xcconfig */, - 7190D3A2421CEF0390C6C11ED312EB1B /* Flutter.release.xcconfig */, - ); - name = "Support Files"; - path = "../../../ios_content_resizing/Pods/Target Support Files/Flutter"; - sourceTree = ""; - }; - E4801F62A6B08CD9B5410329F1A18FDE /* iOS */ = { - isa = PBXGroup; - children = ( - 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */, - ); - name = iOS; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 0FD43C857895FACDAB7AA8C0FF502499 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - B6AE8F15F2F866E8B52DC17217A64E71 /* Pods-ios_content_resizingTests-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 32F610179E9D72EE3A16EB3843931EE5 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - ACC932BEF12584E78B91E93346CB63E2 /* FlutterPluginRegistrant-umbrella.h in Headers */, - 4EE0C80B8A3C1107458579AFB4E41741 /* GeneratedPluginRegistrant.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 51C7632BD4576CB1075F90A036533FE9 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - B3889D09053A313F7A70C12C7D2B587C /* Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B2B5AE61D5B2BAC16D2CCA2B5E4F8DEE /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - D082208849F456F5518E6230A683096B /* Pods-ios_content_resizing-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - 81D87E4496B08116037E5861D2F209C8 /* Pods-ios_content_resizing-ios_content_resizingUITests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 6B2F3D8F2303282D58B664BE8F2D4EA8 /* Build configuration list for PBXNativeTarget "Pods-ios_content_resizing-ios_content_resizingUITests" */; - buildPhases = ( - 51C7632BD4576CB1075F90A036533FE9 /* Headers */, - 6558434F3ED48ADA5D330EDA3E26529C /* Sources */, - DE8E25759FD7427C882BA4EB71D22E80 /* Frameworks */, - A566FEC23C5B98D2E72A7B131DA712B0 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - EA4B8DFAE72877B05FABD41CFF09E680 /* PBXTargetDependency */, - EDA8F941BE29B16B5B697A2DED6651F5 /* PBXTargetDependency */, - ); - name = "Pods-ios_content_resizing-ios_content_resizingUITests"; - productName = Pods_ios_content_resizing_ios_content_resizingUITests; - productReference = DEE6C5FCB90FB050631DE9252A0FF907 /* Pods-ios_content_resizing-ios_content_resizingUITests */; - productType = "com.apple.product-type.framework"; - }; - 83DAA8F43D74F8D51203DE23C7C3A3F5 /* FlutterPluginRegistrant */ = { - isa = PBXNativeTarget; - buildConfigurationList = C9C0BE58A278116122B314654A0C4A57 /* Build configuration list for PBXNativeTarget "FlutterPluginRegistrant" */; - buildPhases = ( - 32F610179E9D72EE3A16EB3843931EE5 /* Headers */, - EE402EE2699B3EFF89477200DF3CE148 /* Sources */, - C85264A7AE5B8D2D6D41BECD6C886F30 /* Frameworks */, - 41C85A835F7246370834586E809DA47B /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 3796C178DFE7E4BF73050579F753935D /* PBXTargetDependency */, - ); - name = FlutterPluginRegistrant; - productName = FlutterPluginRegistrant; - productReference = DF7C6EBB9161EEF650EC12B4BB67E628 /* FlutterPluginRegistrant */; - productType = "com.apple.product-type.framework"; - }; - CD1FE7E172044780FE5855099C6F9044 /* Pods-ios_content_resizing */ = { - isa = PBXNativeTarget; - buildConfigurationList = F446D705FA553D5DDA096E4FA9C58C9A /* Build configuration list for PBXNativeTarget "Pods-ios_content_resizing" */; - buildPhases = ( - B2B5AE61D5B2BAC16D2CCA2B5E4F8DEE /* Headers */, - D8AB908807A6536C9CCC151F2A5AC435 /* Sources */, - 3C14517AA188AA0F4644710BDF6F2E0B /* Frameworks */, - 2C5BDD3A05AF10694FB31F41E7136D9A /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 28E6E08F0100197B5A7C30DEE65648FD /* PBXTargetDependency */, - 1DE7FB42D09CCE770F342A633F255B1E /* PBXTargetDependency */, - ); - name = "Pods-ios_content_resizing"; - productName = Pods_ios_content_resizing; - productReference = B1B78154C420D3C3E3BB30C73471AF58 /* Pods-ios_content_resizing */; - productType = "com.apple.product-type.framework"; - }; - E4EA532EB8D753070F4018E9EB3C09A2 /* Pods-ios_content_resizingTests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 9C81C4875C3CAE4CE50BCD8564492388 /* Build configuration list for PBXNativeTarget "Pods-ios_content_resizingTests" */; - buildPhases = ( - 0FD43C857895FACDAB7AA8C0FF502499 /* Headers */, - 5CEB1B2249C5D86647F8F2BEFA578F1C /* Sources */, - 830D63870BCE1E7548BFBF07AF254BC6 /* Frameworks */, - AF5798AF7A08861DE74D1251C1BE5D0C /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - 97EE237CECB95E15153F7C32A348F503 /* PBXTargetDependency */, - ); - name = "Pods-ios_content_resizingTests"; - productName = Pods_ios_content_resizingTests; - productReference = 848315FC91D61DDA12BFE10AF7903DD9 /* Pods-ios_content_resizingTests */; - productType = "com.apple.product-type.framework"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - BFDFE7DC352907FC980B868725387E98 /* Project object */ = { - isa = PBXProject; - attributes = { - LastSwiftUpdateCheck = 1600; - LastUpgradeCheck = 1600; - }; - buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; - compatibilityVersion = "Xcode 16.0"; - developmentRegion = en; - hasScannedForEncodings = 0; - knownRegions = ( - Base, - en, - ); - mainGroup = CF1408CF629C7361332E53B88F7BD30C; - minimizedProjectReferenceProxies = 0; - preferredProjectObjectVersion = 77; - productRefGroup = 6F7106898BE13FDCFDCF877524DD896B /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */, - 83DAA8F43D74F8D51203DE23C7C3A3F5 /* FlutterPluginRegistrant */, - CD1FE7E172044780FE5855099C6F9044 /* Pods-ios_content_resizing */, - 81D87E4496B08116037E5861D2F209C8 /* Pods-ios_content_resizing-ios_content_resizingUITests */, - E4EA532EB8D753070F4018E9EB3C09A2 /* Pods-ios_content_resizingTests */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 2C5BDD3A05AF10694FB31F41E7136D9A /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 41C85A835F7246370834586E809DA47B /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A566FEC23C5B98D2E72A7B131DA712B0 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - AF5798AF7A08861DE74D1251C1BE5D0C /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 5CEB1B2249C5D86647F8F2BEFA578F1C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0B55D92CD2BAF933FE9D276939406D2C /* Pods-ios_content_resizingTests-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 6558434F3ED48ADA5D330EDA3E26529C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1C8B15B53492E657E17E19CD85AA35C0 /* Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - D8AB908807A6536C9CCC151F2A5AC435 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - C31439779167DBFB0C2D6E1D2F3C673C /* Pods-ios_content_resizing-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - EE402EE2699B3EFF89477200DF3CE148 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D065E4911A1DC5E493EEF7DB517B7214 /* FlutterPluginRegistrant-dummy.m in Sources */, - 44F46818A4A76D2DC7F7FDADAB40E781 /* GeneratedPluginRegistrant.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 1DE7FB42D09CCE770F342A633F255B1E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FlutterPluginRegistrant; - target = 83DAA8F43D74F8D51203DE23C7C3A3F5 /* FlutterPluginRegistrant */; - targetProxy = 30CCE7DF2B096D489C0337201A23FEAB /* PBXContainerItemProxy */; - }; - 28E6E08F0100197B5A7C30DEE65648FD /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Flutter; - target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = 7948C6A42ED494BC018F1377A88CB2A6 /* PBXContainerItemProxy */; - }; - 3796C178DFE7E4BF73050579F753935D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Flutter; - target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = 0F89DBD5A9470B70308A8E62C10B4DC1 /* PBXContainerItemProxy */; - }; - 97EE237CECB95E15153F7C32A348F503 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Pods-ios_content_resizing"; - target = CD1FE7E172044780FE5855099C6F9044 /* Pods-ios_content_resizing */; - targetProxy = 78511F1C1FD5C9BCB89672C1D4CF0475 /* PBXContainerItemProxy */; - }; - EA4B8DFAE72877B05FABD41CFF09E680 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Flutter; - target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; - targetProxy = 2C9791B40262CCA18DEA3CC7B7E1C667 /* PBXContainerItemProxy */; - }; - EDA8F941BE29B16B5B697A2DED6651F5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = FlutterPluginRegistrant; - target = 83DAA8F43D74F8D51203DE23C7C3A3F5 /* FlutterPluginRegistrant */; - targetProxy = FC692C20666B5D147B676FA8171775D9 /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 040F80BD2D4B620F91B295DA27374820 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 95DFED33AEBE20CFC59AC2D89DF45F13 /* Pods-ios_content_resizingTests.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_BITCODE = NO; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; - "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( - "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\"", - "$(inherited)", - ); - "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( - "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\"", - "$(inherited)", - ); - INFOPLIST_FILE = "Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 18.5; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.modulemap"; - ONLY_ACTIVE_ARCH = NO; - OTHER_LDFLAGS = ( - "$(inherited)", - "-framework", - Flutter, - ); - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 1602B4EBAE0C64817990D65F3711E6C6 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6056F33DB108BE122160D138498C99F8 /* Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_BITCODE = NO; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; - "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( - "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", - "$(inherited)", - ); - "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( - "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", - "$(inherited)", - ); - INFOPLIST_FILE = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 18.5; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.modulemap"; - OTHER_LDFLAGS = ( - "$(inherited)", - "-framework", - Flutter, - ); - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 7CA996BECDFC2548E01D9AF66C171E89 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1B2A7B60A690627987F4A32728B1C441 /* Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_BITCODE = NO; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; - "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( - "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\"", - "$(inherited)", - ); - "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( - "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\"", - "$(inherited)", - ); - INFOPLIST_FILE = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 18.5; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.modulemap"; - ONLY_ACTIVE_ARCH = NO; - OTHER_LDFLAGS = ( - "$(inherited)", - "-framework", - Flutter, - ); - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - A3CA710B05DD0D38FF0C61760F3B99FB /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "POD_CONFIGURATION_DEBUG=1", - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 18.5; - MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; - MTL_FAST_MATH = YES; - ONLY_ACTIVE_ARCH = YES; - PRODUCT_NAME = "$(TARGET_NAME)"; - STRIP_INSTALLED_PRODUCT = NO; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - SYMROOT = "${SRCROOT}/../build"; - }; - name = Debug; - }; - B0AD22997967310A1650F12017E3C2C7 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1D1E78871CC9F2B1032560E19646993A /* FlutterPluginRegistrant.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_BITCODE = NO; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; - "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( - "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", - "$(inherited)", - ); - "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( - "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", - "$(inherited)", - ); - GCC_PREFIX_HEADER = "Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap"; - OTHER_LDFLAGS = ( - "$(inherited)", - "-framework", - Flutter, - ); - PRODUCT_MODULE_NAME = FlutterPluginRegistrant; - PRODUCT_NAME = FlutterPluginRegistrant; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - CB3A369004330A68D6CB0D804AE27792 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 7190D3A2421CEF0390C6C11ED312EB1B /* Flutter.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - D8D83461AC915BEDCB4A478E1E489628 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BB6445B421DA90DD6610EE80D499E3B4 /* Flutter.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CLANG_ENABLE_OBJC_WEAK = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - ONLY_ACTIVE_ARCH = NO; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - DFFBA46802CC7CCEBC5643E3F5B22C07 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5A9ED177DD476853C074763AE7635D34 /* FlutterPluginRegistrant.debug.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_BITCODE = NO; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; - "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( - "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\"", - "$(inherited)", - ); - "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( - "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\"", - "$(inherited)", - ); - GCC_PREFIX_HEADER = "Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap"; - ONLY_ACTIVE_ARCH = NO; - OTHER_LDFLAGS = ( - "$(inherited)", - "-framework", - Flutter, - ); - PRODUCT_MODULE_NAME = FlutterPluginRegistrant; - PRODUCT_NAME = FlutterPluginRegistrant; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - E2364721D6682F8B9E80045232309A09 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "POD_CONFIGURATION_RELEASE=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 18.5; - MTL_ENABLE_DEBUG_INFO = NO; - MTL_FAST_MATH = YES; - PRODUCT_NAME = "$(TARGET_NAME)"; - STRIP_INSTALLED_PRODUCT = NO; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - SWIFT_VERSION = 5.0; - SYMROOT = "${SRCROOT}/../build"; - }; - name = Release; - }; - F955CE243E6CED064AA3566C5AB2B4C0 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2ABF8D83AB2BF46EE272C48561AC5A9E /* Pods-ios_content_resizing.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_BITCODE = NO; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; - "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( - "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", - "$(inherited)", - ); - "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( - "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", - "$(inherited)", - ); - INFOPLIST_FILE = "Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 18.5; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.modulemap"; - OTHER_LDFLAGS = ( - "$(inherited)", - "-framework", - Flutter, - ); - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - FCDBA9CEDD692CC12B081D6F97592E39 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 1DB7953AE371D07C9F6F2864A55214EC /* Pods-ios_content_resizingTests.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_BITCODE = NO; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; - "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( - "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", - "$(inherited)", - ); - "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( - "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", - "$(inherited)", - ); - INFOPLIST_FILE = "Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 18.5; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.modulemap"; - OTHER_LDFLAGS = ( - "$(inherited)", - "-framework", - Flutter, - ); - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - FD819B07C2E487E567F75DEA02AA0254 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 808964E349CF6A9C44A0909D0D6EEE8E /* Pods-ios_content_resizing.debug.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_BITCODE = NO; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; - "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( - "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\"", - "$(inherited)", - ); - "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( - "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\"", - "$(inherited)", - ); - INFOPLIST_FILE = "Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 18.5; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.modulemap"; - ONLY_ACTIVE_ARCH = NO; - OTHER_LDFLAGS = ( - "$(inherited)", - "-framework", - Flutter, - ); - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A3CA710B05DD0D38FF0C61760F3B99FB /* Debug */, - E2364721D6682F8B9E80045232309A09 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 6B2F3D8F2303282D58B664BE8F2D4EA8 /* Build configuration list for PBXNativeTarget "Pods-ios_content_resizing-ios_content_resizingUITests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 7CA996BECDFC2548E01D9AF66C171E89 /* Debug */, - 1602B4EBAE0C64817990D65F3711E6C6 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 9C81C4875C3CAE4CE50BCD8564492388 /* Build configuration list for PBXNativeTarget "Pods-ios_content_resizingTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 040F80BD2D4B620F91B295DA27374820 /* Debug */, - FCDBA9CEDD692CC12B081D6F97592E39 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - B26E11467D023FA6CDCE36F75198812F /* Build configuration list for PBXAggregateTarget "Flutter" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D8D83461AC915BEDCB4A478E1E489628 /* Debug */, - CB3A369004330A68D6CB0D804AE27792 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - C9C0BE58A278116122B314654A0C4A57 /* Build configuration list for PBXNativeTarget "FlutterPluginRegistrant" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - DFFBA46802CC7CCEBC5643E3F5B22C07 /* Debug */, - B0AD22997967310A1650F12017E3C2C7 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - F446D705FA553D5DDA096E4FA9C58C9A /* Build configuration list for PBXNativeTarget "Pods-ios_content_resizing" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - FD819B07C2E487E567F75DEA02AA0254 /* Debug */, - F955CE243E6CED064AA3566C5AB2B4C0 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; -} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Flutter.xcscheme b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Flutter.xcscheme deleted file mode 100644 index efb76cca4d8..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Flutter.xcscheme +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/FlutterPluginRegistrant.xcscheme b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/FlutterPluginRegistrant.xcscheme deleted file mode 100644 index 629d12c5c15..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/FlutterPluginRegistrant.xcscheme +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing-ios_content_resizingUITests.xcscheme b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing-ios_content_resizingUITests.xcscheme deleted file mode 100644 index f6460fe27f5..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing-ios_content_resizingUITests.xcscheme +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing.xcscheme b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing.xcscheme deleted file mode 100644 index ff91729c9f6..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing.xcscheme +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizingTests.xcscheme b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizingTests.xcscheme deleted file mode 100644 index c080fe82e0b..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizingTests.xcscheme +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist deleted file mode 100644 index b602389ceef..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist +++ /dev/null @@ -1,46 +0,0 @@ - - - - - SchemeUserState - - Flutter.xcscheme - - isShown - - orderHint - 0 - - FlutterPluginRegistrant.xcscheme - - isShown - - orderHint - 1 - - Pods-ios_content_resizing-ios_content_resizingUITests.xcscheme - - isShown - - orderHint - 3 - - Pods-ios_content_resizing.xcscheme - - isShown - - orderHint - 2 - - Pods-ios_content_resizingTests.xcscheme - - isShown - - orderHint - 4 - - - SuppressBuildableAutocreation - - - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.debug.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.debug.xcconfig deleted file mode 100644 index 17a86f0b2e7..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.debug.xcconfig +++ /dev/null @@ -1,12 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Flutter -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../flutter_module/.ios/Flutter -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.release.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.release.xcconfig deleted file mode 100644 index 17a86f0b2e7..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.release.xcconfig +++ /dev/null @@ -1,12 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Flutter -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../flutter_module/.ios/Flutter -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist deleted file mode 100644 index 8928a8d90b7..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 0.0.1 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-dummy.m b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-dummy.m deleted file mode 100644 index e6bdef1cfa3..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_FlutterPluginRegistrant : NSObject -@end -@implementation PodsDummy_FlutterPluginRegistrant -@end diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch deleted file mode 100644 index beb2a244183..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch +++ /dev/null @@ -1,12 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-umbrella.h b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-umbrella.h deleted file mode 100644 index 43d71fa4ac2..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-umbrella.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - -#import "GeneratedPluginRegistrant.h" - -FOUNDATION_EXPORT double FlutterPluginRegistrantVersionNumber; -FOUNDATION_EXPORT const unsigned char FlutterPluginRegistrantVersionString[]; - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.debug.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.debug.xcconfig deleted file mode 100644 index ce7bdbb7b0b..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.debug.xcconfig +++ /dev/null @@ -1,13 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant -DEFINES_MODULE = YES -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../flutter_module/.ios/Flutter/FlutterPluginRegistrant -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap deleted file mode 100644 index 44b5ef2d0d5..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module FlutterPluginRegistrant { - umbrella header "FlutterPluginRegistrant-umbrella.h" - - export * - module * { export * } -} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.release.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.release.xcconfig deleted file mode 100644 index ce7bdbb7b0b..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.release.xcconfig +++ /dev/null @@ -1,13 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant -DEFINES_MODULE = YES -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} -PODS_ROOT = ${SRCROOT} -PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../flutter_module/.ios/Flutter/FlutterPluginRegistrant -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} -SKIP_INSTALL = YES -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist deleted file mode 100644 index 19cf209d21e..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0.0 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown deleted file mode 100644 index 102af753851..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown +++ /dev/null @@ -1,3 +0,0 @@ -# Acknowledgements -This application makes use of the following third party libraries: -Generated by CocoaPods - https://cocoapods.org diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist deleted file mode 100644 index 7acbad1eabb..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist +++ /dev/null @@ -1,29 +0,0 @@ - - - - - PreferenceSpecifiers - - - FooterText - This application makes use of the following third party libraries: - Title - Acknowledgements - Type - PSGroupSpecifier - - - FooterText - Generated by CocoaPods - https://cocoapods.org - Title - - Type - PSGroupSpecifier - - - StringsTable - Acknowledgements - Title - Acknowledgements - - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m deleted file mode 100644 index 365aa010f9d..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_ios_content_resizing_ios_content_resizingUITests : NSObject -@end -@implementation PodsDummy_Pods_ios_content_resizing_ios_content_resizingUITests -@end diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h deleted file mode 100644 index 0746477c77a..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - - -FOUNDATION_EXPORT double Pods_ios_content_resizing_ios_content_resizingUITestsVersionNumber; -FOUNDATION_EXPORT const unsigned char Pods_ios_content_resizing_ios_content_resizingUITestsVersionString[]; - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig deleted file mode 100644 index a2c851c8141..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig +++ /dev/null @@ -1,14 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" -OTHER_LDFLAGS = $(inherited) -ObjC -framework "FlutterPluginRegistrant" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/Flutter" "-F${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_PODFILE_DIR_PATH = ${SRCROOT}/. -PODS_ROOT = ${SRCROOT}/Pods -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.modulemap b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.modulemap deleted file mode 100644 index 01cab2eaaba..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Pods_ios_content_resizing_ios_content_resizingUITests { - umbrella header "Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h" - - export * - module * { export * } -} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig deleted file mode 100644 index a2c851c8141..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig +++ /dev/null @@ -1,14 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" -OTHER_LDFLAGS = $(inherited) -ObjC -framework "FlutterPluginRegistrant" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/Flutter" "-F${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_PODFILE_DIR_PATH = ${SRCROOT}/. -PODS_ROOT = ${SRCROOT}/Pods -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-Info.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-Info.plist deleted file mode 100644 index 19cf209d21e..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0.0 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.markdown b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.markdown deleted file mode 100644 index 102af753851..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.markdown +++ /dev/null @@ -1,3 +0,0 @@ -# Acknowledgements -This application makes use of the following third party libraries: -Generated by CocoaPods - https://cocoapods.org diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.plist deleted file mode 100644 index 7acbad1eabb..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.plist +++ /dev/null @@ -1,29 +0,0 @@ - - - - - PreferenceSpecifiers - - - FooterText - This application makes use of the following third party libraries: - Title - Acknowledgements - Type - PSGroupSpecifier - - - FooterText - Generated by CocoaPods - https://cocoapods.org - Title - - Type - PSGroupSpecifier - - - StringsTable - Acknowledgements - Title - Acknowledgements - - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-dummy.m b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-dummy.m deleted file mode 100644 index 16c489cde6d..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_ios_content_resizing : NSObject -@end -@implementation PodsDummy_Pods_ios_content_resizing -@end diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-umbrella.h b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-umbrella.h deleted file mode 100644 index d3e7c43d4f5..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-umbrella.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - - -FOUNDATION_EXPORT double Pods_ios_content_resizingVersionNumber; -FOUNDATION_EXPORT const unsigned char Pods_ios_content_resizingVersionString[]; - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.debug.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.debug.xcconfig deleted file mode 100644 index a2c851c8141..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.debug.xcconfig +++ /dev/null @@ -1,14 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" -OTHER_LDFLAGS = $(inherited) -ObjC -framework "FlutterPluginRegistrant" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/Flutter" "-F${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_PODFILE_DIR_PATH = ${SRCROOT}/. -PODS_ROOT = ${SRCROOT}/Pods -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.modulemap b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.modulemap deleted file mode 100644 index c1ff0898cbe..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Pods_ios_content_resizing { - umbrella header "Pods-ios_content_resizing-umbrella.h" - - export * - module * { export * } -} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.release.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.release.xcconfig deleted file mode 100644 index a2c851c8141..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.release.xcconfig +++ /dev/null @@ -1,14 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" -OTHER_LDFLAGS = $(inherited) -ObjC -framework "FlutterPluginRegistrant" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/Flutter" "-F${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_PODFILE_DIR_PATH = ${SRCROOT}/. -PODS_ROOT = ${SRCROOT}/Pods -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-Info.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-Info.plist deleted file mode 100644 index 19cf209d21e..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - ${PODS_DEVELOPMENT_LANGUAGE} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0.0 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.markdown b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.markdown deleted file mode 100644 index 102af753851..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.markdown +++ /dev/null @@ -1,3 +0,0 @@ -# Acknowledgements -This application makes use of the following third party libraries: -Generated by CocoaPods - https://cocoapods.org diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.plist deleted file mode 100644 index 7acbad1eabb..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.plist +++ /dev/null @@ -1,29 +0,0 @@ - - - - - PreferenceSpecifiers - - - FooterText - This application makes use of the following third party libraries: - Title - Acknowledgements - Type - PSGroupSpecifier - - - FooterText - Generated by CocoaPods - https://cocoapods.org - Title - - Type - PSGroupSpecifier - - - StringsTable - Acknowledgements - Title - Acknowledgements - - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-dummy.m b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-dummy.m deleted file mode 100644 index 9e93bedc36a..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_ios_content_resizingTests : NSObject -@end -@implementation PodsDummy_Pods_ios_content_resizingTests -@end diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-umbrella.h b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-umbrella.h deleted file mode 100644 index 793d3fca3c2..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-umbrella.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef __OBJC__ -#import -#else -#ifndef FOUNDATION_EXPORT -#if defined(__cplusplus) -#define FOUNDATION_EXPORT extern "C" -#else -#define FOUNDATION_EXPORT extern -#endif -#endif -#endif - - -FOUNDATION_EXPORT double Pods_ios_content_resizingTestsVersionNumber; -FOUNDATION_EXPORT const unsigned char Pods_ios_content_resizingTestsVersionString[]; - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.debug.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.debug.xcconfig deleted file mode 100644 index 80e5b31ec2f..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.debug.xcconfig +++ /dev/null @@ -1,10 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_PODFILE_DIR_PATH = ${SRCROOT}/. -PODS_ROOT = ${SRCROOT}/Pods -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.modulemap b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.modulemap deleted file mode 100644 index a09c5bac370..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Pods_ios_content_resizingTests { - umbrella header "Pods-ios_content_resizingTests-umbrella.h" - - export * - module * { export * } -} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.release.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.release.xcconfig deleted file mode 100644 index 80e5b31ec2f..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.release.xcconfig +++ /dev/null @@ -1,10 +0,0 @@ -CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" -PODS_BUILD_DIR = ${BUILD_DIR} -PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_PODFILE_DIR_PATH = ${SRCROOT}/. -PODS_ROOT = ${SRCROOT}/Pods -PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates -USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.pbxproj b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.pbxproj index bed1ca40b6a..94f3001bea3 100644 --- a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.pbxproj +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.pbxproj @@ -6,272 +6,236 @@ objectVersion = 77; objects = { -/* Begin PBXBuildFile section */ - 4DAB140B9F5E2D9A20A8401E /* Pods_ios_content_resizing.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4E62017EB1C0A39E3EFC18A4 /* Pods_ios_content_resizing.framework */; }; - 556795E6023CF9E74872609E /* Pods_ios_content_resizing_ios_content_resizingUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 360DA1E0B282E115E3C8D7BB /* Pods_ios_content_resizing_ios_content_resizingUITests.framework */; }; - A629C1369AEEF868404EE51E /* Pods_ios_content_resizingTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BA5ED9EA5F86CC457B7A551 /* Pods_ios_content_resizingTests.framework */; }; -/* End PBXBuildFile section */ - /* Begin PBXContainerItemProxy section */ - F23EDF872EDFB13600A217AA /* PBXContainerItemProxy */ = { + F23EDFE72EE0E81C00A217AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = F23EDF712EDFB13200A217AA /* Project object */; + containerPortal = F23EDFC82EE0E81A00A217AA /* Project object */; proxyType = 1; - remoteGlobalIDString = F23EDF782EDFB13200A217AA; + remoteGlobalIDString = F23EDFCF2EE0E81A00A217AA; remoteInfo = ios_content_resizing; }; - F23EDF912EDFB13600A217AA /* PBXContainerItemProxy */ = { + F23EDFF12EE0E81C00A217AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = F23EDF712EDFB13200A217AA /* Project object */; + containerPortal = F23EDFC82EE0E81A00A217AA /* Project object */; proxyType = 1; - remoteGlobalIDString = F23EDF782EDFB13200A217AA; + remoteGlobalIDString = F23EDFCF2EE0E81A00A217AA; remoteInfo = ios_content_resizing; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 0733AA154A58ADE65312896D /* Pods-ios_content_resizingTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios_content_resizingTests.debug.xcconfig"; path = "Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.debug.xcconfig"; sourceTree = ""; }; - 2A7A73D9E31CDD167C0DABA2 /* Pods-ios_content_resizing.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios_content_resizing.release.xcconfig"; path = "Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.release.xcconfig"; sourceTree = ""; }; - 2BA5ED9EA5F86CC457B7A551 /* Pods_ios_content_resizingTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ios_content_resizingTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 360DA1E0B282E115E3C8D7BB /* Pods_ios_content_resizing_ios_content_resizingUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ios_content_resizing_ios_content_resizingUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 4E62017EB1C0A39E3EFC18A4 /* Pods_ios_content_resizing.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ios_content_resizing.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 6668053CE993405B3DC50D73 /* Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig"; path = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig"; sourceTree = ""; }; - 7977AC1A580247C02F750060 /* Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig"; path = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig"; sourceTree = ""; }; - E7C9AB9AF800727134F490DD /* Pods-ios_content_resizing.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios_content_resizing.debug.xcconfig"; path = "Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.debug.xcconfig"; sourceTree = ""; }; - E83F8034DEBD121D26C241B2 /* Pods-ios_content_resizingTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios_content_resizingTests.release.xcconfig"; path = "Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.release.xcconfig"; sourceTree = ""; }; - F23EDF792EDFB13200A217AA /* ios_content_resizing.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ios_content_resizing.app; sourceTree = BUILT_PRODUCTS_DIR; }; - F23EDF862EDFB13600A217AA /* ios_content_resizingTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ios_content_resizingTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; - F23EDF902EDFB13600A217AA /* ios_content_resizingUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ios_content_resizingUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + F23EDFD02EE0E81A00A217AA /* ios_content_resizing.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ios_content_resizing.app; sourceTree = BUILT_PRODUCTS_DIR; }; + F23EDFE62EE0E81C00A217AA /* ios_content_resizingTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ios_content_resizingTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + F23EDFF02EE0E81C00A217AA /* ios_content_resizingUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ios_content_resizingUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXFileReference section */ +/* Begin PBXFileSystemSynchronizedBuildFileExceptionSet section */ + F23EDFF82EE0E81C00A217AA /* Exceptions for "ios_content_resizing" folder in "ios_content_resizing" target */ = { + isa = PBXFileSystemSynchronizedBuildFileExceptionSet; + membershipExceptions = ( + Info.plist, + ); + target = F23EDFCF2EE0E81A00A217AA /* ios_content_resizing */; + }; +/* End PBXFileSystemSynchronizedBuildFileExceptionSet section */ + /* Begin PBXFileSystemSynchronizedRootGroup section */ - F23EDF7B2EDFB13200A217AA /* ios_content_resizing */ = { + F23EDFD22EE0E81A00A217AA /* ios_content_resizing */ = { isa = PBXFileSystemSynchronizedRootGroup; exceptions = ( + F23EDFF82EE0E81C00A217AA /* Exceptions for "ios_content_resizing" folder in "ios_content_resizing" target */, ); path = ios_content_resizing; sourceTree = ""; }; - F23EDF892EDFB13600A217AA /* ios_content_resizingTests */ = { + F23EDFE92EE0E81C00A217AA /* ios_content_resizingTests */ = { isa = PBXFileSystemSynchronizedRootGroup; - exceptions = ( - ); path = ios_content_resizingTests; sourceTree = ""; }; - F23EDF932EDFB13600A217AA /* ios_content_resizingUITests */ = { + F23EDFF32EE0E81C00A217AA /* ios_content_resizingUITests */ = { isa = PBXFileSystemSynchronizedRootGroup; - exceptions = ( - ); path = ios_content_resizingUITests; sourceTree = ""; }; /* End PBXFileSystemSynchronizedRootGroup section */ /* Begin PBXFrameworksBuildPhase section */ - F23EDF762EDFB13200A217AA /* Frameworks */ = { + F23EDFCD2EE0E81A00A217AA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4DAB140B9F5E2D9A20A8401E /* Pods_ios_content_resizing.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F23EDF832EDFB13600A217AA /* Frameworks */ = { + F23EDFE32EE0E81C00A217AA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A629C1369AEEF868404EE51E /* Pods_ios_content_resizingTests.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F23EDF8D2EDFB13600A217AA /* Frameworks */ = { + F23EDFED2EE0E81C00A217AA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 556795E6023CF9E74872609E /* Pods_ios_content_resizing_ios_content_resizingUITests.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - E4F00B57B56B5F4C870D955C /* Pods */ = { - isa = PBXGroup; - children = ( - E7C9AB9AF800727134F490DD /* Pods-ios_content_resizing.debug.xcconfig */, - 2A7A73D9E31CDD167C0DABA2 /* Pods-ios_content_resizing.release.xcconfig */, - 6668053CE993405B3DC50D73 /* Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig */, - 7977AC1A580247C02F750060 /* Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig */, - 0733AA154A58ADE65312896D /* Pods-ios_content_resizingTests.debug.xcconfig */, - E83F8034DEBD121D26C241B2 /* Pods-ios_content_resizingTests.release.xcconfig */, - ); - name = Pods; - path = Pods; - sourceTree = ""; - }; - F23EDF702EDFB13200A217AA = { + F23EDFC72EE0E81A00A217AA = { isa = PBXGroup; children = ( - F23EDF7B2EDFB13200A217AA /* ios_content_resizing */, - F23EDF892EDFB13600A217AA /* ios_content_resizingTests */, - F23EDF932EDFB13600A217AA /* ios_content_resizingUITests */, - F23EDF7A2EDFB13200A217AA /* Products */, - E4F00B57B56B5F4C870D955C /* Pods */, - FDD2BF5D11FE0C2E86DF71DF /* Frameworks */, + F23EDFD22EE0E81A00A217AA /* ios_content_resizing */, + F23EDFE92EE0E81C00A217AA /* ios_content_resizingTests */, + F23EDFF32EE0E81C00A217AA /* ios_content_resizingUITests */, + F23EDFD12EE0E81A00A217AA /* Products */, ); sourceTree = ""; }; - F23EDF7A2EDFB13200A217AA /* Products */ = { + F23EDFD12EE0E81A00A217AA /* Products */ = { isa = PBXGroup; children = ( - F23EDF792EDFB13200A217AA /* ios_content_resizing.app */, - F23EDF862EDFB13600A217AA /* ios_content_resizingTests.xctest */, - F23EDF902EDFB13600A217AA /* ios_content_resizingUITests.xctest */, + F23EDFD02EE0E81A00A217AA /* ios_content_resizing.app */, + F23EDFE62EE0E81C00A217AA /* ios_content_resizingTests.xctest */, + F23EDFF02EE0E81C00A217AA /* ios_content_resizingUITests.xctest */, ); name = Products; sourceTree = ""; }; - FDD2BF5D11FE0C2E86DF71DF /* Frameworks */ = { - isa = PBXGroup; - children = ( - 4E62017EB1C0A39E3EFC18A4 /* Pods_ios_content_resizing.framework */, - 360DA1E0B282E115E3C8D7BB /* Pods_ios_content_resizing_ios_content_resizingUITests.framework */, - 2BA5ED9EA5F86CC457B7A551 /* Pods_ios_content_resizingTests.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ - F23EDF782EDFB13200A217AA /* ios_content_resizing */ = { + F23EDFCF2EE0E81A00A217AA /* ios_content_resizing */ = { isa = PBXNativeTarget; - buildConfigurationList = F23EDF9A2EDFB13600A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizing" */; + buildConfigurationList = F23EDFF92EE0E81C00A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizing" */; buildPhases = ( - D122D976A970A0D87E823669 /* [CP] Check Pods Manifest.lock */, - 9A9A5AC07BA43CAE86140CAA /* [CP-User] Run Flutter Build flutter_module Script */, - F23EDF752EDFB13200A217AA /* Sources */, - F23EDF762EDFB13200A217AA /* Frameworks */, - F23EDF772EDFB13200A217AA /* Resources */, - 47743C1E64091918F08E3FBC /* [CP-User] Embed Flutter Build flutter_module Script */, + F23EDFCC2EE0E81A00A217AA /* Sources */, + F23EDFCD2EE0E81A00A217AA /* Frameworks */, + F23EDFCE2EE0E81A00A217AA /* Resources */, ); buildRules = ( ); dependencies = ( ); fileSystemSynchronizedGroups = ( - F23EDF7B2EDFB13200A217AA /* ios_content_resizing */, + F23EDFD22EE0E81A00A217AA /* ios_content_resizing */, ); name = ios_content_resizing; + packageProductDependencies = ( + ); productName = ios_content_resizing; - productReference = F23EDF792EDFB13200A217AA /* ios_content_resizing.app */; + productReference = F23EDFD02EE0E81A00A217AA /* ios_content_resizing.app */; productType = "com.apple.product-type.application"; }; - F23EDF852EDFB13600A217AA /* ios_content_resizingTests */ = { + F23EDFE52EE0E81C00A217AA /* ios_content_resizingTests */ = { isa = PBXNativeTarget; - buildConfigurationList = F23EDF9D2EDFB13600A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizingTests" */; + buildConfigurationList = F23EDFFE2EE0E81C00A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizingTests" */; buildPhases = ( - 0B12C86ED93DBB1AC985689F /* [CP] Check Pods Manifest.lock */, - F23EDF822EDFB13600A217AA /* Sources */, - F23EDF832EDFB13600A217AA /* Frameworks */, - F23EDF842EDFB13600A217AA /* Resources */, + F23EDFE22EE0E81C00A217AA /* Sources */, + F23EDFE32EE0E81C00A217AA /* Frameworks */, + F23EDFE42EE0E81C00A217AA /* Resources */, ); buildRules = ( ); dependencies = ( - F23EDF882EDFB13600A217AA /* PBXTargetDependency */, + F23EDFE82EE0E81C00A217AA /* PBXTargetDependency */, ); fileSystemSynchronizedGroups = ( - F23EDF892EDFB13600A217AA /* ios_content_resizingTests */, + F23EDFE92EE0E81C00A217AA /* ios_content_resizingTests */, ); name = ios_content_resizingTests; + packageProductDependencies = ( + ); productName = ios_content_resizingTests; - productReference = F23EDF862EDFB13600A217AA /* ios_content_resizingTests.xctest */; + productReference = F23EDFE62EE0E81C00A217AA /* ios_content_resizingTests.xctest */; productType = "com.apple.product-type.bundle.unit-test"; }; - F23EDF8F2EDFB13600A217AA /* ios_content_resizingUITests */ = { + F23EDFEF2EE0E81C00A217AA /* ios_content_resizingUITests */ = { isa = PBXNativeTarget; - buildConfigurationList = F23EDFA02EDFB13600A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizingUITests" */; + buildConfigurationList = F23EE0012EE0E81C00A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizingUITests" */; buildPhases = ( - 892568C02BCB8E63C262CECA /* [CP] Check Pods Manifest.lock */, - F23EDF8C2EDFB13600A217AA /* Sources */, - F23EDF8D2EDFB13600A217AA /* Frameworks */, - F23EDF8E2EDFB13600A217AA /* Resources */, + F23EDFEC2EE0E81C00A217AA /* Sources */, + F23EDFED2EE0E81C00A217AA /* Frameworks */, + F23EDFEE2EE0E81C00A217AA /* Resources */, ); buildRules = ( ); dependencies = ( - F23EDF922EDFB13600A217AA /* PBXTargetDependency */, + F23EDFF22EE0E81C00A217AA /* PBXTargetDependency */, ); fileSystemSynchronizedGroups = ( - F23EDF932EDFB13600A217AA /* ios_content_resizingUITests */, + F23EDFF32EE0E81C00A217AA /* ios_content_resizingUITests */, ); name = ios_content_resizingUITests; + packageProductDependencies = ( + ); productName = ios_content_resizingUITests; - productReference = F23EDF902EDFB13600A217AA /* ios_content_resizingUITests.xctest */; + productReference = F23EDFF02EE0E81C00A217AA /* ios_content_resizingUITests.xctest */; productType = "com.apple.product-type.bundle.ui-testing"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ - F23EDF712EDFB13200A217AA /* Project object */ = { + F23EDFC82EE0E81A00A217AA /* Project object */ = { isa = PBXProject; attributes = { BuildIndependentTargetsInParallel = 1; LastSwiftUpdateCheck = 1640; LastUpgradeCheck = 1640; TargetAttributes = { - F23EDF782EDFB13200A217AA = { + F23EDFCF2EE0E81A00A217AA = { CreatedOnToolsVersion = 16.4; }; - F23EDF852EDFB13600A217AA = { + F23EDFE52EE0E81C00A217AA = { CreatedOnToolsVersion = 16.4; - TestTargetID = F23EDF782EDFB13200A217AA; + TestTargetID = F23EDFCF2EE0E81A00A217AA; }; - F23EDF8F2EDFB13600A217AA = { + F23EDFEF2EE0E81C00A217AA = { CreatedOnToolsVersion = 16.4; - TestTargetID = F23EDF782EDFB13200A217AA; + TestTargetID = F23EDFCF2EE0E81A00A217AA; }; }; }; - buildConfigurationList = F23EDF742EDFB13200A217AA /* Build configuration list for PBXProject "ios_content_resizing" */; + buildConfigurationList = F23EDFCB2EE0E81A00A217AA /* Build configuration list for PBXProject "ios_content_resizing" */; developmentRegion = en; hasScannedForEncodings = 0; knownRegions = ( en, Base, ); - mainGroup = F23EDF702EDFB13200A217AA; + mainGroup = F23EDFC72EE0E81A00A217AA; minimizedProjectReferenceProxies = 1; preferredProjectObjectVersion = 77; - productRefGroup = F23EDF7A2EDFB13200A217AA /* Products */; + productRefGroup = F23EDFD12EE0E81A00A217AA /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( - F23EDF782EDFB13200A217AA /* ios_content_resizing */, - F23EDF852EDFB13600A217AA /* ios_content_resizingTests */, - F23EDF8F2EDFB13600A217AA /* ios_content_resizingUITests */, + F23EDFCF2EE0E81A00A217AA /* ios_content_resizing */, + F23EDFE52EE0E81C00A217AA /* ios_content_resizingTests */, + F23EDFEF2EE0E81C00A217AA /* ios_content_resizingUITests */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - F23EDF772EDFB13200A217AA /* Resources */ = { + F23EDFCE2EE0E81A00A217AA /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F23EDF842EDFB13600A217AA /* Resources */ = { + F23EDFE42EE0E81C00A217AA /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F23EDF8E2EDFB13600A217AA /* Resources */ = { + F23EDFEE2EE0E81C00A217AA /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -280,111 +244,22 @@ }; /* End PBXResourcesBuildPhase section */ -/* Begin PBXShellScriptBuildPhase section */ - 0B12C86ED93DBB1AC985689F /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-ios_content_resizingTests-checkManifestLockResult.txt", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - 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"; - showEnvVarsInLog = 0; - }; - 47743C1E64091918F08E3FBC /* [CP-User] Embed Flutter Build flutter_module Script */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - name = "[CP-User] Embed Flutter Build flutter_module Script"; - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "set -e\nset -u\nsource \"${SRCROOT}/../flutter_module/.ios/Flutter/flutter_export_environment.sh\"\nexport VERBOSE_SCRIPT_LOGGING=1 && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/xcode_backend.sh embed_and_thin"; - }; - 892568C02BCB8E63C262CECA /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-ios_content_resizing-ios_content_resizingUITests-checkManifestLockResult.txt", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - 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"; - showEnvVarsInLog = 0; - }; - 9A9A5AC07BA43CAE86140CAA /* [CP-User] Run Flutter Build flutter_module Script */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - name = "[CP-User] Run Flutter Build flutter_module Script"; - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "set -e\nset -u\nsource \"${SRCROOT}/../flutter_module/.ios/Flutter/flutter_export_environment.sh\"\nexport VERBOSE_SCRIPT_LOGGING=1 && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/xcode_backend.sh build"; - }; - D122D976A970A0D87E823669 /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-ios_content_resizing-checkManifestLockResult.txt", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - 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"; - showEnvVarsInLog = 0; - }; -/* End PBXShellScriptBuildPhase section */ - /* Begin PBXSourcesBuildPhase section */ - F23EDF752EDFB13200A217AA /* Sources */ = { + F23EDFCC2EE0E81A00A217AA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F23EDF822EDFB13600A217AA /* Sources */ = { + F23EDFE22EE0E81C00A217AA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F23EDF8C2EDFB13600A217AA /* Sources */ = { + F23EDFEC2EE0E81C00A217AA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -394,20 +269,76 @@ /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - F23EDF882EDFB13600A217AA /* PBXTargetDependency */ = { + F23EDFE82EE0E81C00A217AA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F23EDF782EDFB13200A217AA /* ios_content_resizing */; - targetProxy = F23EDF872EDFB13600A217AA /* PBXContainerItemProxy */; + target = F23EDFCF2EE0E81A00A217AA /* ios_content_resizing */; + targetProxy = F23EDFE72EE0E81C00A217AA /* PBXContainerItemProxy */; }; - F23EDF922EDFB13600A217AA /* PBXTargetDependency */ = { + F23EDFF22EE0E81C00A217AA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - target = F23EDF782EDFB13200A217AA /* ios_content_resizing */; - targetProxy = F23EDF912EDFB13600A217AA /* PBXContainerItemProxy */; + target = F23EDFCF2EE0E81A00A217AA /* ios_content_resizing */; + targetProxy = F23EDFF12EE0E81C00A217AA /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - F23EDF982EDFB13600A217AA /* Debug */ = { + F23EDFFA2EE0E81C00A217AA /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = ios_content_resizing/Info.plist; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; + INFOPLIST_KEY_UIMainStoryboardFile = Main; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-content-resizing"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + F23EDFFB2EE0E81C00A217AA /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = S8QB4VV633; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_FILE = ios_content_resizing/Info.plist; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen; + INFOPLIST_KEY_UIMainStoryboardFile = Main; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-content-resizing"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + F23EDFFC2EE0E81C00A217AA /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -471,7 +402,7 @@ }; name = Debug; }; - F23EDF992EDFB13600A217AA /* Release */ = { + F23EDFFD2EE0E81C00A217AA /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -528,67 +459,8 @@ }; name = Release; }; - F23EDF9B2EDFB13600A217AA /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = E7C9AB9AF800727134F490DD /* Pods-ios_content_resizing.debug.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; - DEVELOPMENT_TEAM = S8QB4VV633; - ENABLE_PREVIEWS = YES; - GENERATE_INFOPLIST_FILE = YES; - INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; - INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; - INFOPLIST_KEY_UILaunchScreen_Generation = YES; - INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; - INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-content-resizing"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_EMIT_LOC_STRINGS = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - F23EDF9C2EDFB13600A217AA /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2A7A73D9E31CDD167C0DABA2 /* Pods-ios_content_resizing.release.xcconfig */; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 1; - DEVELOPMENT_TEAM = S8QB4VV633; - ENABLE_PREVIEWS = YES; - GENERATE_INFOPLIST_FILE = YES; - INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; - INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; - INFOPLIST_KEY_UILaunchScreen_Generation = YES; - INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; - INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - ); - MARKETING_VERSION = 1.0; - PRODUCT_BUNDLE_IDENTIFIER = "dev.flutter.plugins.ios-content-resizing"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_EMIT_LOC_STRINGS = YES; - SWIFT_VERSION = 5.0; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Release; - }; - F23EDF9E2EDFB13600A217AA /* Debug */ = { + F23EDFFF2EE0E81C00A217AA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 0733AA154A58ADE65312896D /* Pods-ios_content_resizingTests.debug.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CODE_SIGN_STYLE = Automatic; @@ -606,9 +478,8 @@ }; name = Debug; }; - F23EDF9F2EDFB13600A217AA /* Release */ = { + F23EE0002EE0E81C00A217AA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E83F8034DEBD121D26C241B2 /* Pods-ios_content_resizingTests.release.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CODE_SIGN_STYLE = Automatic; @@ -626,9 +497,8 @@ }; name = Release; }; - F23EDFA12EDFB13600A217AA /* Debug */ = { + F23EE0022EE0E81C00A217AA /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6668053CE993405B3DC50D73 /* Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig */; buildSettings = { CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; @@ -644,9 +514,8 @@ }; name = Debug; }; - F23EDFA22EDFB13600A217AA /* Release */ = { + F23EE0032EE0E81C00A217AA /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7977AC1A580247C02F750060 /* Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig */; buildSettings = { CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; @@ -665,43 +534,43 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - F23EDF742EDFB13200A217AA /* Build configuration list for PBXProject "ios_content_resizing" */ = { + F23EDFCB2EE0E81A00A217AA /* Build configuration list for PBXProject "ios_content_resizing" */ = { isa = XCConfigurationList; buildConfigurations = ( - F23EDF982EDFB13600A217AA /* Debug */, - F23EDF992EDFB13600A217AA /* Release */, + F23EDFFC2EE0E81C00A217AA /* Debug */, + F23EDFFD2EE0E81C00A217AA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F23EDF9A2EDFB13600A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizing" */ = { + F23EDFF92EE0E81C00A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizing" */ = { isa = XCConfigurationList; buildConfigurations = ( - F23EDF9B2EDFB13600A217AA /* Debug */, - F23EDF9C2EDFB13600A217AA /* Release */, + F23EDFFA2EE0E81C00A217AA /* Debug */, + F23EDFFB2EE0E81C00A217AA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F23EDF9D2EDFB13600A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizingTests" */ = { + F23EDFFE2EE0E81C00A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizingTests" */ = { isa = XCConfigurationList; buildConfigurations = ( - F23EDF9E2EDFB13600A217AA /* Debug */, - F23EDF9F2EDFB13600A217AA /* Release */, + F23EDFFF2EE0E81C00A217AA /* Debug */, + F23EE0002EE0E81C00A217AA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F23EDFA02EDFB13600A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizingUITests" */ = { + F23EE0012EE0E81C00A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizingUITests" */ = { isa = XCConfigurationList; buildConfigurations = ( - F23EDFA12EDFB13600A217AA /* Debug */, - F23EDFA22EDFB13600A217AA /* Release */, + F23EE0022EE0E81C00A217AA /* Debug */, + F23EE0032EE0E81C00A217AA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; - rootObject = F23EDF712EDFB13200A217AA /* Project object */; + rootObject = F23EDFC82EE0E81A00A217AA /* Project object */; } diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 919434a6254..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index 63d37995bfd779f00ff9480679538542e615b1c6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13688 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 diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist deleted file mode 100644 index 4ccf2d12203..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist +++ /dev/null @@ -1,14 +0,0 @@ - - - - - SchemeUserState - - ios_content_resizing.xcscheme_^#shared#^_ - - orderHint - 5 - - - - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/contents.xcworkspacedata b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index 9e9621febf6..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate deleted file mode 100644 index 5c7b1e3b26dc208f4957ef6b6279ece348dc42eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16055 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 Bool { + // Override point for customization after application launch. + return true + } + + // MARK: UISceneSession Lifecycle + + func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { + // Called when a new scene session is being created. + // Use this method to select a configuration to create the new scene with. + return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) + } + + func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set) { + // Called when the user discards a scene session. + // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. + // Use this method to release any resources that were specific to the discarded scenes, as they will not return. + } + + +} + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/Base.lproj/LaunchScreen.storyboard b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 00000000000..865e9329f37 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/Base.lproj/Main.storyboard b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/Base.lproj/Main.storyboard new file mode 100644 index 00000000000..25a763858ec --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/Base.lproj/Main.storyboard @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ContentView.swift b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ContentView.swift deleted file mode 100644 index 7cf9e8c48af..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ContentView.swift +++ /dev/null @@ -1,24 +0,0 @@ -// -// ContentView.swift -// ios_content_resizing -// -// Created by Louise Hsu on 12/2/25. -// - -import SwiftUI - -struct ContentView: View { - var body: some View { - VStack { - Image(systemName: "globe") - .imageScale(.large) - .foregroundStyle(.tint) - Text("Hello, world!") - } - .padding() - } -} - -#Preview { - ContentView() -} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/Info.plist b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/Info.plist new file mode 100644 index 00000000000..dd3c9afdae3 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/Info.plist @@ -0,0 +1,25 @@ + + + + + UIApplicationSceneManifest + + UIApplicationSupportsMultipleScenes + + UISceneConfigurations + + UIWindowSceneSessionRoleApplication + + + UISceneConfigurationName + Default Configuration + UISceneDelegateClassName + $(PRODUCT_MODULE_NAME).SceneDelegate + UISceneStoryboardFile + Main + + + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/SceneDelegate.swift b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/SceneDelegate.swift new file mode 100644 index 00000000000..a968d29350b --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/SceneDelegate.swift @@ -0,0 +1,52 @@ +// +// SceneDelegate.swift +// ios_content_resizing +// +// Created by Louise Hsu on 12/3/25. +// + +import UIKit + +class SceneDelegate: UIResponder, UIWindowSceneDelegate { + + var window: UIWindow? + + + func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { + // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. + // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. + // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). + guard let _ = (scene as? UIWindowScene) else { return } + } + + func sceneDidDisconnect(_ scene: UIScene) { + // Called as the scene is being released by the system. + // This occurs shortly after the scene enters the background, or when its session is discarded. + // Release any resources associated with this scene that can be re-created the next time the scene connects. + // The scene may re-connect later, as its session was not necessarily discarded (see `application:didDiscardSceneSessions` instead). + } + + func sceneDidBecomeActive(_ scene: UIScene) { + // Called when the scene has moved from an inactive state to an active state. + // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. + } + + func sceneWillResignActive(_ scene: UIScene) { + // Called when the scene will move from an active state to an inactive state. + // This may occur due to temporary interruptions (ex. an incoming phone call). + } + + func sceneWillEnterForeground(_ scene: UIScene) { + // Called as the scene transitions from the background to the foreground. + // Use this method to undo the changes made on entering the background. + } + + func sceneDidEnterBackground(_ scene: UIScene) { + // Called as the scene transitions from the foreground to the background. + // Use this method to save data, release shared resources, and store enough scene-specific state information + // to restore the scene back to its current state. + } + + +} + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift new file mode 100644 index 00000000000..9f684b50dcc --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift @@ -0,0 +1,19 @@ +// +// ViewController.swift +// ios_content_resizing +// +// Created by Louise Hsu on 12/3/25. +// + +import UIKit + +class ViewController: UIViewController { + + override func viewDidLoad() { + super.viewDidLoad() + // Do any additional setup after loading the view. + } + + +} + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ios_content_resizingApp.swift b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ios_content_resizingApp.swift deleted file mode 100644 index fb94ade22ff..00000000000 --- a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ios_content_resizingApp.swift +++ /dev/null @@ -1,17 +0,0 @@ -// -// ios_content_resizingApp.swift -// ios_content_resizing -// -// Created by Louise Hsu on 12/2/25. -// - -import SwiftUI - -@main -struct ios_content_resizingApp: App { - var body: some Scene { - WindowGroup { - ContentView() - } - } -} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizingTests/ios_content_resizingTests.swift b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizingTests/ios_content_resizingTests.swift index 25bda15deac..346452adbe5 100644 --- a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizingTests/ios_content_resizingTests.swift +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizingTests/ios_content_resizingTests.swift @@ -2,7 +2,7 @@ // ios_content_resizingTests.swift // ios_content_resizingTests // -// Created by Louise Hsu on 12/2/25. +// Created by Louise Hsu on 12/3/25. // import XCTest diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizingUITests/ios_content_resizingUITests.swift b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizingUITests/ios_content_resizingUITests.swift index 48541089255..2c0f47a7111 100644 --- a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizingUITests/ios_content_resizingUITests.swift +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizingUITests/ios_content_resizingUITests.swift @@ -2,7 +2,7 @@ // ios_content_resizingUITests.swift // ios_content_resizingUITests // -// Created by Louise Hsu on 12/2/25. +// Created by Louise Hsu on 12/3/25. // import XCTest diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizingUITests/ios_content_resizingUITestsLaunchTests.swift b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizingUITests/ios_content_resizingUITestsLaunchTests.swift index 7a0268aec83..dec91af1446 100644 --- a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizingUITests/ios_content_resizingUITestsLaunchTests.swift +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizingUITests/ios_content_resizingUITestsLaunchTests.swift @@ -2,7 +2,7 @@ // ios_content_resizingUITestsLaunchTests.swift // ios_content_resizingUITests // -// Created by Louise Hsu on 12/2/25. +// Created by Louise Hsu on 12/3/25. // import XCTest From 872d4912674892ae400a49a07ace9f176d756e49 Mon Sep 17 00:00:00 2001 From: louisehsu Date: Thu, 4 Dec 2025 00:22:32 -0800 Subject: [PATCH 3/8] works --- .../flutter_module/.metadata | 4 +- .../flutter_module/lib/main.dart | 65 +- .../flutter_module/pubspec.yaml | 2 +- .../ios_content_resizing/Podfile | 32 + .../Pods/Local Podspecs/Flutter.podspec.json | 20 + .../FlutterPluginRegistrant.podspec.json | 31 + .../ios_content_resizing/Pods/Manifest.lock | 22 + .../Pods/Pods.xcodeproj/project.pbxproj | 1276 +++++++++++++++++ .../xcschemes/Flutter.xcscheme | 58 + .../FlutterPluginRegistrant.xcscheme | 58 + ...izing-ios_content_resizingUITests.xcscheme | 58 + .../Pods-ios_content_resizing.xcscheme | 58 + .../Pods-ios_content_resizingTests.xcscheme | 58 + .../xcschemes/xcschememanagement.plist | 46 + .../Flutter/Flutter.debug.xcconfig | 12 + .../Flutter/Flutter.release.xcconfig | 12 + .../FlutterPluginRegistrant-Info.plist | 26 + .../FlutterPluginRegistrant-dummy.m | 5 + .../FlutterPluginRegistrant-prefix.pch | 12 + .../FlutterPluginRegistrant-umbrella.h | 17 + .../FlutterPluginRegistrant.debug.xcconfig | 13 + .../FlutterPluginRegistrant.modulemap | 6 + .../FlutterPluginRegistrant.release.xcconfig | 13 + ...ing-ios_content_resizingUITests-Info.plist | 26 + ..._resizingUITests-acknowledgements.markdown | 3 + ...ent_resizingUITests-acknowledgements.plist | 29 + ...sizing-ios_content_resizingUITests-dummy.m | 5 + ...ing-ios_content_resizingUITests-umbrella.h | 16 + ...ios_content_resizingUITests.debug.xcconfig | 14 + ...zing-ios_content_resizingUITests.modulemap | 6 + ...s_content_resizingUITests.release.xcconfig | 14 + .../Pods-ios_content_resizing-Info.plist | 26 + ...content_resizing-acknowledgements.markdown | 3 + ...os_content_resizing-acknowledgements.plist | 29 + .../Pods-ios_content_resizing-dummy.m | 5 + .../Pods-ios_content_resizing-umbrella.h | 16 + .../Pods-ios_content_resizing.debug.xcconfig | 14 + .../Pods-ios_content_resizing.modulemap | 6 + ...Pods-ios_content_resizing.release.xcconfig | 14 + .../Pods-ios_content_resizingTests-Info.plist | 26 + ...nt_resizingTests-acknowledgements.markdown | 3 + ...ntent_resizingTests-acknowledgements.plist | 29 + .../Pods-ios_content_resizingTests-dummy.m | 5 + .../Pods-ios_content_resizingTests-umbrella.h | 16 + ...s-ios_content_resizingTests.debug.xcconfig | 10 + .../Pods-ios_content_resizingTests.modulemap | 6 + ...ios_content_resizingTests.release.xcconfig | 10 + .../flutter_module/.gitignore | 41 + .../flutter_module/.metadata | 10 + .../flutter_module/README.md | 14 + .../flutter_module/analysis_options.yaml | 1 + .../flutter_module/lib/main.dart | 55 + .../flutter_module/pubspec.yaml | 35 + .../flutter_module/test/widget_test.dart | 47 + .../flutter_module/test_driver/example.dart | 13 + .../project.pbxproj | 163 ++- .../contents.xcworkspacedata | 7 + .../UserInterfaceState.xcuserstate | Bin 0 -> 25437 bytes .../xcschemes/xcschememanagement.plist | 14 + .../contents.xcworkspacedata | 10 + .../UserInterfaceState.xcuserstate | Bin 0 -> 24296 bytes .../ios_content_resizing/AppDelegate.swift | 42 +- .../ios_content_resizing/ViewController.swift | 54 +- 63 files changed, 2662 insertions(+), 79 deletions(-) create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Podfile create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/Flutter.podspec.json create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/FlutterPluginRegistrant.podspec.json create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Manifest.lock create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/project.pbxproj create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Flutter.xcscheme create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/FlutterPluginRegistrant.xcscheme create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing-ios_content_resizingUITests.xcscheme create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing.xcscheme create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizingTests.xcscheme create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.debug.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.release.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-dummy.m create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-umbrella.h create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.debug.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.release.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.modulemap create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-Info.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.markdown create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-dummy.m create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-umbrella.h create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.debug.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.modulemap create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.release.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-Info.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.markdown create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-dummy.m create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-umbrella.h create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.debug.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.modulemap create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.release.xcconfig create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/.gitignore create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/.metadata create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/README.md create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/analysis_options.yaml create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/lib/main.dart create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/pubspec.yaml create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/test/widget_test.dart create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/test_driver/example.dart create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/contents.xcworkspacedata create mode 100644 add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate diff --git a/add_to_app/ios_content_resizing/flutter_module/.metadata b/add_to_app/ios_content_resizing/flutter_module/.metadata index 25888c8e590..d6ca04bfa09 100644 --- a/add_to_app/ios_content_resizing/flutter_module/.metadata +++ b/add_to_app/ios_content_resizing/flutter_module/.metadata @@ -4,7 +4,7 @@ # This file should be version controlled and should not be manually edited. version: - revision: "8bb8135b3960454cf4cd8a36576e4b9b6d513a75" - channel: "[user-branch]" + revision: "27ccc2e66f3fd85ad388e3ba038a89251aef41b7" + channel: "master" project_type: module diff --git a/add_to_app/ios_content_resizing/flutter_module/lib/main.dart b/add_to_app/ios_content_resizing/flutter_module/lib/main.dart index 4b54bd39088..875600586ea 100644 --- a/add_to_app/ios_content_resizing/flutter_module/lib/main.dart +++ b/add_to_app/ios_content_resizing/flutter_module/lib/main.dart @@ -1,42 +1,55 @@ -// Copyright 2014 The Flutter Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - import 'package:flutter/material.dart'; -class ResizeApp extends StatefulWidget { - /// Creates the [ResizeApp]. - const ResizeApp({super.key}); +void main() { + runApp(const MyApp()); +} + +/// The main application widget for the Fruit Catalog. +class MyApp extends StatefulWidget { + /// Creates the [MyApp]. + const MyApp({super.key}); @override - State createState() => _ResizeAppState(); + State createState() => _MyAppState(); } -class _ResizeAppState extends State { - int _listSize = 1; - void _addToList() { +class _MyAppState extends State { + int _counter = 1; + void _incrementCounter() { setState(() { - _listSize++; + if (_counter > 40) { + _counter = 1; + } + _counter++; }); } @override Widget build(BuildContext context) { - return GestureDetector( - onTap: _addToList, // The tap anywhere logic - child: Center( - heightFactor: 1, - child: Directionality( - textDirection: TextDirection.ltr, - child: Column( - mainAxisSize: MainAxisSize.min, - children: [ - for (int i = 0; i < _listSize; i++) - Container(color: HSVColor.fromAHSV(1, (10.0 * i), 1, 1).toColor(), height: 100), - ], - ), + + return Center( + heightFactor: 1, + child: Directionality( + textDirection: TextDirection.ltr, + child: Column( + mainAxisAlignment: MainAxisAlignment.end, + children: [ + for (int i = 0; i < _counter; i++) + Text( + "Hello from Flutter $i", + style: TextStyle(color: Colors.pink), + ), + Padding( + padding: const EdgeInsets.fromLTRB(8.0, 50, 8.0, 8.0), + child: ElevatedButton( + onPressed: _incrementCounter, + child: Text("Add to list"), + ), + ), + + ], ), ), ); } -} \ No newline at end of file +} diff --git a/add_to_app/ios_content_resizing/flutter_module/pubspec.yaml b/add_to_app/ios_content_resizing/flutter_module/pubspec.yaml index 602106991f2..222719e2e2c 100644 --- a/add_to_app/ios_content_resizing/flutter_module/pubspec.yaml +++ b/add_to_app/ios_content_resizing/flutter_module/pubspec.yaml @@ -18,7 +18,7 @@ description: "A new Flutter module project." version: 1.0.0+1 environment: - sdk: ^3.11.0-173.0.dev + sdk: ^3.11.0-200.1.beta dependencies: flutter: diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Podfile b/add_to_app/ios_content_resizing/ios_content_resizing/Podfile new file mode 100644 index 00000000000..a17a105625a --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Podfile @@ -0,0 +1,32 @@ +# Uncomment the next line to define a global platform for your project +# platform :ios, '15.0' + +flutter_application_path = '../flutter_module' +load File.join(flutter_application_path, '.ios', 'Flutter', 'podhelper.rb') + + +target 'ios_content_resizing' do + # Comment the next line if you don't want to use dynamic frameworks + use_frameworks! + + # Pods for ios_content_resizing + + install_all_flutter_pods(flutter_application_path) + + target 'ios_content_resizingTests' do + inherit! :search_paths + # Pods for testing + end + + target 'ios_content_resizingUITests' do + # Pods for testing + end + +end + + +post_install do |installer| + flutter_post_install(installer) if defined?(flutter_post_install) +end + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/Flutter.podspec.json b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/Flutter.podspec.json new file mode 100644 index 00000000000..d67a7c76f8a --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/Flutter.podspec.json @@ -0,0 +1,20 @@ +{ + "name": "Flutter", + "version": "1.0.0", + "summary": "A UI toolkit for beautiful and fast apps.", + "homepage": "https://flutter.dev", + "license": { + "type": "BSD" + }, + "authors": { + "Flutter Dev Team": "flutter-dev@googlegroups.com" + }, + "source": { + "git": "https://github.com/flutter/engine", + "tag": "1.0.0" + }, + "platforms": { + "ios": "13.0" + }, + "vendored_frameworks": "path/to/nothing" +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/FlutterPluginRegistrant.podspec.json b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/FlutterPluginRegistrant.podspec.json new file mode 100644 index 00000000000..0000381624f --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Local Podspecs/FlutterPluginRegistrant.podspec.json @@ -0,0 +1,31 @@ +{ + "name": "FlutterPluginRegistrant", + "version": "0.0.1", + "summary": "Registers plugins with your Flutter app", + "description": "Depends on all your plugins, and provides a function to register them.", + "homepage": "https://flutter.dev", + "license": { + "type": "BSD" + }, + "authors": { + "Flutter Dev Team": "flutter-dev@googlegroups.com" + }, + "platforms": { + "ios": "13.0" + }, + "source_files": [ + "Classes", + "Classes/**/*.{h,m}" + ], + "source": { + "path": "." + }, + "public_header_files": "./Classes/**/*.h", + "static_framework": true, + "pod_target_xcconfig": { + "DEFINES_MODULE": "YES" + }, + "dependencies": { + "Flutter": [] + } +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Manifest.lock b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Manifest.lock new file mode 100644 index 00000000000..00cca2c02a7 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Manifest.lock @@ -0,0 +1,22 @@ +PODS: + - Flutter (1.0.0) + - FlutterPluginRegistrant (0.0.1): + - Flutter + +DEPENDENCIES: + - Flutter (from `../flutter_module/.ios/Flutter`) + - FlutterPluginRegistrant (from `../flutter_module/.ios/Flutter/FlutterPluginRegistrant`) + +EXTERNAL SOURCES: + Flutter: + :path: "../flutter_module/.ios/Flutter" + FlutterPluginRegistrant: + :path: "../flutter_module/.ios/Flutter/FlutterPluginRegistrant" + +SPEC CHECKSUMS: + Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467 + FlutterPluginRegistrant: 1bf2b93dcc6a731089dfe77f7a867be153c5008f + +PODFILE CHECKSUM: 8512f9d26835e64e2656751293a9f1e09c986b9d + +COCOAPODS: 1.16.2 diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/project.pbxproj b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/project.pbxproj new file mode 100644 index 00000000000..8c0ad06b70b --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/project.pbxproj @@ -0,0 +1,1276 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 77; + objects = { + +/* Begin PBXAggregateTarget section */ + 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */ = { + isa = PBXAggregateTarget; + buildConfigurationList = B26E11467D023FA6CDCE36F75198812F /* Build configuration list for PBXAggregateTarget "Flutter" */; + buildPhases = ( + ); + dependencies = ( + ); + name = Flutter; + }; +/* End PBXAggregateTarget section */ + +/* Begin PBXBuildFile section */ + 0B55D92CD2BAF933FE9D276939406D2C /* Pods-ios_content_resizingTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BA027B63B056E637B52DC48E997871D7 /* Pods-ios_content_resizingTests-dummy.m */; }; + 1C8B15B53492E657E17E19CD85AA35C0 /* Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 740A60CC3FE2346AA1FEB529CDCCD439 /* Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m */; }; + 203789EDA9BC17C4D2BB55B087DE25B8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; }; + 44F46818A4A76D2DC7F7FDADAB40E781 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CE7A004F669D9407A99593AB2AFD491 /* GeneratedPluginRegistrant.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; + 4E3441E90BAB7D083993C56E292FA52C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; }; + 4EE0C80B8A3C1107458579AFB4E41741 /* GeneratedPluginRegistrant.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E2D1DC1EC3C3E20E7FB2A0FF3EF4FCE /* GeneratedPluginRegistrant.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5A79D8994BC80675EE4A3F50CA6FEF4F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; }; + 8DFAE2FA34C28A0530B72F4B5D3F0623 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */; }; + ACC932BEF12584E78B91E93346CB63E2 /* FlutterPluginRegistrant-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC08935243F50B63245B117C34B45F3 /* FlutterPluginRegistrant-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B3889D09053A313F7A70C12C7D2B587C /* Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CC33182B193B07DB144E4A6C9E01AB79 /* Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B6AE8F15F2F866E8B52DC17217A64E71 /* Pods-ios_content_resizingTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 715630C735F4805B3A805CF50A9585F3 /* Pods-ios_content_resizingTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C31439779167DBFB0C2D6E1D2F3C673C /* Pods-ios_content_resizing-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 31098EA55F47B77CF6DE1E5F5057F68A /* Pods-ios_content_resizing-dummy.m */; }; + D065E4911A1DC5E493EEF7DB517B7214 /* FlutterPluginRegistrant-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2AAF585701677AEC4242C6CA033275B4 /* FlutterPluginRegistrant-dummy.m */; }; + D082208849F456F5518E6230A683096B /* Pods-ios_content_resizing-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F732C0211A045562F5E572138528CEB7 /* Pods-ios_content_resizing-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 0F89DBD5A9470B70308A8E62C10B4DC1 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; + remoteInfo = Flutter; + }; + 2C9791B40262CCA18DEA3CC7B7E1C667 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; + remoteInfo = Flutter; + }; + 30CCE7DF2B096D489C0337201A23FEAB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 83DAA8F43D74F8D51203DE23C7C3A3F5; + remoteInfo = FlutterPluginRegistrant; + }; + 78511F1C1FD5C9BCB89672C1D4CF0475 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CD1FE7E172044780FE5855099C6F9044; + remoteInfo = "Pods-ios_content_resizing"; + }; + 7948C6A42ED494BC018F1377A88CB2A6 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1EFDDC32A34D56D411E640A81DCD9E73; + remoteInfo = Flutter; + }; + FC692C20666B5D147B676FA8171775D9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 83DAA8F43D74F8D51203DE23C7C3A3F5; + remoteInfo = FlutterPluginRegistrant; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 1B2A7B60A690627987F4A32728B1C441 /* Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig"; sourceTree = ""; }; + 1CD0339A7DDFF44C520DC672454F4CE6 /* Pods-ios_content_resizing-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ios_content_resizing-acknowledgements.markdown"; sourceTree = ""; }; + 1D1E78871CC9F2B1032560E19646993A /* FlutterPluginRegistrant.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlutterPluginRegistrant.release.xcconfig; sourceTree = ""; }; + 1DB7953AE371D07C9F6F2864A55214EC /* Pods-ios_content_resizingTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ios_content_resizingTests.release.xcconfig"; sourceTree = ""; }; + 2AAF585701677AEC4242C6CA033275B4 /* FlutterPluginRegistrant-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FlutterPluginRegistrant-dummy.m"; sourceTree = ""; }; + 2ABF8D83AB2BF46EE272C48561AC5A9E /* Pods-ios_content_resizing.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ios_content_resizing.release.xcconfig"; sourceTree = ""; }; + 2CE7A004F669D9407A99593AB2AFD491 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = GeneratedPluginRegistrant.m; path = Classes/GeneratedPluginRegistrant.m; sourceTree = ""; }; + 31098EA55F47B77CF6DE1E5F5057F68A /* Pods-ios_content_resizing-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ios_content_resizing-dummy.m"; sourceTree = ""; }; + 384DDA2CB25005BD6479B5987C619DD4 /* 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; }; + 3E69713BE606BC991F1C594C917D928F /* Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown"; sourceTree = ""; }; + 4A162C470ECD31CC6B84AE1812A68341 /* Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist"; sourceTree = ""; }; + 4C51364643265E0627F1B989ABA783AC /* FlutterPluginRegistrant-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "FlutterPluginRegistrant-Info.plist"; sourceTree = ""; }; + 4F9125ED2B32F99F97EDBFBE15D053F3 /* Pods-ios_content_resizingTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ios_content_resizingTests.modulemap"; sourceTree = ""; }; + 550F9C4A71235EA01D58F70B41B5E3B9 /* Pods-ios_content_resizingTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ios_content_resizingTests-acknowledgements.plist"; sourceTree = ""; }; + 5793332C56B5C51F3F1A35E29F0F9B5C /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 5A9ED177DD476853C074763AE7635D34 /* FlutterPluginRegistrant.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlutterPluginRegistrant.debug.xcconfig; sourceTree = ""; }; + 5E6A76AF8DCCA1B2712836D571D61A68 /* Flutter.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = Flutter.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 6056F33DB108BE122160D138498C99F8 /* Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig"; sourceTree = ""; }; + 715630C735F4805B3A805CF50A9585F3 /* Pods-ios_content_resizingTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ios_content_resizingTests-umbrella.h"; sourceTree = ""; }; + 7190D3A2421CEF0390C6C11ED312EB1B /* Flutter.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flutter.release.xcconfig; sourceTree = ""; }; + 740A60CC3FE2346AA1FEB529CDCCD439 /* Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m"; sourceTree = ""; }; + 7E2D1DC1EC3C3E20E7FB2A0FF3EF4FCE /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GeneratedPluginRegistrant.h; path = Classes/GeneratedPluginRegistrant.h; sourceTree = ""; }; + 808964E349CF6A9C44A0909D0D6EEE8E /* Pods-ios_content_resizing.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ios_content_resizing.debug.xcconfig"; sourceTree = ""; }; + 80CEA24FF2084B8F57DFDFCC07F2064A /* Pods-ios_content_resizing-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ios_content_resizing-acknowledgements.plist"; sourceTree = ""; }; + 848315FC91D61DDA12BFE10AF7903DD9 /* Pods-ios_content_resizingTests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-ios_content_resizingTests"; path = Pods_ios_content_resizingTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 863E29E35DF7586D71558E0FB794DDBC /* Pods-ios_content_resizing.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ios_content_resizing.modulemap"; sourceTree = ""; }; + 89F5E495C830BAE2B7079C84C449077F /* FlutterPluginRegistrant-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlutterPluginRegistrant-prefix.pch"; sourceTree = ""; }; + 95DFED33AEBE20CFC59AC2D89DF45F13 /* Pods-ios_content_resizingTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-ios_content_resizingTests.debug.xcconfig"; sourceTree = ""; }; + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + B1B78154C420D3C3E3BB30C73471AF58 /* Pods-ios_content_resizing */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-ios_content_resizing"; path = Pods_ios_content_resizing.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + B6420A4EFE167F7BACB091FE384D2AFB /* FlutterPluginRegistrant.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = FlutterPluginRegistrant.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + BA027B63B056E637B52DC48E997871D7 /* Pods-ios_content_resizingTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-ios_content_resizingTests-dummy.m"; sourceTree = ""; }; + BB6445B421DA90DD6610EE80D499E3B4 /* Flutter.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flutter.debug.xcconfig; sourceTree = ""; }; + CC33182B193B07DB144E4A6C9E01AB79 /* Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h"; sourceTree = ""; }; + D8740969C1272A3D14589F37950232B7 /* Pods-ios_content_resizing-ios_content_resizingUITests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-ios_content_resizing-ios_content_resizingUITests.modulemap"; sourceTree = ""; }; + D8DBE60F83CC9855059B3B56F3C86603 /* FlutterPluginRegistrant.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FlutterPluginRegistrant.modulemap; sourceTree = ""; }; + DAC271DF29EEC36C2D6DF4B29D00059D /* Pods-ios_content_resizing-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ios_content_resizing-Info.plist"; sourceTree = ""; }; + DCC08935243F50B63245B117C34B45F3 /* FlutterPluginRegistrant-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlutterPluginRegistrant-umbrella.h"; sourceTree = ""; }; + DEE6C5FCB90FB050631DE9252A0FF907 /* Pods-ios_content_resizing-ios_content_resizingUITests */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-ios_content_resizing-ios_content_resizingUITests"; path = Pods_ios_content_resizing_ios_content_resizingUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + DF7C6EBB9161EEF650EC12B4BB67E628 /* FlutterPluginRegistrant */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FlutterPluginRegistrant; path = FlutterPluginRegistrant.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + EB01D38E9B9397013BDA6F2ECD3C116A /* Pods-ios_content_resizingTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-ios_content_resizingTests-acknowledgements.markdown"; sourceTree = ""; }; + EC58DCEFE8DA0A2BC696E7AD13C037B4 /* Pods-ios_content_resizingTests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ios_content_resizingTests-Info.plist"; sourceTree = ""; }; + F0FC688EB853C97544D47655599785D8 /* Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist"; sourceTree = ""; }; + F732C0211A045562F5E572138528CEB7 /* Pods-ios_content_resizing-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-ios_content_resizing-umbrella.h"; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 3C14517AA188AA0F4644710BDF6F2E0B /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 203789EDA9BC17C4D2BB55B087DE25B8 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 830D63870BCE1E7548BFBF07AF254BC6 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 8DFAE2FA34C28A0530B72F4B5D3F0623 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C85264A7AE5B8D2D6D41BECD6C886F30 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 5A79D8994BC80675EE4A3F50CA6FEF4F /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DE8E25759FD7427C882BA4EB71D22E80 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 4E3441E90BAB7D083993C56E292FA52C /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 17E661ACE046111F65EB8BC53399F9D5 /* Targets Support Files */ = { + isa = PBXGroup; + children = ( + C8D1B05D3D5016D84F1E8CFC2829BA53 /* Pods-ios_content_resizing */, + AEE7DDCA547716D81E9370F489774C49 /* Pods-ios_content_resizing-ios_content_resizingUITests */, + D89266006DC36009E817D04F8788D146 /* Pods-ios_content_resizingTests */, + ); + name = "Targets Support Files"; + sourceTree = ""; + }; + 2479EE86B1BDE660ABC7156E54E5A81C /* Support Files */ = { + isa = PBXGroup; + children = ( + D8DBE60F83CC9855059B3B56F3C86603 /* FlutterPluginRegistrant.modulemap */, + 2AAF585701677AEC4242C6CA033275B4 /* FlutterPluginRegistrant-dummy.m */, + 4C51364643265E0627F1B989ABA783AC /* FlutterPluginRegistrant-Info.plist */, + 89F5E495C830BAE2B7079C84C449077F /* FlutterPluginRegistrant-prefix.pch */, + DCC08935243F50B63245B117C34B45F3 /* FlutterPluginRegistrant-umbrella.h */, + 5A9ED177DD476853C074763AE7635D34 /* FlutterPluginRegistrant.debug.xcconfig */, + 1D1E78871CC9F2B1032560E19646993A /* FlutterPluginRegistrant.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../../ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant"; + sourceTree = ""; + }; + 6F7106898BE13FDCFDCF877524DD896B /* Products */ = { + isa = PBXGroup; + children = ( + DF7C6EBB9161EEF650EC12B4BB67E628 /* FlutterPluginRegistrant */, + B1B78154C420D3C3E3BB30C73471AF58 /* Pods-ios_content_resizing */, + DEE6C5FCB90FB050631DE9252A0FF907 /* Pods-ios_content_resizing-ios_content_resizingUITests */, + 848315FC91D61DDA12BFE10AF7903DD9 /* Pods-ios_content_resizingTests */, + ); + name = Products; + sourceTree = ""; + }; + A95135DC3DC55EDD6E2AE851A351550A /* Development Pods */ = { + isa = PBXGroup; + children = ( + C4828404A16E02F8503F54C1BEFB50AD /* Flutter */, + E236746D72969B68FE0982CAC2FA077D /* FlutterPluginRegistrant */, + ); + name = "Development Pods"; + sourceTree = ""; + }; + AEE7DDCA547716D81E9370F489774C49 /* Pods-ios_content_resizing-ios_content_resizingUITests */ = { + isa = PBXGroup; + children = ( + D8740969C1272A3D14589F37950232B7 /* Pods-ios_content_resizing-ios_content_resizingUITests.modulemap */, + 3E69713BE606BC991F1C594C917D928F /* Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown */, + 4A162C470ECD31CC6B84AE1812A68341 /* Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist */, + 740A60CC3FE2346AA1FEB529CDCCD439 /* Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m */, + F0FC688EB853C97544D47655599785D8 /* Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist */, + CC33182B193B07DB144E4A6C9E01AB79 /* Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h */, + 1B2A7B60A690627987F4A32728B1C441 /* Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig */, + 6056F33DB108BE122160D138498C99F8 /* Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig */, + ); + name = "Pods-ios_content_resizing-ios_content_resizingUITests"; + path = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests"; + sourceTree = ""; + }; + C4828404A16E02F8503F54C1BEFB50AD /* Flutter */ = { + isa = PBXGroup; + children = ( + C82424DE68A1A19BFC1B640369F4BC62 /* Pod */, + E30233976B4062D1B8D8CBF9AB58FDEF /* Support Files */, + ); + name = Flutter; + path = ../../flutter_module/.ios/Flutter; + sourceTree = ""; + }; + C82424DE68A1A19BFC1B640369F4BC62 /* Pod */ = { + isa = PBXGroup; + children = ( + 5E6A76AF8DCCA1B2712836D571D61A68 /* Flutter.podspec */, + 5793332C56B5C51F3F1A35E29F0F9B5C /* README.md */, + ); + name = Pod; + sourceTree = ""; + }; + C8D1B05D3D5016D84F1E8CFC2829BA53 /* Pods-ios_content_resizing */ = { + isa = PBXGroup; + children = ( + 863E29E35DF7586D71558E0FB794DDBC /* Pods-ios_content_resizing.modulemap */, + 1CD0339A7DDFF44C520DC672454F4CE6 /* Pods-ios_content_resizing-acknowledgements.markdown */, + 80CEA24FF2084B8F57DFDFCC07F2064A /* Pods-ios_content_resizing-acknowledgements.plist */, + 31098EA55F47B77CF6DE1E5F5057F68A /* Pods-ios_content_resizing-dummy.m */, + DAC271DF29EEC36C2D6DF4B29D00059D /* Pods-ios_content_resizing-Info.plist */, + F732C0211A045562F5E572138528CEB7 /* Pods-ios_content_resizing-umbrella.h */, + 808964E349CF6A9C44A0909D0D6EEE8E /* Pods-ios_content_resizing.debug.xcconfig */, + 2ABF8D83AB2BF46EE272C48561AC5A9E /* Pods-ios_content_resizing.release.xcconfig */, + ); + name = "Pods-ios_content_resizing"; + path = "Target Support Files/Pods-ios_content_resizing"; + sourceTree = ""; + }; + CAF78B8E3930ADF8B64CF30FC13AA025 /* Pod */ = { + isa = PBXGroup; + children = ( + B6420A4EFE167F7BACB091FE384D2AFB /* FlutterPluginRegistrant.podspec */, + ); + name = Pod; + sourceTree = ""; + }; + CF1408CF629C7361332E53B88F7BD30C = { + isa = PBXGroup; + children = ( + 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, + A95135DC3DC55EDD6E2AE851A351550A /* Development Pods */, + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, + 6F7106898BE13FDCFDCF877524DD896B /* Products */, + 17E661ACE046111F65EB8BC53399F9D5 /* Targets Support Files */, + ); + sourceTree = ""; + }; + D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { + isa = PBXGroup; + children = ( + E4801F62A6B08CD9B5410329F1A18FDE /* iOS */, + ); + name = Frameworks; + sourceTree = ""; + }; + D89266006DC36009E817D04F8788D146 /* Pods-ios_content_resizingTests */ = { + isa = PBXGroup; + children = ( + 4F9125ED2B32F99F97EDBFBE15D053F3 /* Pods-ios_content_resizingTests.modulemap */, + EB01D38E9B9397013BDA6F2ECD3C116A /* Pods-ios_content_resizingTests-acknowledgements.markdown */, + 550F9C4A71235EA01D58F70B41B5E3B9 /* Pods-ios_content_resizingTests-acknowledgements.plist */, + BA027B63B056E637B52DC48E997871D7 /* Pods-ios_content_resizingTests-dummy.m */, + EC58DCEFE8DA0A2BC696E7AD13C037B4 /* Pods-ios_content_resizingTests-Info.plist */, + 715630C735F4805B3A805CF50A9585F3 /* Pods-ios_content_resizingTests-umbrella.h */, + 95DFED33AEBE20CFC59AC2D89DF45F13 /* Pods-ios_content_resizingTests.debug.xcconfig */, + 1DB7953AE371D07C9F6F2864A55214EC /* Pods-ios_content_resizingTests.release.xcconfig */, + ); + name = "Pods-ios_content_resizingTests"; + path = "Target Support Files/Pods-ios_content_resizingTests"; + sourceTree = ""; + }; + E236746D72969B68FE0982CAC2FA077D /* FlutterPluginRegistrant */ = { + isa = PBXGroup; + children = ( + 7E2D1DC1EC3C3E20E7FB2A0FF3EF4FCE /* GeneratedPluginRegistrant.h */, + 2CE7A004F669D9407A99593AB2AFD491 /* GeneratedPluginRegistrant.m */, + CAF78B8E3930ADF8B64CF30FC13AA025 /* Pod */, + 2479EE86B1BDE660ABC7156E54E5A81C /* Support Files */, + ); + name = FlutterPluginRegistrant; + path = ../../flutter_module/.ios/Flutter/FlutterPluginRegistrant; + sourceTree = ""; + }; + E30233976B4062D1B8D8CBF9AB58FDEF /* Support Files */ = { + isa = PBXGroup; + children = ( + BB6445B421DA90DD6610EE80D499E3B4 /* Flutter.debug.xcconfig */, + 7190D3A2421CEF0390C6C11ED312EB1B /* Flutter.release.xcconfig */, + ); + name = "Support Files"; + path = "../../../ios_content_resizing/Pods/Target Support Files/Flutter"; + sourceTree = ""; + }; + E4801F62A6B08CD9B5410329F1A18FDE /* iOS */ = { + isa = PBXGroup; + children = ( + 384DDA2CB25005BD6479B5987C619DD4 /* Foundation.framework */, + ); + name = iOS; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 0FD43C857895FACDAB7AA8C0FF502499 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + B6AE8F15F2F866E8B52DC17217A64E71 /* Pods-ios_content_resizingTests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 32F610179E9D72EE3A16EB3843931EE5 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ACC932BEF12584E78B91E93346CB63E2 /* FlutterPluginRegistrant-umbrella.h in Headers */, + 4EE0C80B8A3C1107458579AFB4E41741 /* GeneratedPluginRegistrant.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 51C7632BD4576CB1075F90A036533FE9 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + B3889D09053A313F7A70C12C7D2B587C /* Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B2B5AE61D5B2BAC16D2CCA2B5E4F8DEE /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + D082208849F456F5518E6230A683096B /* Pods-ios_content_resizing-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 81D87E4496B08116037E5861D2F209C8 /* Pods-ios_content_resizing-ios_content_resizingUITests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 6B2F3D8F2303282D58B664BE8F2D4EA8 /* Build configuration list for PBXNativeTarget "Pods-ios_content_resizing-ios_content_resizingUITests" */; + buildPhases = ( + 51C7632BD4576CB1075F90A036533FE9 /* Headers */, + 6558434F3ED48ADA5D330EDA3E26529C /* Sources */, + DE8E25759FD7427C882BA4EB71D22E80 /* Frameworks */, + A566FEC23C5B98D2E72A7B131DA712B0 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + EA4B8DFAE72877B05FABD41CFF09E680 /* PBXTargetDependency */, + EDA8F941BE29B16B5B697A2DED6651F5 /* PBXTargetDependency */, + ); + name = "Pods-ios_content_resizing-ios_content_resizingUITests"; + productName = Pods_ios_content_resizing_ios_content_resizingUITests; + productReference = DEE6C5FCB90FB050631DE9252A0FF907 /* Pods-ios_content_resizing-ios_content_resizingUITests */; + productType = "com.apple.product-type.framework"; + }; + 83DAA8F43D74F8D51203DE23C7C3A3F5 /* FlutterPluginRegistrant */ = { + isa = PBXNativeTarget; + buildConfigurationList = C9C0BE58A278116122B314654A0C4A57 /* Build configuration list for PBXNativeTarget "FlutterPluginRegistrant" */; + buildPhases = ( + 32F610179E9D72EE3A16EB3843931EE5 /* Headers */, + EE402EE2699B3EFF89477200DF3CE148 /* Sources */, + C85264A7AE5B8D2D6D41BECD6C886F30 /* Frameworks */, + 41C85A835F7246370834586E809DA47B /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 3796C178DFE7E4BF73050579F753935D /* PBXTargetDependency */, + ); + name = FlutterPluginRegistrant; + productName = FlutterPluginRegistrant; + productReference = DF7C6EBB9161EEF650EC12B4BB67E628 /* FlutterPluginRegistrant */; + productType = "com.apple.product-type.framework"; + }; + CD1FE7E172044780FE5855099C6F9044 /* Pods-ios_content_resizing */ = { + isa = PBXNativeTarget; + buildConfigurationList = F446D705FA553D5DDA096E4FA9C58C9A /* Build configuration list for PBXNativeTarget "Pods-ios_content_resizing" */; + buildPhases = ( + B2B5AE61D5B2BAC16D2CCA2B5E4F8DEE /* Headers */, + D8AB908807A6536C9CCC151F2A5AC435 /* Sources */, + 3C14517AA188AA0F4644710BDF6F2E0B /* Frameworks */, + 2C5BDD3A05AF10694FB31F41E7136D9A /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 28E6E08F0100197B5A7C30DEE65648FD /* PBXTargetDependency */, + 1DE7FB42D09CCE770F342A633F255B1E /* PBXTargetDependency */, + ); + name = "Pods-ios_content_resizing"; + productName = Pods_ios_content_resizing; + productReference = B1B78154C420D3C3E3BB30C73471AF58 /* Pods-ios_content_resizing */; + productType = "com.apple.product-type.framework"; + }; + E4EA532EB8D753070F4018E9EB3C09A2 /* Pods-ios_content_resizingTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 9C81C4875C3CAE4CE50BCD8564492388 /* Build configuration list for PBXNativeTarget "Pods-ios_content_resizingTests" */; + buildPhases = ( + 0FD43C857895FACDAB7AA8C0FF502499 /* Headers */, + 5CEB1B2249C5D86647F8F2BEFA578F1C /* Sources */, + 830D63870BCE1E7548BFBF07AF254BC6 /* Frameworks */, + AF5798AF7A08861DE74D1251C1BE5D0C /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 97EE237CECB95E15153F7C32A348F503 /* PBXTargetDependency */, + ); + name = "Pods-ios_content_resizingTests"; + productName = Pods_ios_content_resizingTests; + productReference = 848315FC91D61DDA12BFE10AF7903DD9 /* Pods-ios_content_resizingTests */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + BFDFE7DC352907FC980B868725387E98 /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 1600; + LastUpgradeCheck = 1600; + }; + buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; + compatibilityVersion = "Xcode 16.0"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + Base, + en, + ); + mainGroup = CF1408CF629C7361332E53B88F7BD30C; + minimizedProjectReferenceProxies = 0; + preferredProjectObjectVersion = 77; + productRefGroup = 6F7106898BE13FDCFDCF877524DD896B /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */, + 83DAA8F43D74F8D51203DE23C7C3A3F5 /* FlutterPluginRegistrant */, + CD1FE7E172044780FE5855099C6F9044 /* Pods-ios_content_resizing */, + 81D87E4496B08116037E5861D2F209C8 /* Pods-ios_content_resizing-ios_content_resizingUITests */, + E4EA532EB8D753070F4018E9EB3C09A2 /* Pods-ios_content_resizingTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 2C5BDD3A05AF10694FB31F41E7136D9A /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 41C85A835F7246370834586E809DA47B /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A566FEC23C5B98D2E72A7B131DA712B0 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AF5798AF7A08861DE74D1251C1BE5D0C /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 5CEB1B2249C5D86647F8F2BEFA578F1C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0B55D92CD2BAF933FE9D276939406D2C /* Pods-ios_content_resizingTests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 6558434F3ED48ADA5D330EDA3E26529C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 1C8B15B53492E657E17E19CD85AA35C0 /* Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D8AB908807A6536C9CCC151F2A5AC435 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + C31439779167DBFB0C2D6E1D2F3C673C /* Pods-ios_content_resizing-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + EE402EE2699B3EFF89477200DF3CE148 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D065E4911A1DC5E493EEF7DB517B7214 /* FlutterPluginRegistrant-dummy.m in Sources */, + 44F46818A4A76D2DC7F7FDADAB40E781 /* GeneratedPluginRegistrant.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 1DE7FB42D09CCE770F342A633F255B1E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FlutterPluginRegistrant; + target = 83DAA8F43D74F8D51203DE23C7C3A3F5 /* FlutterPluginRegistrant */; + targetProxy = 30CCE7DF2B096D489C0337201A23FEAB /* PBXContainerItemProxy */; + }; + 28E6E08F0100197B5A7C30DEE65648FD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Flutter; + target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; + targetProxy = 7948C6A42ED494BC018F1377A88CB2A6 /* PBXContainerItemProxy */; + }; + 3796C178DFE7E4BF73050579F753935D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Flutter; + target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; + targetProxy = 0F89DBD5A9470B70308A8E62C10B4DC1 /* PBXContainerItemProxy */; + }; + 97EE237CECB95E15153F7C32A348F503 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-ios_content_resizing"; + target = CD1FE7E172044780FE5855099C6F9044 /* Pods-ios_content_resizing */; + targetProxy = 78511F1C1FD5C9BCB89672C1D4CF0475 /* PBXContainerItemProxy */; + }; + EA4B8DFAE72877B05FABD41CFF09E680 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Flutter; + target = 1EFDDC32A34D56D411E640A81DCD9E73 /* Flutter */; + targetProxy = 2C9791B40262CCA18DEA3CC7B7E1C667 /* PBXContainerItemProxy */; + }; + EDA8F941BE29B16B5B697A2DED6651F5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = FlutterPluginRegistrant; + target = 83DAA8F43D74F8D51203DE23C7C3A3F5 /* FlutterPluginRegistrant */; + targetProxy = FC692C20666B5D147B676FA8171775D9 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 040F80BD2D4B620F91B295DA27374820 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 95DFED33AEBE20CFC59AC2D89DF45F13 /* Pods-ios_content_resizingTests.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + INFOPLIST_FILE = "Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.modulemap"; + ONLY_ACTIVE_ARCH = NO; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 1602B4EBAE0C64817990D65F3711E6C6 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6056F33DB108BE122160D138498C99F8 /* Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + INFOPLIST_FILE = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.modulemap"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 7CA996BECDFC2548E01D9AF66C171E89 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1B2A7B60A690627987F4A32728B1C441 /* Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + INFOPLIST_FILE = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.modulemap"; + ONLY_ACTIVE_ARCH = NO; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + A3CA710B05DD0D38FF0C61760F3B99FB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_DEBUG=1", + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Debug; + }; + B0AD22997967310A1650F12017E3C2C7 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1D1E78871CC9F2B1032560E19646993A /* FlutterPluginRegistrant.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + GCC_PREFIX_HEADER = "Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + PRODUCT_MODULE_NAME = FlutterPluginRegistrant; + PRODUCT_NAME = FlutterPluginRegistrant; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + CB3A369004330A68D6CB0D804AE27792 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7190D3A2421CEF0390C6C11ED312EB1B /* Flutter.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + D8D83461AC915BEDCB4A478E1E489628 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = BB6445B421DA90DD6610EE80D499E3B4 /* Flutter.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_WEAK = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + ONLY_ACTIVE_ARCH = NO; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + DFFBA46802CC7CCEBC5643E3F5B22C07 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5A9ED177DD476853C074763AE7635D34 /* FlutterPluginRegistrant.debug.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + GCC_PREFIX_HEADER = "Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap"; + ONLY_ACTIVE_ARCH = NO; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + PRODUCT_MODULE_NAME = FlutterPluginRegistrant; + PRODUCT_NAME = FlutterPluginRegistrant; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + E2364721D6682F8B9E80045232309A09 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_VERSION = 5.0; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Release; + }; + F955CE243E6CED064AA3566C5AB2B4C0 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2ABF8D83AB2BF46EE272C48561AC5A9E /* Pods-ios_content_resizing.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + INFOPLIST_FILE = "Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.modulemap"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + FCDBA9CEDD692CC12B081D6F97592E39 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1DB7953AE371D07C9F6F2864A55214EC /* Pods-ios_content_resizingTests.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios-release/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + INFOPLIST_FILE = "Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.modulemap"; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + FD819B07C2E487E567F75DEA02AA0254 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 808964E349CF6A9C44A0909D0D6EEE8E /* Pods-ios_content_resizing.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + "EXCLUDED_ARCHS[sdk=iphoneos*]" = "$(inherited) armv7"; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "$(inherited) i386"; + "FRAMEWORK_SEARCH_PATHS[sdk=iphoneos*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64\"", + "$(inherited)", + ); + "FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator*]" = ( + "\"/Users/louisehsu/Development/flutter/bin/cache/artifacts/engine/ios/Flutter.xcframework/ios-arm64_x86_64-simulator\"", + "$(inherited)", + ); + INFOPLIST_FILE = "Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 18.5; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.modulemap"; + ONLY_ACTIVE_ARCH = NO; + OTHER_LDFLAGS = ( + "$(inherited)", + "-framework", + Flutter, + ); + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + "VALID_ARCHS[sdk=iphonesimulator*]" = "$(ARCHS_STANDARD)"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A3CA710B05DD0D38FF0C61760F3B99FB /* Debug */, + E2364721D6682F8B9E80045232309A09 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 6B2F3D8F2303282D58B664BE8F2D4EA8 /* Build configuration list for PBXNativeTarget "Pods-ios_content_resizing-ios_content_resizingUITests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 7CA996BECDFC2548E01D9AF66C171E89 /* Debug */, + 1602B4EBAE0C64817990D65F3711E6C6 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 9C81C4875C3CAE4CE50BCD8564492388 /* Build configuration list for PBXNativeTarget "Pods-ios_content_resizingTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 040F80BD2D4B620F91B295DA27374820 /* Debug */, + FCDBA9CEDD692CC12B081D6F97592E39 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + B26E11467D023FA6CDCE36F75198812F /* Build configuration list for PBXAggregateTarget "Flutter" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D8D83461AC915BEDCB4A478E1E489628 /* Debug */, + CB3A369004330A68D6CB0D804AE27792 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + C9C0BE58A278116122B314654A0C4A57 /* Build configuration list for PBXNativeTarget "FlutterPluginRegistrant" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DFFBA46802CC7CCEBC5643E3F5B22C07 /* Debug */, + B0AD22997967310A1650F12017E3C2C7 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + F446D705FA553D5DDA096E4FA9C58C9A /* Build configuration list for PBXNativeTarget "Pods-ios_content_resizing" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + FD819B07C2E487E567F75DEA02AA0254 /* Debug */, + F955CE243E6CED064AA3566C5AB2B4C0 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Flutter.xcscheme b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Flutter.xcscheme new file mode 100644 index 00000000000..efb76cca4d8 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Flutter.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/FlutterPluginRegistrant.xcscheme b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/FlutterPluginRegistrant.xcscheme new file mode 100644 index 00000000000..629d12c5c15 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/FlutterPluginRegistrant.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing-ios_content_resizingUITests.xcscheme b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing-ios_content_resizingUITests.xcscheme new file mode 100644 index 00000000000..f6460fe27f5 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing-ios_content_resizingUITests.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing.xcscheme b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing.xcscheme new file mode 100644 index 00000000000..ff91729c9f6 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizing.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizingTests.xcscheme b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizingTests.xcscheme new file mode 100644 index 00000000000..c080fe82e0b --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/Pods-ios_content_resizingTests.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 00000000000..b602389ceef --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Pods.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,46 @@ + + + + + SchemeUserState + + Flutter.xcscheme + + isShown + + orderHint + 0 + + FlutterPluginRegistrant.xcscheme + + isShown + + orderHint + 1 + + Pods-ios_content_resizing-ios_content_resizingUITests.xcscheme + + isShown + + orderHint + 3 + + Pods-ios_content_resizing.xcscheme + + isShown + + orderHint + 2 + + Pods-ios_content_resizingTests.xcscheme + + isShown + + orderHint + 4 + + + SuppressBuildableAutocreation + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.debug.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.debug.xcconfig new file mode 100644 index 00000000000..17a86f0b2e7 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.debug.xcconfig @@ -0,0 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Flutter +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../flutter_module/.ios/Flutter +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.release.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.release.xcconfig new file mode 100644 index 00000000000..17a86f0b2e7 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Flutter/Flutter.release.xcconfig @@ -0,0 +1,12 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Flutter +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../flutter_module/.ios/Flutter +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist new file mode 100644 index 00000000000..8928a8d90b7 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 0.0.1 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-dummy.m b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-dummy.m new file mode 100644 index 00000000000..e6bdef1cfa3 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_FlutterPluginRegistrant : NSObject +@end +@implementation PodsDummy_FlutterPluginRegistrant +@end diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch new file mode 100644 index 00000000000..beb2a244183 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-umbrella.h b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-umbrella.h new file mode 100644 index 00000000000..43d71fa4ac2 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant-umbrella.h @@ -0,0 +1,17 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "GeneratedPluginRegistrant.h" + +FOUNDATION_EXPORT double FlutterPluginRegistrantVersionNumber; +FOUNDATION_EXPORT const unsigned char FlutterPluginRegistrantVersionString[]; + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.debug.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.debug.xcconfig new file mode 100644 index 00000000000..ce7bdbb7b0b --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.debug.xcconfig @@ -0,0 +1,13 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant +DEFINES_MODULE = YES +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../flutter_module/.ios/Flutter/FlutterPluginRegistrant +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap new file mode 100644 index 00000000000..44b5ef2d0d5 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.modulemap @@ -0,0 +1,6 @@ +framework module FlutterPluginRegistrant { + umbrella header "FlutterPluginRegistrant-umbrella.h" + + export * + module * { export * } +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.release.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.release.xcconfig new file mode 100644 index 00000000000..ce7bdbb7b0b --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/FlutterPluginRegistrant/FlutterPluginRegistrant.release.xcconfig @@ -0,0 +1,13 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant +DEFINES_MODULE = YES +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../flutter_module/.ios/Flutter/FlutterPluginRegistrant +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist new file mode 100644 index 00000000000..19cf209d21e --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown new file mode 100644 index 00000000000..102af753851 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.markdown @@ -0,0 +1,3 @@ +# Acknowledgements +This application makes use of the following third party libraries: +Generated by CocoaPods - https://cocoapods.org diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist new file mode 100644 index 00000000000..7acbad1eabb --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-acknowledgements.plist @@ -0,0 +1,29 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m new file mode 100644 index 00000000000..365aa010f9d --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_ios_content_resizing_ios_content_resizingUITests : NSObject +@end +@implementation PodsDummy_Pods_ios_content_resizing_ios_content_resizingUITests +@end diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h new file mode 100644 index 00000000000..0746477c77a --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_ios_content_resizing_ios_content_resizingUITestsVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_ios_content_resizing_ios_content_resizingUITestsVersionString[]; + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig new file mode 100644 index 00000000000..a2c851c8141 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig @@ -0,0 +1,14 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +OTHER_LDFLAGS = $(inherited) -ObjC -framework "FlutterPluginRegistrant" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/Flutter" "-F${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.modulemap b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.modulemap new file mode 100644 index 00000000000..01cab2eaaba --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.modulemap @@ -0,0 +1,6 @@ +framework module Pods_ios_content_resizing_ios_content_resizingUITests { + umbrella header "Pods-ios_content_resizing-ios_content_resizingUITests-umbrella.h" + + export * + module * { export * } +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig new file mode 100644 index 00000000000..a2c851c8141 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig @@ -0,0 +1,14 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +OTHER_LDFLAGS = $(inherited) -ObjC -framework "FlutterPluginRegistrant" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/Flutter" "-F${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-Info.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-Info.plist new file mode 100644 index 00000000000..19cf209d21e --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.markdown b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.markdown new file mode 100644 index 00000000000..102af753851 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.markdown @@ -0,0 +1,3 @@ +# Acknowledgements +This application makes use of the following third party libraries: +Generated by CocoaPods - https://cocoapods.org diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.plist new file mode 100644 index 00000000000..7acbad1eabb --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-acknowledgements.plist @@ -0,0 +1,29 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-dummy.m b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-dummy.m new file mode 100644 index 00000000000..16c489cde6d --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_ios_content_resizing : NSObject +@end +@implementation PodsDummy_Pods_ios_content_resizing +@end diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-umbrella.h b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-umbrella.h new file mode 100644 index 00000000000..d3e7c43d4f5 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_ios_content_resizingVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_ios_content_resizingVersionString[]; + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.debug.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.debug.xcconfig new file mode 100644 index 00000000000..a2c851c8141 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.debug.xcconfig @@ -0,0 +1,14 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +OTHER_LDFLAGS = $(inherited) -ObjC -framework "FlutterPluginRegistrant" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/Flutter" "-F${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.modulemap b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.modulemap new file mode 100644 index 00000000000..c1ff0898cbe --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.modulemap @@ -0,0 +1,6 @@ +framework module Pods_ios_content_resizing { + umbrella header "Pods-ios_content_resizing-umbrella.h" + + export * + module * { export * } +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.release.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.release.xcconfig new file mode 100644 index 00000000000..a2c851c8141 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.release.xcconfig @@ -0,0 +1,14 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -isystem "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" -iframework "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +OTHER_LDFLAGS = $(inherited) -ObjC -framework "FlutterPluginRegistrant" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/Flutter" "-F${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-Info.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-Info.plist new file mode 100644 index 00000000000..19cf209d21e --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.markdown b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.markdown new file mode 100644 index 00000000000..102af753851 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.markdown @@ -0,0 +1,3 @@ +# Acknowledgements +This application makes use of the following third party libraries: +Generated by CocoaPods - https://cocoapods.org diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.plist b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.plist new file mode 100644 index 00000000000..7acbad1eabb --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-acknowledgements.plist @@ -0,0 +1,29 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-dummy.m b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-dummy.m new file mode 100644 index 00000000000..9e93bedc36a --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_ios_content_resizingTests : NSObject +@end +@implementation PodsDummy_Pods_ios_content_resizingTests +@end diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-umbrella.h b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-umbrella.h new file mode 100644 index 00000000000..793d3fca3c2 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_ios_content_resizingTestsVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_ios_content_resizingTestsVersionString[]; + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.debug.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.debug.xcconfig new file mode 100644 index 00000000000..80e5b31ec2f --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.debug.xcconfig @@ -0,0 +1,10 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.modulemap b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.modulemap new file mode 100644 index 00000000000..a09c5bac370 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.modulemap @@ -0,0 +1,6 @@ +framework module Pods_ios_content_resizingTests { + umbrella header "Pods-ios_content_resizingTests-umbrella.h" + + export * + module * { export * } +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.release.xcconfig b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.release.xcconfig new file mode 100644 index 00000000000..80e5b31ec2f --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/Pods/Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.release.xcconfig @@ -0,0 +1,10 @@ +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/FlutterPluginRegistrant/FlutterPluginRegistrant.framework/Headers" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/.gitignore b/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/.gitignore new file mode 100644 index 00000000000..cdecf14aaa3 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/.gitignore @@ -0,0 +1,41 @@ +.DS_Store +.dart_tool/ + +.packages +.pub/ + +.idea/ +.vagrant/ +.sconsign.dblite +.svn/ + +*.swp +profile + +DerivedData/ + +.generated/ + +*.pbxuser +*.mode1v3 +*.mode2v3 +*.perspectivev3 + +!default.pbxuser +!default.mode1v3 +!default.mode2v3 +!default.perspectivev3 + +xcuserdata + +*.moved-aside + +*.pyc +*sync/ +Icon? +.tags* + +build/ +.android/ +.ios/ +.flutter-plugins diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/.metadata b/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/.metadata new file mode 100644 index 00000000000..194fb3cc0a2 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/.metadata @@ -0,0 +1,10 @@ +# This file tracks properties of this Flutter project. +# Used by Flutter tool to assess capabilities and perform upgrades etc. +# +# This file should be version controlled and should not be manually edited. + +version: + revision: 532a8fed41a4f6595965f02f3edf9666ba5ebf44 + channel: master + +project_type: module diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/README.md b/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/README.md new file mode 100644 index 00000000000..092c7d11aff --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/README.md @@ -0,0 +1,14 @@ +# flutter_module + +An example Flutter module used in the Flutter add-to-app samples. For more +information on how to use it, see the [README.md](../README.md) parent +directory. + +## Getting Started + +For more information about Flutter, check out +[flutter.dev](https://flutter.dev). + +For instructions on how to integrate Flutter modules into your existing +applications, see Flutter's +[add-to-app documentation](https://flutter.dev/docs/development/add-to-app). diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/analysis_options.yaml b/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/analysis_options.yaml new file mode 100644 index 00000000000..13d6fe105a3 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/analysis_options.yaml @@ -0,0 +1 @@ +include: package:analysis_defaults/flutter.yaml diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/lib/main.dart b/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/lib/main.dart new file mode 100644 index 00000000000..875600586ea --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/lib/main.dart @@ -0,0 +1,55 @@ +import 'package:flutter/material.dart'; + +void main() { + runApp(const MyApp()); +} + +/// The main application widget for the Fruit Catalog. +class MyApp extends StatefulWidget { + /// Creates the [MyApp]. + const MyApp({super.key}); + + @override + State createState() => _MyAppState(); +} + +class _MyAppState extends State { + int _counter = 1; + void _incrementCounter() { + setState(() { + if (_counter > 40) { + _counter = 1; + } + _counter++; + }); + } + + @override + Widget build(BuildContext context) { + + return Center( + heightFactor: 1, + child: Directionality( + textDirection: TextDirection.ltr, + child: Column( + mainAxisAlignment: MainAxisAlignment.end, + children: [ + for (int i = 0; i < _counter; i++) + Text( + "Hello from Flutter $i", + style: TextStyle(color: Colors.pink), + ), + Padding( + padding: const EdgeInsets.fromLTRB(8.0, 50, 8.0, 8.0), + child: ElevatedButton( + onPressed: _incrementCounter, + child: Text("Add to list"), + ), + ), + + ], + ), + ), + ); + } +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/pubspec.yaml b/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/pubspec.yaml new file mode 100644 index 00000000000..2c00a2cb1ae --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/pubspec.yaml @@ -0,0 +1,35 @@ +name: flutter_module +description: An example Flutter module. + +version: 1.0.0+1 + +environment: + sdk: ^3.7.0-0 + +dependencies: + flutter: + sdk: flutter + provider: ^6.0.2 + +dev_dependencies: + analysis_defaults: + path: ../../../analysis_defaults + flutter_test: + sdk: flutter + flutter_driver: + sdk: flutter + espresso: ">=0.2.0 <0.5.0" + +flutter: + uses-material-design: true + + # This section identifies your Flutter project as a module meant for + # embedding in a native host app. These identifiers should _not_ ordinarily + # be changed after generation - they are used to ensure that the tooling can + # maintain consistency when adding or modifying assets and plugins. + # They also do not have any bearing on your native host application's + # identifiers, which may be completely independent or the same as these. + module: + androidX: true + androidPackage: dev.flutter.example.flutter_module + iosBundleIdentifier: dev.flutter.example.flutterModule diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/test/widget_test.dart b/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/test/widget_test.dart new file mode 100644 index 00000000000..e16884a88bb --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/test/widget_test.dart @@ -0,0 +1,47 @@ +// Copyright 2019 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +import 'package:flutter/material.dart'; +import 'package:flutter_module/main.dart'; +import 'package:flutter_test/flutter_test.dart'; +import 'package:provider/provider.dart'; + +class MockCounterModel extends ChangeNotifier implements CounterModel { + int _count = 0; + + @override + int get count => _count; + + @override + void increment() { + _count++; + notifyListeners(); + } +} + +void main() { + testWidgets('MiniView smoke test', (tester) async { + // Build our app and trigger a frame. + await tester.pumpWidget( + MaterialApp( + home: ChangeNotifierProvider.value( + value: MockCounterModel(), + child: const Contents(), + ), + ), + ); + + // Verify that our counter starts at 0. + expect(find.text('Taps: 0'), findsOneWidget); + expect(find.text('Taps: 1'), findsNothing); + + // Tap the '+' icon and trigger a frame. + await tester.tap(find.text('Tap me!')); + await tester.pump(); + + // Verify that our counter has incremented. + expect(find.text('Taps: 0'), findsNothing); + expect(find.text('Taps: 1'), findsOneWidget); + }); +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/test_driver/example.dart b/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/test_driver/example.dart new file mode 100644 index 00000000000..5f1e453151a --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/flutter_module/test_driver/example.dart @@ -0,0 +1,13 @@ +// Copyright 2020 The Flutter team. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +import 'package:flutter_driver/driver_extension.dart'; +import 'package:flutter_module/main.dart' as app; + +// This alternate entrypoint is used for espresso testing. See +// https://pub.dev/packages/espresso for details. +void main() { + enableFlutterDriverExtension(); + app.main(); +} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.pbxproj b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.pbxproj index 94f3001bea3..889d28427fe 100644 --- a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.pbxproj +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.pbxproj @@ -6,6 +6,12 @@ objectVersion = 77; objects = { +/* Begin PBXBuildFile section */ + 7CAC012226BEEB661A102697 /* Pods_ios_content_resizingTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E04F6A34F21CD3BE6A257DDB /* Pods_ios_content_resizingTests.framework */; }; + 7F699BB7742B5FAB4C12CE5C /* Pods_ios_content_resizing.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 636EB75E6827B94D35B9E15C /* Pods_ios_content_resizing.framework */; }; + E843104071C29E6CE30D637B /* Pods_ios_content_resizing_ios_content_resizingUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 979B0953B3CB94157C961BB5 /* Pods_ios_content_resizing_ios_content_resizingUITests.framework */; }; +/* End PBXBuildFile section */ + /* Begin PBXContainerItemProxy section */ F23EDFE72EE0E81C00A217AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; @@ -24,6 +30,15 @@ /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ + 21AF0E08BF01F3EA6AF43D73 /* Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig"; path = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig"; sourceTree = ""; }; + 2FEEB1287F59F7D0F950708C /* Pods-ios_content_resizingTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios_content_resizingTests.release.xcconfig"; path = "Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.release.xcconfig"; sourceTree = ""; }; + 5FED92584E697C8B2564E54E /* Pods-ios_content_resizingTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios_content_resizingTests.debug.xcconfig"; path = "Target Support Files/Pods-ios_content_resizingTests/Pods-ios_content_resizingTests.debug.xcconfig"; sourceTree = ""; }; + 636EB75E6827B94D35B9E15C /* Pods_ios_content_resizing.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ios_content_resizing.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 979B0953B3CB94157C961BB5 /* Pods_ios_content_resizing_ios_content_resizingUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ios_content_resizing_ios_content_resizingUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + C170EDA9CDBAFCCCE6D0E1C0 /* Pods-ios_content_resizing.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios_content_resizing.release.xcconfig"; path = "Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.release.xcconfig"; sourceTree = ""; }; + D301423152989400BB7B71AC /* Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig"; path = "Target Support Files/Pods-ios_content_resizing-ios_content_resizingUITests/Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig"; sourceTree = ""; }; + D59E29ECBED0852D37A99053 /* Pods-ios_content_resizing.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ios_content_resizing.debug.xcconfig"; path = "Target Support Files/Pods-ios_content_resizing/Pods-ios_content_resizing.debug.xcconfig"; sourceTree = ""; }; + E04F6A34F21CD3BE6A257DDB /* Pods_ios_content_resizingTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ios_content_resizingTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; F23EDFD02EE0E81A00A217AA /* ios_content_resizing.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ios_content_resizing.app; sourceTree = BUILT_PRODUCTS_DIR; }; F23EDFE62EE0E81C00A217AA /* ios_content_resizingTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ios_content_resizingTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; F23EDFF02EE0E81C00A217AA /* ios_content_resizingUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ios_content_resizingUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -65,6 +80,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 7F699BB7742B5FAB4C12CE5C /* Pods_ios_content_resizing.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -72,6 +88,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 7CAC012226BEEB661A102697 /* Pods_ios_content_resizingTests.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -79,12 +96,36 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + E843104071C29E6CE30D637B /* Pods_ios_content_resizing_ios_content_resizingUITests.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ + 26A2B7F96A58CC7941B47702 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 636EB75E6827B94D35B9E15C /* Pods_ios_content_resizing.framework */, + 979B0953B3CB94157C961BB5 /* Pods_ios_content_resizing_ios_content_resizingUITests.framework */, + E04F6A34F21CD3BE6A257DDB /* Pods_ios_content_resizingTests.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 429AA23544B1D6221E46F99C /* Pods */ = { + isa = PBXGroup; + children = ( + D59E29ECBED0852D37A99053 /* Pods-ios_content_resizing.debug.xcconfig */, + C170EDA9CDBAFCCCE6D0E1C0 /* Pods-ios_content_resizing.release.xcconfig */, + 21AF0E08BF01F3EA6AF43D73 /* Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig */, + D301423152989400BB7B71AC /* Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig */, + 5FED92584E697C8B2564E54E /* Pods-ios_content_resizingTests.debug.xcconfig */, + 2FEEB1287F59F7D0F950708C /* Pods-ios_content_resizingTests.release.xcconfig */, + ); + path = Pods; + sourceTree = ""; + }; F23EDFC72EE0E81A00A217AA = { isa = PBXGroup; children = ( @@ -92,6 +133,8 @@ F23EDFE92EE0E81C00A217AA /* ios_content_resizingTests */, F23EDFF32EE0E81C00A217AA /* ios_content_resizingUITests */, F23EDFD12EE0E81A00A217AA /* Products */, + 429AA23544B1D6221E46F99C /* Pods */, + 26A2B7F96A58CC7941B47702 /* Frameworks */, ); sourceTree = ""; }; @@ -112,9 +155,12 @@ isa = PBXNativeTarget; buildConfigurationList = F23EDFF92EE0E81C00A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizing" */; buildPhases = ( + 04B5F7353A97C8C66DB1345D /* [CP] Check Pods Manifest.lock */, + 0096AB54D225CF9ABA303477 /* [CP-User] Run Flutter Build flutter_module Script */, F23EDFCC2EE0E81A00A217AA /* Sources */, F23EDFCD2EE0E81A00A217AA /* Frameworks */, F23EDFCE2EE0E81A00A217AA /* Resources */, + 81C6A5B8754ABF6932230914 /* [CP-User] Embed Flutter Build flutter_module Script */, ); buildRules = ( ); @@ -124,8 +170,6 @@ F23EDFD22EE0E81A00A217AA /* ios_content_resizing */, ); name = ios_content_resizing; - packageProductDependencies = ( - ); productName = ios_content_resizing; productReference = F23EDFD02EE0E81A00A217AA /* ios_content_resizing.app */; productType = "com.apple.product-type.application"; @@ -134,6 +178,7 @@ isa = PBXNativeTarget; buildConfigurationList = F23EDFFE2EE0E81C00A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizingTests" */; buildPhases = ( + D845714EE96E84A345CC5AFB /* [CP] Check Pods Manifest.lock */, F23EDFE22EE0E81C00A217AA /* Sources */, F23EDFE32EE0E81C00A217AA /* Frameworks */, F23EDFE42EE0E81C00A217AA /* Resources */, @@ -147,8 +192,6 @@ F23EDFE92EE0E81C00A217AA /* ios_content_resizingTests */, ); name = ios_content_resizingTests; - packageProductDependencies = ( - ); productName = ios_content_resizingTests; productReference = F23EDFE62EE0E81C00A217AA /* ios_content_resizingTests.xctest */; productType = "com.apple.product-type.bundle.unit-test"; @@ -157,6 +200,7 @@ isa = PBXNativeTarget; buildConfigurationList = F23EE0012EE0E81C00A217AA /* Build configuration list for PBXNativeTarget "ios_content_resizingUITests" */; buildPhases = ( + CD035F8822407F4FA59AE066 /* [CP] Check Pods Manifest.lock */, F23EDFEC2EE0E81C00A217AA /* Sources */, F23EDFED2EE0E81C00A217AA /* Frameworks */, F23EDFEE2EE0E81C00A217AA /* Resources */, @@ -170,8 +214,6 @@ F23EDFF32EE0E81C00A217AA /* ios_content_resizingUITests */, ); name = ios_content_resizingUITests; - packageProductDependencies = ( - ); productName = ios_content_resizingUITests; productReference = F23EDFF02EE0E81C00A217AA /* ios_content_resizingUITests.xctest */; productType = "com.apple.product-type.bundle.ui-testing"; @@ -244,6 +286,103 @@ }; /* End PBXResourcesBuildPhase section */ +/* Begin PBXShellScriptBuildPhase section */ + 0096AB54D225CF9ABA303477 /* [CP-User] Run Flutter Build flutter_module Script */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP-User] Run Flutter Build flutter_module Script"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "set -e\nset -u\nsource \"${SRCROOT}/../flutter_module/.ios/Flutter/flutter_export_environment.sh\"\nexport VERBOSE_SCRIPT_LOGGING=1 && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/xcode_backend.sh build"; + }; + 04B5F7353A97C8C66DB1345D /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-ios_content_resizing-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + 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"; + showEnvVarsInLog = 0; + }; + 81C6A5B8754ABF6932230914 /* [CP-User] Embed Flutter Build flutter_module Script */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP-User] Embed Flutter Build flutter_module Script"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "set -e\nset -u\nsource \"${SRCROOT}/../flutter_module/.ios/Flutter/flutter_export_environment.sh\"\nexport VERBOSE_SCRIPT_LOGGING=1 && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/xcode_backend.sh embed_and_thin"; + }; + CD035F8822407F4FA59AE066 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-ios_content_resizing-ios_content_resizingUITests-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + 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"; + showEnvVarsInLog = 0; + }; + D845714EE96E84A345CC5AFB /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-ios_content_resizingTests-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + 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"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + /* Begin PBXSourcesBuildPhase section */ F23EDFCC2EE0E81A00A217AA /* Sources */ = { isa = PBXSourcesBuildPhase; @@ -284,12 +423,14 @@ /* Begin XCBuildConfiguration section */ F23EDFFA2EE0E81C00A217AA /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = D59E29ECBED0852D37A99053 /* Pods-ios_content_resizing.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = S8QB4VV633; + ENABLE_USER_SCRIPT_SANDBOXING = NO; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_FILE = ios_content_resizing/Info.plist; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; @@ -312,12 +453,14 @@ }; F23EDFFB2EE0E81C00A217AA /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = C170EDA9CDBAFCCCE6D0E1C0 /* Pods-ios_content_resizing.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; DEVELOPMENT_TEAM = S8QB4VV633; + ENABLE_USER_SCRIPT_SANDBOXING = NO; GENERATE_INFOPLIST_FILE = YES; INFOPLIST_FILE = ios_content_resizing/Info.plist; INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; @@ -376,7 +519,7 @@ DEVELOPMENT_TEAM = S8QB4VV633; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; - ENABLE_USER_SCRIPT_SANDBOXING = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_C_LANGUAGE_STANDARD = gnu17; GCC_DYNAMIC_NO_PIC = NO; GCC_NO_COMMON_BLOCKS = YES; @@ -440,7 +583,7 @@ DEVELOPMENT_TEAM = S8QB4VV633; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_USER_SCRIPT_SANDBOXING = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_C_LANGUAGE_STANDARD = gnu17; GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; @@ -461,6 +604,7 @@ }; F23EDFFF2EE0E81C00A217AA /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 5FED92584E697C8B2564E54E /* Pods-ios_content_resizingTests.debug.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CODE_SIGN_STYLE = Automatic; @@ -480,6 +624,7 @@ }; F23EE0002EE0E81C00A217AA /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 2FEEB1287F59F7D0F950708C /* Pods-ios_content_resizingTests.release.xcconfig */; buildSettings = { BUNDLE_LOADER = "$(TEST_HOST)"; CODE_SIGN_STYLE = Automatic; @@ -499,6 +644,7 @@ }; F23EE0022EE0E81C00A217AA /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 21AF0E08BF01F3EA6AF43D73 /* Pods-ios_content_resizing-ios_content_resizingUITests.debug.xcconfig */; buildSettings = { CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; @@ -516,6 +662,7 @@ }; F23EE0032EE0E81C00A217AA /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = D301423152989400BB7B71AC /* Pods-ios_content_resizing-ios_content_resizingUITests.release.xcconfig */; buildSettings = { CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 1; diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000000..919434a6254 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000000000000000000000000000000000000..943ac77b02a1222ebef680d6000a8298be933277 GIT binary patch literal 25437 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 F{{U+cC9ePg literal 0 HcmV?d00001 diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 00000000000..4ccf2d12203 --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/xcuserdata/louisehsu.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,14 @@ + + + + + SchemeUserState + + ios_content_resizing.xcscheme_^#shared#^_ + + orderHint + 5 + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/contents.xcworkspacedata b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000000..b278bcd7e4a --- /dev/null +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000000000000000000000000000000000000..ee27681bf2c04c98353445b9588a39af399bf9e5 GIT binary patch literal 24296 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

      q;4LK7^IAh@{W#)jf+o!XO(bD722vV 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 oSC&6izNUOn`I!peitGw=#qf$z6 Bool { - // Override point for customization after application launch. - return true - } - - // MARK: UISceneSession Lifecycle - - func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { - // Called when a new scene session is being created. - // Use this method to select a configuration to create the new scene with. - return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) - } - - func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set) { - // Called when the user discards a scene session. - // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. - // Use this method to release any resources that were specific to the discarded scenes, as they will not return. - } - - +class AppDelegate: FlutterAppDelegate { + // Make the engine lazy to be created when it's first needed. + lazy var flutterEngine = FlutterEngine(name: "my_flutter_engine") + + override func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { + // Pre-warms the FlutterEngine. + flutterEngine.run() + return super.application(application, didFinishLaunchingWithOptions: launchOptions) + } } - diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift index 9f684b50dcc..01ca771b071 100644 --- a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift @@ -1,19 +1,53 @@ -// -// ViewController.swift -// ios_content_resizing -// -// Created by Louise Hsu on 12/3/25. -// - +import Flutter import UIKit class ViewController: UIViewController { - override func viewDidLoad() { super.viewDidLoad() - // Do any additional setup after loading the view. + + showScollView() } + func showScollView() { + let scrollView = UIScrollView() + scrollView.isUserInteractionEnabled = true -} + let stackView = UIStackView() + stackView.axis = .vertical + stackView.distribution = .fill + stackView.translatesAutoresizingMaskIntoConstraints = false + + let engine1 = FlutterEngine(name: "one") + engine1.run() + for index in 1...50 { + if (index == 10) { + let flutterViewController = FlutterViewController(engine: engine1, nibName: nil, bundle: nil) + flutterViewController.isAutoResizable = true + addChild(flutterViewController) + stackView.addArrangedSubview(flutterViewController.view) + flutterViewController.didMove(toParent: self) + } else { + let label = UILabel() + label.text = "Hello from iOS \(index)" + stackView.addArrangedSubview(label) + } + } + scrollView.addSubview(stackView) + scrollView.layoutIfNeeded() + self.view.addSubview(scrollView) + + scrollView.translatesAutoresizingMaskIntoConstraints = false + scrollView.leadingAnchor.constraint(equalTo: view.leadingAnchor).isActive = true + scrollView.trailingAnchor.constraint(equalTo: view.trailingAnchor).isActive = true + scrollView.topAnchor.constraint(equalTo: view.topAnchor).isActive = true + scrollView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true + + stackView.translatesAutoresizingMaskIntoConstraints = false + stackView.topAnchor.constraint(equalTo: scrollView.topAnchor).isActive = true + stackView.widthAnchor.constraint(equalTo: scrollView.widthAnchor).isActive = true + stackView.leadingAnchor.constraint(equalTo: scrollView.leadingAnchor).isActive = true + stackView.trailingAnchor.constraint(equalTo: scrollView.trailingAnchor).isActive = true + stackView.bottomAnchor.constraint(equalTo: scrollView.bottomAnchor).isActive = true + } +} From 10aa6f746d1616d5c97064c108f30331079ff32c Mon Sep 17 00:00:00 2001 From: louisehsu Date: Thu, 4 Dec 2025 00:45:19 -0800 Subject: [PATCH 4/8] works --- .../flutter_module/lib/main.dart | 63 ++++++++---------- .../flutter_module/test/widget_test.dart | 30 --------- .../UserInterfaceState.xcuserstate | Bin 24296 -> 25473 bytes .../ios_content_resizing/ViewController.swift | 2 + 4 files changed, 29 insertions(+), 66 deletions(-) delete mode 100644 add_to_app/ios_content_resizing/flutter_module/test/widget_test.dart diff --git a/add_to_app/ios_content_resizing/flutter_module/lib/main.dart b/add_to_app/ios_content_resizing/flutter_module/lib/main.dart index 875600586ea..ba7f7b7ba47 100644 --- a/add_to_app/ios_content_resizing/flutter_module/lib/main.dart +++ b/add_to_app/ios_content_resizing/flutter_module/lib/main.dart @@ -1,55 +1,46 @@ +// Copyright 2014 The Flutter Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + import 'package:flutter/material.dart'; void main() { - runApp(const MyApp()); + runApp(const ResizeApp()); } -/// The main application widget for the Fruit Catalog. -class MyApp extends StatefulWidget { - /// Creates the [MyApp]. - const MyApp({super.key}); +class ResizeApp extends StatefulWidget { + /// Creates the [ResizeApp]. + const ResizeApp({super.key}); @override - State createState() => _MyAppState(); + State createState() => _ResizeAppState(); } -class _MyAppState extends State { - int _counter = 1; - void _incrementCounter() { +class _ResizeAppState extends State { + int _listSize = 1; + void _addToList() { setState(() { - if (_counter > 40) { - _counter = 1; - } - _counter++; + _listSize++; }); } @override Widget build(BuildContext context) { - - return Center( - heightFactor: 1, - child: Directionality( - textDirection: TextDirection.ltr, - child: Column( - mainAxisAlignment: MainAxisAlignment.end, - children: [ - for (int i = 0; i < _counter; i++) - Text( - "Hello from Flutter $i", - style: TextStyle(color: Colors.pink), - ), - Padding( - padding: const EdgeInsets.fromLTRB(8.0, 50, 8.0, 8.0), - child: ElevatedButton( - onPressed: _incrementCounter, - child: Text("Add to list"), - ), - ), - - ], + return GestureDetector( + onTap: _addToList, // The tap anywhere logic + child: Center( + heightFactor: 1, + child: Directionality( + textDirection: TextDirection.ltr, + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + for (int i = 0; i < _listSize; i++) + Container(color: HSVColor.fromAHSV(1, (10.0 * i), 1, 1).toColor(), height: 50, width: 100), + ], + ), ), ), ); } -} +} \ No newline at end of file diff --git a/add_to_app/ios_content_resizing/flutter_module/test/widget_test.dart b/add_to_app/ios_content_resizing/flutter_module/test/widget_test.dart deleted file mode 100644 index 396d69651a1..00000000000 --- a/add_to_app/ios_content_resizing/flutter_module/test/widget_test.dart +++ /dev/null @@ -1,30 +0,0 @@ -// This is a basic Flutter widget test. -// -// To perform an interaction with a widget in your test, use the WidgetTester -// utility in the flutter_test package. For example, you can send tap and scroll -// gestures. You can also use WidgetTester to find child widgets in the widget -// tree, read text, and verify that the values of widget properties are correct. - -import 'package:flutter/material.dart'; -import 'package:flutter_test/flutter_test.dart'; - -import 'package:flutter_module/main.dart'; - -void main() { - testWidgets('Counter increments smoke test', (WidgetTester tester) async { - // Build our app and trigger a frame. - await tester.pumpWidget(const MyApp()); - - // Verify that our counter starts at 0. - expect(find.text('0'), findsOneWidget); - expect(find.text('1'), findsNothing); - - // Tap the '+' icon and trigger a frame. - await tester.tap(find.byIcon(Icons.add)); - await tester.pump(); - - // Verify that our counter has incremented. - expect(find.text('0'), findsNothing); - expect(find.text('1'), findsOneWidget); - }); -} diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate index ee27681bf2c04c98353445b9588a39af399bf9e5..00060cb67b13e19db8e29ec7f3808905111b5c03 100644 GIT binary patch delta 9337 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∾3Y(Vgs0ackYF?oRH> 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 diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift index 01ca771b071..7dc8e41826d 100644 --- a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift @@ -15,6 +15,7 @@ class ViewController: UIViewController { let stackView = UIStackView() stackView.axis = .vertical stackView.distribution = .fill + stackView.backgroundColor = .yellow stackView.translatesAutoresizingMaskIntoConstraints = false let engine1 = FlutterEngine(name: "one") @@ -27,6 +28,7 @@ class ViewController: UIViewController { addChild(flutterViewController) stackView.addArrangedSubview(flutterViewController.view) flutterViewController.didMove(toParent: self) + } else { let label = UILabel() label.text = "Hello from iOS \(index)" From d22877f79b3f6c97e094a7d4764ee872be26dcf1 Mon Sep 17 00:00:00 2001 From: louisehsu Date: Thu, 4 Dec 2025 01:01:31 -0800 Subject: [PATCH 5/8] works --- .../UserInterfaceState.xcuserstate | Bin 25473 -> 25482 bytes .../ios_content_resizing/ViewController.swift | 129 ++++++++++++------ 2 files changed, 84 insertions(+), 45 deletions(-) diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate index 00060cb67b13e19db8e29ec7f3808905111b5c03..f241f8e3cefee7a65d46d3192eadb83a25092966 100644 GIT binary patch delta 6507 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 delta 6454 zcmZvg2Y6Cv+s8S14l7{>!VUpK2!wGUfIvbBD~u4(NL)=Dqb4?vs%?y;4mj==t72`n zwrXOHqiSu`s8#Fh-mOOKthYo$I0Mdt z3*ZX432uQuz-{nn33vn^gXb^=C&P4@4fEj)I1`q_a@Y<#U?=Q?-Ea}?fxWN~_QS<+ z2<`-ThAZIia3x#=_knBS!EhZs1pXKv4Nqv6f-Hy}!_CHhg4D-b32tr&sG%@@R*lLSyLMheInS@c1a z9Dh@zPf&;$9U3L0P;zrWWhW>`k?|36^ilM2+tHOqr)9Td$QTNS3gkeEVKo2+$ca9U zK5GCfppHIAq4+)O;_6&rO#G+^hUkmv%LWJ!OwleVgo$RC_wO^H+CQMGdRTRBMb*Gw zbstm@7+g|4;QhfhbVADO%?p47!)gRJPzdZOl!QV6h2Tcu1TNr4AuI~vQHT(`;E6;) zaXgm*D0w#&*3{MYsp>g=aCL2a8m;_^sF$tOJ9j1RR>_%#j$SB)JBk^D84E(7edkcP zQzyT>0faCUj)Kzo1|8qrVA*t8>{5$s&#YNZgbwIOqWA`x_Ns-L#4FQIXuD!s#eY|$ z3wS3XxGU&}LMbRj`bTn1Dd$G0wKW5WhIY;MQNoX7NA80$Y14D&&Lc5^d zpeN`Bsz5b#ApWT)=@1H~qEI>t2~mg|o!hqJM}PYn>JC*xJ>oa@gnEH~pg+_bdOxWZ z(}Y4?6rx2(MWfNPQRmUN27Lrk7K2(a7}SA`At*#gAqEPip%6RTwG|o!eHfSB6Vn6@ zj&B~jASKg)&e`6cZ~s z@!uC?r17^5ECtKJ@;H#+U}Pwycts=%sZhv_LY4%Rd2LLFHbIm{;CmFxiFSP@bZbKB z516LJfkMitv+We^N+Z3-X*bxH=*}Ln7lqU)q-g;A!2uLPP{1ux=Xyo52a zi<)%E7JI4TR=_Y8IsoI74kjIno{!!@ArA@_CeZ5>4>Ugy?g3XN3ap2F zMPHy$*MIptq~~V!g$Km>f&0Pz;SW&g9TX}@p?4eMf$*RNKkuPX#cO`xp%^MW>`f-# zHm~3j@z{}X#=d1Vz19(d$Fy+($88y(LzVyJ`3j))f6d$OwErDT&9n4p@q`*|pXfCd z;x`Y;ZwATn{I{ae4}a%R!2X1xVvm55*rq~BGVUn$SbTXrzPwr}NqbE(_9XU9Td}aG zqc37Ydl9iK_Ig`ByJKRzAl6-vk9}e%;A)Z%#vc>=(q1lVvpy~*(b(44jXnO4^)Iw_ zHrC(Crv8u7W3!w?nLv-zCfahU0ecq2(cPZlUg$EA;>n*wq4V+NquDVu*AT08DPpM_ zQ3U74P;o_Xmi8^yJc{$hWBqT&zQyu?w*gmzYv0xeT&PX<#ee11)`wW8iy0f>F5)J5 z#`Q_azV%x6?KYm954i_Isc%9XEAdF7dkH4_xM{dg+RBWZo)G_6;vuFs@tC-HZuY0R zxp63Qb8w&GK1ZSZDD(h@9ya3U;l4;f`3Qv`zojk>ajlJSYJCfGM{!Hyu}yErz6Isi zby<#E`Km78wAJP5zf%5hU7BUSk`#8r>iCcGBjSI0YTF8eCOOa~XKZqKapWlO5{8N& zhr5#L*fVI`)MMjY(WI1$vVm1ShKqU(7HPG420ey=;bJ5h6-I~2!xUmlF`Y5*Vk+S4 z@E`C~EWlE*X;>asfE8jhu~}F-HV0dZt-;n|CtxRGr(maHr(6@mk?JI_Y+SLPZQ4)&l4{aFB4xR`yt7awX+z%Jr1rQf{XFk@9EC^OTn)hy+Mj5}rgPMN&vI zlAZJpsg5*`w3xJn)J)n;+Dh6++D_U@Iz;-BbcEDOI!-!4x=l_a`^kODwd5h>VdRg= zGs*MFP2^SNwdAejJ>hXrx+>kQN~b~ zQ1(%Nrktl-q+F)_O1Vb)GeWsbxkq_Gc|>_arBk!0HflHOU@A%-N1Z^OOr1)tr!J+g zp&q9GL_JEINSi_XlGZ?5Oj|-*L0d^%OkLw}cEL9e9uq*u|0(?`%p(Ia$}K9)Y7K9N3|9$VcR7x{{QfPS9-TPiJ8 zo@z_&kvcB5DRpgXOX|kd&8b^cx1}CS{U!BM>Xp>1sn=8Qr#?%4!N4$*7(_-2gUp~Z z=!^`8ic!e$GdeQ5GkP;>7=0Q28MTZ$#!$v^#t23|V-90AV>{yr;|Ajylf&dO1xz7R z#FQ|l%y*c*n7t#+8fIVSQ05rsB<2+6H0E^XT;>{8Hi0c*YuHwH#K*2-*Re;kN3)~sG3?3gsqA|8 zC+wN*CG0KiZToRYf6>-&EBiF%oaf`TKZU=5>ZaH^6cO!Rq zgu92km%E>PoO_OYpZkPI=b3rMye_;-UQb>XuQ#uT_aU#ASH~O58_pZS8^@c^YvQfp zZRPFZ?c*Kb9pe4SJIOoEJIg!AyTH4|$MDnnc78X0Z+;(sKmGvzApS@E5&S5B41XMd z0zbx|$DhytiocNG#9zi=!C%Q=&5vy0@8TciALjqWKgvJFKg0ipf1ZDl{~Q0IfFMW~ zkOUL~O^_;J3RnV;Kp{{H)B;4H6X*p-fk|Ky z`jhl$LadN3WC3Hcx>163tX}z>Tx>&kIx>UMc`i*q8bd9uGx?Z|Lx=DIM`XGy!WzDM0nvk_TYhTuN z8CFJ-(Pa!-noKCmmMLUPnOcU(bTYlnD09lZGQTV!>mchW>m=(U8!Y=wwpg}IwnDa2 z_ML34tVOm_wo7(Qc0zU~BKuwThwP5*p6sdYMK+WTXXCPw>>k-;vZrQ$p1mS_Rd!4E z*6bbG2eVIQ-^{+9{YVbUDRPFKCFjb8a*;e!o+Vex^W-J+59EX7welhI;qnpk(Q;Hi zRz6?8K;9rKC`^hx zg;ilwlqxC|JrunZ)r!7~p^A?cBNd}_q&d1AeU355oO3Sc&z$GVRAriyqvR`vO0iO^ z%vR|hNa<4+D@&9iWvQ}E*+tn+`L41;S*aYQoUh!byrjaZRH_cDfvV}M6{@wW z7S*PRYO`vW>agmFs#W!~>ZIzl>a6O9>JQZ&)jic?)ic#gHKdlR9qN#}le(+ATwS5A zR@bQesRyVBspqN>sBfz8Ymzi+8jeP+(P$hRx29CnS<_8ZuBp`Y(o}2S*9_4N*NoAO z)6CS&(ahD%*DTUBYL;l0YFaegG&?kr-I~3cBbu9<+nT!w14%>J2oFg|G7t$OMPx`J z;zWuNFXBf6ND%3ayoXdGy^!8W4N`{;MTR3IkV(iCWEwIZ`2zV0S%@?s8bQA^T_wNkB2E7#^|)mm*to2xZwOO1DPWtXrpR(e2dj(;d|Ps5_=Rp*yWR zt9zU)$W`QOa<#eoTyt(-Zb5EgZYZ}rw`Xp3ZcT2#+>dhWa);%P$Q_ltB==MQiU^u6_c^aJ#R^tJjr{W$#`{Q`Z9ezX3V{;K|^A<2L>;0;7W zih*ok8PW|RL#9DykQ zmKs(VRvB6hn+#hFKNz+fb{Y;DP8cpl3{Q-BBhAP#vW#4#z?fysHY$utquPiVgT}tb zdgBsfvvH?!k8!{8kntyDtMO;!DdSn=E#qzD9phid`^JaH$Hu3|=f;=q)a~ADH>KUi zc2`VHlgCtN8emMY8pmcEt`EQ2hymLZnmmXVf-Wuc|fvc$5?@{MJce?Wd+ z{?Po7^GD@J@~7ob&!3SWvr?>ltHdg`W?L0jtyOPrXN_2_`PO09@zzP!Db{-H4C^fG z0_#HSB5R}dTWhm*y>+8?vvsTWfc1j)vh}L;X0?^uhS^ZtINLEO@)@io`tgu*A;Fp zJWzP9@M7U_g%9n?cCwvk&#;T_QoF*gvLkk#-EQ~Wi|r-$kiCn&%HGG`-#*Yj*gn+$ zv3;a{s{M2Om-dDB278lzxqYR5wSBWaa>Rbje!_m*{)_#B{j&Y4{f7Of{k8*k;2lIq zii7N+IT#L>gX7>k(j6HNtE1czaV&D|a{TV3IyKIqv#+z(Im9{KIl?*4S?`?ToaOw~ z`I&RBbBS|>bCq+AbG>t;bF*`+^NjO_E5$`~rMl8wJXg9)Iw?erb+9rhjZ9rK;>o%3DvUGZJ@)}4_0RJ+`d9eZ`dj?l{CoTd{ipnA{pbCc{J;9I`Ck;{i|NJ8;?m-Giu)HwYKun} zPcEKbJhOOq@!aD1#S4lT6`u?61JZyxpbc08&OlM1W8nQj-@pffL4n%9kihW3$Ur18 zCNMrQFEBr_Ah0OV7+4Zm7WgKxI`Ca!U7#hfJ#Z>;w_+ zT5>a(6eI?j!StXoC<>~B?IJ--&>AcZI)i~=C|DXS3w8;13w{)=4=xR!30@3d4PFo4 z2|fxw4Za9LArPX4*dbmhJtPWchjK#dkT#SXDi2K#tqW}pZ3`U=9SfZZoeupHx)Qn; z`Ym)TbUXAY^s+snJuRFOmV}jIOV}RvhReb|!d2n-!+pc955j}Owc%)ZYWZKE>iYUz7XCj|$Ogv% diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift index 7dc8e41826d..8a0e6d1cf9a 100644 --- a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift @@ -2,54 +2,93 @@ import Flutter import UIKit class ViewController: UIViewController { - override func viewDidLoad() { - super.viewDidLoad() - - showScollView() - } - - func showScollView() { - let scrollView = UIScrollView() - scrollView.isUserInteractionEnabled = true + override func viewDidLoad() { + super.viewDidLoad() + view.backgroundColor = .systemGroupedBackground + showStyledScrollView() + } - let stackView = UIStackView() - stackView.axis = .vertical - stackView.distribution = .fill - stackView.backgroundColor = .yellow - stackView.translatesAutoresizingMaskIntoConstraints = false + func showStyledScrollView() { + let scrollView = UIScrollView() + let stackView = UIStackView() + stackView.axis = .vertical + stackView.spacing = 12 // Spacing between the "cards" - let engine1 = FlutterEngine(name: "one") - engine1.run() + let engine1 = FlutterEngine(name: "one") + engine1.run() - for index in 1...50 { - if (index == 10) { - let flutterViewController = FlutterViewController(engine: engine1, nibName: nil, bundle: nil) - flutterViewController.isAutoResizable = true - addChild(flutterViewController) - stackView.addArrangedSubview(flutterViewController.view) - flutterViewController.didMove(toParent: self) + for index in 1...50 { + if index == 10 { + // This is our Flutter view + let flutterViewController = FlutterViewController(engine: engine1, nibName: nil, bundle: nil) + flutterViewController.isAutoResizable = true + addChild(flutterViewController) + + // The Flutter view's background should be clear to see the card behind it + flutterViewController.view.backgroundColor = .clear + + // Wrap the Flutter view in a styled container "card" + let cardView = UIView() + cardView.backgroundColor = .systemBackground + cardView.layer.cornerRadius = 12 + cardView.layer.masksToBounds = true + + flutterViewController.view.translatesAutoresizingMaskIntoConstraints = false + cardView.addSubview(flutterViewController.view) + + NSLayoutConstraint.activate([ + flutterViewController.view.topAnchor.constraint(equalTo: cardView.topAnchor), + flutterViewController.view.leadingAnchor.constraint(equalTo: cardView.leadingAnchor), + flutterViewController.view.trailingAnchor.constraint(equalTo: cardView.trailingAnchor), + flutterViewController.view.bottomAnchor.constraint(equalTo: cardView.bottomAnchor) + ]) + + stackView.addArrangedSubview(cardView) + flutterViewController.didMove(toParent: self) - } else { - let label = UILabel() - label.text = "Hello from iOS \(index)" - stackView.addArrangedSubview(label) - } + } else { + let label = UILabel() + label.text = "It's me, iOS \(index)" + label.translatesAutoresizingMaskIntoConstraints = false + + let cardView = UIView() + cardView.backgroundColor = .systemBackground + cardView.layer.cornerRadius = 12 + cardView.addSubview(label) + + NSLayoutConstraint.activate([ + label.topAnchor.constraint(equalTo: cardView.topAnchor, constant: 16), + label.bottomAnchor.constraint(equalTo: cardView.bottomAnchor, constant: -16), + label.leadingAnchor.constraint(equalTo: cardView.leadingAnchor, constant: 16), + label.trailingAnchor.constraint(equalTo: cardView.trailingAnchor, constant: -16) + ]) + + stackView.addArrangedSubview(cardView) + } + } + + // --- Auto Layout Setup --- + scrollView.translatesAutoresizingMaskIntoConstraints = false + stackView.translatesAutoresizingMaskIntoConstraints = false + + view.addSubview(scrollView) + scrollView.addSubview(stackView) + + // Set constraints for the scroll view to fill the main view + NSLayoutConstraint.activate([ + scrollView.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor), + scrollView.bottomAnchor.constraint(equalTo: view.safeAreaLayoutGuide.bottomAnchor), + scrollView.leadingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.leadingAnchor), + scrollView.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor) + ]) + + // Set constraints for the stack view within the scroll view + NSLayoutConstraint.activate([ + stackView.topAnchor.constraint(equalTo: scrollView.contentLayoutGuide.topAnchor, constant: 20), + stackView.bottomAnchor.constraint(equalTo: scrollView.contentLayoutGuide.bottomAnchor, constant: -20), + // Inset the stack view horizontally for the grouped look + stackView.leadingAnchor.constraint(equalTo: scrollView.frameLayoutGuide.leadingAnchor, constant: 20), + stackView.trailingAnchor.constraint(equalTo: scrollView.frameLayoutGuide.trailingAnchor, constant: -20) + ]) } - scrollView.addSubview(stackView) - scrollView.layoutIfNeeded() - self.view.addSubview(scrollView) - - scrollView.translatesAutoresizingMaskIntoConstraints = false - scrollView.leadingAnchor.constraint(equalTo: view.leadingAnchor).isActive = true - scrollView.trailingAnchor.constraint(equalTo: view.trailingAnchor).isActive = true - scrollView.topAnchor.constraint(equalTo: view.topAnchor).isActive = true - scrollView.bottomAnchor.constraint(equalTo: view.bottomAnchor).isActive = true - - stackView.translatesAutoresizingMaskIntoConstraints = false - stackView.topAnchor.constraint(equalTo: scrollView.topAnchor).isActive = true - stackView.widthAnchor.constraint(equalTo: scrollView.widthAnchor).isActive = true - stackView.leadingAnchor.constraint(equalTo: scrollView.leadingAnchor).isActive = true - stackView.trailingAnchor.constraint(equalTo: scrollView.trailingAnchor).isActive = true - stackView.bottomAnchor.constraint(equalTo: scrollView.bottomAnchor).isActive = true - } } From b8c20c31f3e4e0284b07215086cbd49f19ce8197 Mon Sep 17 00:00:00 2001 From: louisehsu Date: Thu, 4 Dec 2025 01:04:53 -0800 Subject: [PATCH 6/8] initial working ver --- .../UserInterfaceState.xcuserstate | Bin 25482 -> 25482 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcworkspace/xcuserdata/louisehsu.xcuserdatad/UserInterfaceState.xcuserstate index f241f8e3cefee7a65d46d3192eadb83a25092966..49fa579cdf02002553755e33d223a3cc77d86325 100644 GIT binary patch delta 48 zcmeA=&e(OFal=J7L1rtqNooV%tJGqbzS;;uv{ E0I9POF8}}l delta 39 vcmeA=&e(OFal=J79=3^WlbEd<8NW3$exJNSw`p^{yM`1qx4Z4)u0$pPH#rW3 From 106a06300daf69e4e83e502ecffc1c0b2cbc786d Mon Sep 17 00:00:00 2001 From: louisehsu Date: Tue, 9 Dec 2025 14:23:20 -0800 Subject: [PATCH 7/8] fixes --- .../flutter_module/lib/main.dart | 34 +++++++++++-------- .../project.pbxproj | 12 +++---- .../ios_content_resizing/ViewController.swift | 21 ++++-------- 3 files changed, 31 insertions(+), 36 deletions(-) diff --git a/add_to_app/ios_content_resizing/flutter_module/lib/main.dart b/add_to_app/ios_content_resizing/flutter_module/lib/main.dart index ba7f7b7ba47..97834ef244d 100644 --- a/add_to_app/ios_content_resizing/flutter_module/lib/main.dart +++ b/add_to_app/ios_content_resizing/flutter_module/lib/main.dart @@ -9,7 +9,6 @@ void main() { } class ResizeApp extends StatefulWidget { - /// Creates the [ResizeApp]. const ResizeApp({super.key}); @override @@ -26,19 +25,26 @@ class _ResizeAppState extends State { @override Widget build(BuildContext context) { - return GestureDetector( - onTap: _addToList, // The tap anywhere logic - child: Center( - heightFactor: 1, - child: Directionality( - textDirection: TextDirection.ltr, - child: Column( - mainAxisSize: MainAxisSize.min, - children: [ - for (int i = 0; i < _listSize; i++) - Container(color: HSVColor.fromAHSV(1, (10.0 * i), 1, 1).toColor(), height: 50, width: 100), - ], - ), + return Center( + heightFactor: 1, + child: Directionality( + textDirection: TextDirection.ltr, + child: Column( + mainAxisSize: MainAxisSize.min, + children: [ + for (int i = 0; i < _listSize; i++) + Container(color: HSVColor.fromAHSV(1, (10.0 * i), 1, 1).toColor(), height: 50, width: 200, + child: Center( + child: Text( + 'Flutter Widget $i', + style: const TextStyle(fontSize: 16, color: Colors.black), + ), + )), + TextButton( + onPressed: _addToList, + child: Text('Listception!'), + ) + ], ), ), ); diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.pbxproj b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.pbxproj index 889d28427fe..05ee1e094f9 100644 --- a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.pbxproj +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing.xcodeproj/project.pbxproj @@ -65,11 +65,15 @@ }; F23EDFE92EE0E81C00A217AA /* ios_content_resizingTests */ = { isa = PBXFileSystemSynchronizedRootGroup; + exceptions = ( + ); path = ios_content_resizingTests; sourceTree = ""; }; F23EDFF32EE0E81C00A217AA /* ios_content_resizingUITests */ = { isa = PBXFileSystemSynchronizedRootGroup; + exceptions = ( + ); path = ios_content_resizingUITests; sourceTree = ""; }; @@ -292,11 +296,7 @@ buildActionMask = 2147483647; files = ( ); - inputPaths = ( - ); name = "[CP-User] Run Flutter Build flutter_module Script"; - outputPaths = ( - ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "set -e\nset -u\nsource \"${SRCROOT}/../flutter_module/.ios/Flutter/flutter_export_environment.sh\"\nexport VERBOSE_SCRIPT_LOGGING=1 && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/xcode_backend.sh build"; @@ -328,11 +328,7 @@ buildActionMask = 2147483647; files = ( ); - inputPaths = ( - ); name = "[CP-User] Embed Flutter Build flutter_module Script"; - outputPaths = ( - ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "set -e\nset -u\nsource \"${SRCROOT}/../flutter_module/.ios/Flutter/flutter_export_environment.sh\"\nexport VERBOSE_SCRIPT_LOGGING=1 && \"$FLUTTER_ROOT\"/packages/flutter_tools/bin/xcode_backend.sh embed_and_thin"; diff --git a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift index 8a0e6d1cf9a..1fe4b1ea26a 100644 --- a/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift +++ b/add_to_app/ios_content_resizing/ios_content_resizing/ios_content_resizing/ViewController.swift @@ -12,22 +12,19 @@ class ViewController: UIViewController { let scrollView = UIScrollView() let stackView = UIStackView() stackView.axis = .vertical - stackView.spacing = 12 // Spacing between the "cards" + stackView.spacing = 12 - let engine1 = FlutterEngine(name: "one") - engine1.run() + let engine = FlutterEngine() + engine.run() for index in 1...50 { - if index == 10 { - // This is our Flutter view - let flutterViewController = FlutterViewController(engine: engine1, nibName: nil, bundle: nil) + if index == 1 { + let flutterViewController = FlutterViewController(engine: engine, nibName: nil, bundle: nil) flutterViewController.isAutoResizable = true addChild(flutterViewController) - - // The Flutter view's background should be clear to see the card behind it + flutterViewController.view.backgroundColor = .clear - // Wrap the Flutter view in a styled container "card" let cardView = UIView() cardView.backgroundColor = .systemBackground cardView.layer.cornerRadius = 12 @@ -48,7 +45,7 @@ class ViewController: UIViewController { } else { let label = UILabel() - label.text = "It's me, iOS \(index)" + label.text = "iOS Label \(index)" label.translatesAutoresizingMaskIntoConstraints = false let cardView = UIView() @@ -67,14 +64,12 @@ class ViewController: UIViewController { } } - // --- Auto Layout Setup --- scrollView.translatesAutoresizingMaskIntoConstraints = false stackView.translatesAutoresizingMaskIntoConstraints = false view.addSubview(scrollView) scrollView.addSubview(stackView) - // Set constraints for the scroll view to fill the main view NSLayoutConstraint.activate([ scrollView.topAnchor.constraint(equalTo: view.safeAreaLayoutGuide.topAnchor), scrollView.bottomAnchor.constraint(equalTo: view.safeAreaLayoutGuide.bottomAnchor), @@ -82,11 +77,9 @@ class ViewController: UIViewController { scrollView.trailingAnchor.constraint(equalTo: view.safeAreaLayoutGuide.trailingAnchor) ]) - // Set constraints for the stack view within the scroll view NSLayoutConstraint.activate([ stackView.topAnchor.constraint(equalTo: scrollView.contentLayoutGuide.topAnchor, constant: 20), stackView.bottomAnchor.constraint(equalTo: scrollView.contentLayoutGuide.bottomAnchor, constant: -20), - // Inset the stack view horizontally for the grouped look stackView.leadingAnchor.constraint(equalTo: scrollView.frameLayoutGuide.leadingAnchor, constant: 20), stackView.trailingAnchor.constraint(equalTo: scrollView.frameLayoutGuide.trailingAnchor, constant: -20) ]) From 9af3fc5c798b84a0f0be4fc9c06fac9b3a4976b6 Mon Sep 17 00:00:00 2001 From: louisehsu Date: Tue, 9 Dec 2025 15:46:37 -0800 Subject: [PATCH 8/8] readme --- add_to_app/ios_content_resizing/README.md | 38 +++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 add_to_app/ios_content_resizing/README.md diff --git a/add_to_app/ios_content_resizing/README.md b/add_to_app/ios_content_resizing/README.md new file mode 100644 index 00000000000..c06498747a3 --- /dev/null +++ b/add_to_app/ios_content_resizing/README.md @@ -0,0 +1,38 @@ +# ios_content_resizing + +Embeds an instance of Flutter into an existing iOS app that will dynamically resize itself based off of it's content. + +## Description + +This sample showcases the integration of a self-resizing Flutter view within a native UIKit environment. The Flutter module features an expanding column of widgets. As items are added, the hosting UIView will automatically adjusts its [intrinsicContentSize](https://developer.apple.com/documentation/uikit/uiview/intrinsiccontentsize) to accommodate the new content size. + +## tl;dr + +If you're just looking to get up and running quickly, these bash commands will +fetch packages and set up dependencies (note that the above commands assume +you're building for both iOS and Android, with both toolchains installed): + +```bash + #!/bin/bash + set -e + + cd flutter_module/ + flutter pub get + + # For iOS builds: + cd ../ios_content_resizing + pod install + open ios_content_resizing.xcworkspace + # Then, click "Run" in Xcode to launch the app into your Simulator or device +``` + +## Requirements + +* Flutter +* iOS + * Xcode + * Cocoapods + +## Questions/issues + +See [add_to_app/README.md](../README.md) for further help.