@simonklee/opentui-tex-native-source 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +674 -0
- package/LICENSE-PROJECT +21 -0
- package/README.md +7 -0
- package/build.zig +112 -0
- package/build.zig.zon +12 -0
- package/native/lib.zig +280 -0
- package/native/nanosvg.c +4 -0
- package/native/vendor/.bootstrap-v5 +1 -0
- package/native/vendor/LICENSE-NANOSVG +18 -0
- package/native/vendor/microtex/.clang-format +26 -0
- package/native/vendor/microtex/.github/workflows/ubuntu.yml +92 -0
- package/native/vendor/microtex/.github/workflows/windows-gdi.yml +34 -0
- package/native/vendor/microtex/.github/workflows/windows-qt.yml +52 -0
- package/native/vendor/microtex/CMakeLists.txt +110 -0
- package/native/vendor/microtex/LICENSE +21 -0
- package/native/vendor/microtex/MicroTeXInstall.cmake +42 -0
- package/native/vendor/microtex/README.md +600 -0
- package/native/vendor/microtex/build.zig +209 -0
- package/native/vendor/microtex/clatexmath.wrap +6 -0
- package/native/vendor/microtex/doc/meson.build +38 -0
- package/native/vendor/microtex/doc/microtex-doc.toml.in +47 -0
- package/native/vendor/microtex/doc/microtex.svg +39 -0
- package/native/vendor/microtex/doc/urlmap.js +6 -0
- package/native/vendor/microtex/example/gtk/CMakeLists.txt +68 -0
- package/native/vendor/microtex/example/gtk/gtk_main.c +170 -0
- package/native/vendor/microtex/example/gtk/isamples.cpp +21 -0
- package/native/vendor/microtex/example/gtk/isamples.h +15 -0
- package/native/vendor/microtex/example/gtk/meson.build +27 -0
- package/native/vendor/microtex/example/gtk/microtex-gtk.gresource.xml +6 -0
- package/native/vendor/microtex/example/gtk/microtex-gtk.ui +117 -0
- package/native/vendor/microtex/example/gtkmm/CMakeLists.txt +19 -0
- package/native/vendor/microtex/example/gtkmm/gtkmm_main.cpp +531 -0
- package/native/vendor/microtex/example/gtkmm/meson.build +19 -0
- package/native/vendor/microtex/example/memcheck/CMakeLists.txt +12 -0
- package/native/vendor/microtex/example/memcheck/mem_check_main.cpp +154 -0
- package/native/vendor/microtex/example/qt/CMakeLists.txt +37 -0
- package/native/vendor/microtex/example/qt/meson.build +25 -0
- package/native/vendor/microtex/example/qt/qt_main.cpp +70 -0
- package/native/vendor/microtex/example/qt/qt_mainwindow.cpp +107 -0
- package/native/vendor/microtex/example/qt/qt_mainwindow.h +40 -0
- package/native/vendor/microtex/example/qt/qt_skiatexwidget.cpp +149 -0
- package/native/vendor/microtex/example/qt/qt_skiatexwidget.h +48 -0
- package/native/vendor/microtex/example/qt/qt_tex_render.h +15 -0
- package/native/vendor/microtex/example/qt/qt_texqmlitem.cpp +56 -0
- package/native/vendor/microtex/example/qt/qt_texqmlitem.h +31 -0
- package/native/vendor/microtex/example/qt/qt_texwidget.cpp +62 -0
- package/native/vendor/microtex/example/qt/qt_texwidget.h +31 -0
- package/native/vendor/microtex/example/qtpng/CMakeLists.txt +11 -0
- package/native/vendor/microtex/example/qtpng/latex2png.cpp +115 -0
- package/native/vendor/microtex/example/samples/samples.cpp +52 -0
- package/native/vendor/microtex/example/samples/samples.h +32 -0
- package/native/vendor/microtex/example/win32/CMakeLists.txt +15 -0
- package/native/vendor/microtex/example/win32/meson.build +18 -0
- package/native/vendor/microtex/example/win32/win32_main.cpp +375 -0
- package/native/vendor/microtex/githooks/pre-commit +19 -0
- package/native/vendor/microtex/githooks/pre-push +103 -0
- package/native/vendor/microtex/lib/CMakeLists.txt +234 -0
- package/native/vendor/microtex/lib/atom/atom.cpp +14 -0
- package/native/vendor/microtex/lib/atom/atom.h +96 -0
- package/native/vendor/microtex/lib/atom/atom_accent.cpp +115 -0
- package/native/vendor/microtex/lib/atom/atom_accent.h +53 -0
- package/native/vendor/microtex/lib/atom/atom_basic.cpp +146 -0
- package/native/vendor/microtex/lib/atom/atom_basic.h +273 -0
- package/native/vendor/microtex/lib/atom/atom_box.cpp +41 -0
- package/native/vendor/microtex/lib/atom/atom_box.h +70 -0
- package/native/vendor/microtex/lib/atom/atom_char.cpp +99 -0
- package/native/vendor/microtex/lib/atom/atom_char.h +147 -0
- package/native/vendor/microtex/lib/atom/atom_delim.cpp +65 -0
- package/native/vendor/microtex/lib/atom/atom_delim.h +58 -0
- package/native/vendor/microtex/lib/atom/atom_fence.cpp +65 -0
- package/native/vendor/microtex/lib/atom/atom_fence.h +56 -0
- package/native/vendor/microtex/lib/atom/atom_font.cpp +20 -0
- package/native/vendor/microtex/lib/atom/atom_font.h +49 -0
- package/native/vendor/microtex/lib/atom/atom_frac.cpp +101 -0
- package/native/vendor/microtex/lib/atom/atom_frac.h +42 -0
- package/native/vendor/microtex/lib/atom/atom_matrix.cpp +756 -0
- package/native/vendor/microtex/lib/atom/atom_matrix.h +268 -0
- package/native/vendor/microtex/lib/atom/atom_misc.cpp +230 -0
- package/native/vendor/microtex/lib/atom/atom_misc.h +200 -0
- package/native/vendor/microtex/lib/atom/atom_operator.cpp +51 -0
- package/native/vendor/microtex/lib/atom/atom_operator.h +41 -0
- package/native/vendor/microtex/lib/atom/atom_root.cpp +61 -0
- package/native/vendor/microtex/lib/atom/atom_root.h +27 -0
- package/native/vendor/microtex/lib/atom/atom_row.cpp +334 -0
- package/native/vendor/microtex/lib/atom/atom_row.h +176 -0
- package/native/vendor/microtex/lib/atom/atom_scripts.cpp +182 -0
- package/native/vendor/microtex/lib/atom/atom_scripts.h +52 -0
- package/native/vendor/microtex/lib/atom/atom_sideset.cpp +92 -0
- package/native/vendor/microtex/lib/atom/atom_sideset.h +24 -0
- package/native/vendor/microtex/lib/atom/atom_space.cpp +22 -0
- package/native/vendor/microtex/lib/atom/atom_space.h +38 -0
- package/native/vendor/microtex/lib/atom/atom_stack.cpp +117 -0
- package/native/vendor/microtex/lib/atom/atom_stack.h +103 -0
- package/native/vendor/microtex/lib/atom/atom_text.cpp +17 -0
- package/native/vendor/microtex/lib/atom/atom_text.h +33 -0
- package/native/vendor/microtex/lib/atom/atom_vrow.cpp +96 -0
- package/native/vendor/microtex/lib/atom/atom_vrow.h +47 -0
- package/native/vendor/microtex/lib/atom/atom_zstack.cpp +66 -0
- package/native/vendor/microtex/lib/atom/atom_zstack.h +37 -0
- package/native/vendor/microtex/lib/atom/colors_def.cpp +157 -0
- package/native/vendor/microtex/lib/atom/meson.build +50 -0
- package/native/vendor/microtex/lib/box/box.cpp +49 -0
- package/native/vendor/microtex/lib/box/box.h +184 -0
- package/native/vendor/microtex/lib/box/box_factory.cpp +162 -0
- package/native/vendor/microtex/lib/box/box_factory.h +24 -0
- package/native/vendor/microtex/lib/box/box_group.cpp +503 -0
- package/native/vendor/microtex/lib/box/box_group.h +285 -0
- package/native/vendor/microtex/lib/box/box_single.cpp +179 -0
- package/native/vendor/microtex/lib/box/box_single.h +157 -0
- package/native/vendor/microtex/lib/box/meson.build +15 -0
- package/native/vendor/microtex/lib/core/debug_config.cpp +3 -0
- package/native/vendor/microtex/lib/core/debug_config.h +24 -0
- package/native/vendor/microtex/lib/core/formula.cpp +180 -0
- package/native/vendor/microtex/lib/core/formula.h +137 -0
- package/native/vendor/microtex/lib/core/formula_def.cpp +167 -0
- package/native/vendor/microtex/lib/core/glue.cpp +108 -0
- package/native/vendor/microtex/lib/core/glue.h +55 -0
- package/native/vendor/microtex/lib/core/localized_num.cpp +51 -0
- package/native/vendor/microtex/lib/core/meson.build +19 -0
- package/native/vendor/microtex/lib/core/parser.cpp +874 -0
- package/native/vendor/microtex/lib/core/parser.h +306 -0
- package/native/vendor/microtex/lib/core/split.cpp +185 -0
- package/native/vendor/microtex/lib/core/split.h +40 -0
- package/native/vendor/microtex/lib/env/env.cpp +141 -0
- package/native/vendor/microtex/lib/env/env.h +221 -0
- package/native/vendor/microtex/lib/env/meson.build +11 -0
- package/native/vendor/microtex/lib/env/units.cpp +109 -0
- package/native/vendor/microtex/lib/env/units.h +61 -0
- package/native/vendor/microtex/lib/graphic/font_style.cpp +63 -0
- package/native/vendor/microtex/lib/graphic/font_style.h +61 -0
- package/native/vendor/microtex/lib/graphic/graphic.cpp +38 -0
- package/native/vendor/microtex/lib/graphic/graphic.h +314 -0
- package/native/vendor/microtex/lib/graphic/graphic_basic.cpp +44 -0
- package/native/vendor/microtex/lib/graphic/graphic_basic.h +131 -0
- package/native/vendor/microtex/lib/graphic/meson.build +13 -0
- package/native/vendor/microtex/lib/macro/macro.cpp +143 -0
- package/native/vendor/microtex/lib/macro/macro.h +155 -0
- package/native/vendor/microtex/lib/macro/macro_accent.cpp +50 -0
- package/native/vendor/microtex/lib/macro/macro_accent.h +61 -0
- package/native/vendor/microtex/lib/macro/macro_boxes.h +68 -0
- package/native/vendor/microtex/lib/macro/macro_colors.cpp +42 -0
- package/native/vendor/microtex/lib/macro/macro_colors.h +42 -0
- package/native/vendor/microtex/lib/macro/macro_decl.h +16 -0
- package/native/vendor/microtex/lib/macro/macro_def.cpp +418 -0
- package/native/vendor/microtex/lib/macro/macro_delims.cpp +56 -0
- package/native/vendor/microtex/lib/macro/macro_delims.h +73 -0
- package/native/vendor/microtex/lib/macro/macro_env.h +212 -0
- package/native/vendor/microtex/lib/macro/macro_fonts.cpp +53 -0
- package/native/vendor/microtex/lib/macro/macro_fonts.h +78 -0
- package/native/vendor/microtex/lib/macro/macro_frac.cpp +138 -0
- package/native/vendor/microtex/lib/macro/macro_frac.h +50 -0
- package/native/vendor/microtex/lib/macro/macro_misc.cpp +211 -0
- package/native/vendor/microtex/lib/macro/macro_misc.h +217 -0
- package/native/vendor/microtex/lib/macro/macro_scripts.cpp +32 -0
- package/native/vendor/microtex/lib/macro/macro_scripts.h +17 -0
- package/native/vendor/microtex/lib/macro/macro_sizes.h +110 -0
- package/native/vendor/microtex/lib/macro/macro_space.cpp +31 -0
- package/native/vendor/microtex/lib/macro/macro_space.h +17 -0
- package/native/vendor/microtex/lib/macro/macro_styles.cpp +45 -0
- package/native/vendor/microtex/lib/macro/macro_styles.h +22 -0
- package/native/vendor/microtex/lib/macro/macro_types.h +48 -0
- package/native/vendor/microtex/lib/macro/meson.build +33 -0
- package/native/vendor/microtex/lib/meson.build +102 -0
- package/native/vendor/microtex/lib/microtex.cpp +208 -0
- package/native/vendor/microtex/lib/microtex.h +225 -0
- package/native/vendor/microtex/lib/microtexConfig.cmake.in +2 -0
- package/native/vendor/microtex/lib/microtexapi.h +22 -0
- package/native/vendor/microtex/lib/microtexconfig.h.in +7 -0
- package/native/vendor/microtex/lib/microtexexport.h +31 -0
- package/native/vendor/microtex/lib/otf/clm.cpp +405 -0
- package/native/vendor/microtex/lib/otf/clm.h +61 -0
- package/native/vendor/microtex/lib/otf/fontsense.cpp +191 -0
- package/native/vendor/microtex/lib/otf/fontsense.h +20 -0
- package/native/vendor/microtex/lib/otf/glyph.cpp +53 -0
- package/native/vendor/microtex/lib/otf/glyph.h +384 -0
- package/native/vendor/microtex/lib/otf/math_consts.h +154 -0
- package/native/vendor/microtex/lib/otf/meson.build +18 -0
- package/native/vendor/microtex/lib/otf/otf.cpp +84 -0
- package/native/vendor/microtex/lib/otf/otf.h +177 -0
- package/native/vendor/microtex/lib/otf/otfconfig.h +32 -0
- package/native/vendor/microtex/lib/otf/path.cpp +187 -0
- package/native/vendor/microtex/lib/otf/path.h +120 -0
- package/native/vendor/microtex/lib/render/builder.cpp +68 -0
- package/native/vendor/microtex/lib/render/builder.h +73 -0
- package/native/vendor/microtex/lib/render/meson.build +11 -0
- package/native/vendor/microtex/lib/render/render.cpp +136 -0
- package/native/vendor/microtex/lib/render/render.h +59 -0
- package/native/vendor/microtex/lib/unimath/font_meta.h +22 -0
- package/native/vendor/microtex/lib/unimath/font_src.cpp +21 -0
- package/native/vendor/microtex/lib/unimath/font_src.h +61 -0
- package/native/vendor/microtex/lib/unimath/math_type.cpp +318 -0
- package/native/vendor/microtex/lib/unimath/math_type.h +105 -0
- package/native/vendor/microtex/lib/unimath/meson.build +18 -0
- package/native/vendor/microtex/lib/unimath/uni_char.cpp +121 -0
- package/native/vendor/microtex/lib/unimath/uni_char.h +109 -0
- package/native/vendor/microtex/lib/unimath/uni_font.cpp +248 -0
- package/native/vendor/microtex/lib/unimath/uni_font.h +139 -0
- package/native/vendor/microtex/lib/unimath/uni_symbol.cpp +2929 -0
- package/native/vendor/microtex/lib/unimath/uni_symbol.h +31 -0
- package/native/vendor/microtex/lib/utils/dict_tree.h +68 -0
- package/native/vendor/microtex/lib/utils/exceptions.h +61 -0
- package/native/vendor/microtex/lib/utils/log.h +34 -0
- package/native/vendor/microtex/lib/utils/meson.build +18 -0
- package/native/vendor/microtex/lib/utils/nums.h +24 -0
- package/native/vendor/microtex/lib/utils/string_utils.cpp +85 -0
- package/native/vendor/microtex/lib/utils/string_utils.h +130 -0
- package/native/vendor/microtex/lib/utils/types.h +152 -0
- package/native/vendor/microtex/lib/utils/utf.cpp +115 -0
- package/native/vendor/microtex/lib/utils/utf.h +58 -0
- package/native/vendor/microtex/lib/utils/utils.cpp +40 -0
- package/native/vendor/microtex/lib/utils/utils.h +88 -0
- package/native/vendor/microtex/lib/wrapper/byte_seq.cpp +46 -0
- package/native/vendor/microtex/lib/wrapper/byte_seq.h +70 -0
- package/native/vendor/microtex/lib/wrapper/callback.cpp +10 -0
- package/native/vendor/microtex/lib/wrapper/callback.h +72 -0
- package/native/vendor/microtex/lib/wrapper/cwrapper.cpp +206 -0
- package/native/vendor/microtex/lib/wrapper/cwrapper.h +305 -0
- package/native/vendor/microtex/lib/wrapper/graphic_wrapper.cpp +211 -0
- package/native/vendor/microtex/lib/wrapper/graphic_wrapper.h +159 -0
- package/native/vendor/microtex/lib/wrapper/meson.build +22 -0
- package/native/vendor/microtex/meson.build +75 -0
- package/native/vendor/microtex/meson_options.txt +29 -0
- package/native/vendor/microtex/platform/cairo/CMakeLists.txt +36 -0
- package/native/vendor/microtex/platform/cairo/graphic_cairo.cpp +384 -0
- package/native/vendor/microtex/platform/cairo/graphic_cairo.h +119 -0
- package/native/vendor/microtex/platform/cairo/meson.build +47 -0
- package/native/vendor/microtex/platform/cairo/microtex-cairoConfig.cmake.in +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/.metadata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/CHANGELOG.md +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/LICENSE +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/README.md +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/analysis_options.yaml +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/build.gradle +56 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/settings.gradle +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/src/main/AndroidManifest.xml +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/android/src/main/kotlin/io/nano/microtex/microtex/MicrotexPlugin.kt +35 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/.metadata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/README.md +16 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/analysis_options.yaml +31 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/build.gradle +68 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/debug/AndroidManifest.xml +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/AndroidManifest.xml +34 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/kotlin/io/nano/microtex/microtex_example/MainActivity.kt +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable/launch_background.xml +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/drawable-v21/launch_background.xml +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values/styles.xml +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/main/res/values-night/styles.xml +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/app/src/profile/AndroidManifest.xml +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/build.gradle +31 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle/wrapper/gradle-wrapper.properties +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/gradle.properties +3 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/android/settings.gradle +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/AppFrameworkInfo.plist +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Flutter/Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile +41 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Podfile.lock +22 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/AppDelegate.swift +13 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +122 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md +5 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/LaunchScreen.storyboard +37 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Base.lproj/Main.storyboard +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Info.plist +49 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner/Runner-Bridging-Header.h +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.pbxproj +549 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/main.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_in_one.dart +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/screen/edit_screen.dart +208 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/convert_spans.dart +63 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/utils/string_ext.dart +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/cmp.dart +118 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/draggable.dart +75 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/rich.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/split.dart +72 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_highlight_controller.dart +66 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/lib/widget/tex_input_controller.dart +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/CMakeLists.txt +116 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/CMakeLists.txt +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.cc +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugin_registrant.h +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/flutter/generated_plugins.cmake +24 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/main.cc +6 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.cc +104 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/linux/my_application.h +18 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/Flutter-Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Flutter/GeneratedPluginRegistrant.swift +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile +40 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Podfile.lock +22 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/AppDelegate.swift +9 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json +68 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Base.lproj/MainMenu.xib +343 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/AppInfo.xcconfig +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Debug.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Release.xcconfig +2 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Configs/Warnings.xcconfig +13 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/DebugProfile.entitlements +12 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Info.plist +32 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/MainFlutterWindow.swift +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner/Release.entitlements +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.pbxproj +633 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme +87 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/contents.xcworkspacedata +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.lock +191 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/pubspec.yaml +56 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/test/widget_test.dart +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/CMakeLists.txt +95 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/CMakeLists.txt +103 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.cc +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugin_registrant.h +15 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/flutter/generated_plugins.cmake +24 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/CMakeLists.txt +17 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/Runner.rc +121 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.cpp +61 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/flutter_window.h +33 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/main.cpp +43 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resource.h +16 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/resources/app_icon.ico +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/runner.exe.manifest +20 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.cpp +64 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/utils.h +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.cpp +245 -0
- package/native/vendor/microtex/platform/flutter/microtex/example/windows/runner/win32_window.h +98 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Assets/.gitkeep +0 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/MicrotexPlugin.m +19 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/SwiftMicrotexPlugin.swift +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/Classes/dummy.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/ios/microtex.podspec +27 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/microtex.dart +7 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/bindings.dart +218 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/bounds.dart +10 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/context.dart +205 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontdesc.dart +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/fontmeta.dart +14 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/pathcache.dart +17 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/render.dart +291 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/texstyle.dart +11 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/textlayout.dart +93 -0
- package/native/vendor/microtex/platform/flutter/microtex/lib/src/widget.dart +163 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/CMakeLists.txt +33 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/include/microtex/microtex_plugin.h +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/linux/microtex_plugin.cc +70 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/MicrotexPlugin.swift +20 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/dummy.h +4 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/Classes/microtex-Bridging-Header.h +1 -0
- package/native/vendor/microtex/platform/flutter/microtex/macos/microtex.podspec +26 -0
- package/native/vendor/microtex/platform/flutter/microtex/nativelib/CMakeLists.txt +44 -0
- package/native/vendor/microtex/platform/flutter/microtex/nativelib/builddarwin.sh +108 -0
- package/native/vendor/microtex/platform/flutter/microtex/pubspec.yaml +37 -0
- package/native/vendor/microtex/platform/flutter/microtex/test/microtex_test.dart +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/CMakeLists.txt +32 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/include/microtex/microtex_plugin.h +23 -0
- package/native/vendor/microtex/platform/flutter/microtex/windows/microtex_plugin.cpp +82 -0
- package/native/vendor/microtex/platform/gdi_win/CMakeLists.txt +20 -0
- package/native/vendor/microtex/platform/gdi_win/graphic_win32.cpp +352 -0
- package/native/vendor/microtex/platform/gdi_win/graphic_win32.h +137 -0
- package/native/vendor/microtex/platform/gdi_win/meson.build +39 -0
- package/native/vendor/microtex/platform/gtk/CMakeLists.txt +36 -0
- package/native/vendor/microtex/platform/gtk/meson.build +65 -0
- package/native/vendor/microtex/platform/gtk/microtex-gtkConfig.cmake.in +11 -0
- package/native/vendor/microtex/platform/gtk/microtexequation.cpp +708 -0
- package/native/vendor/microtex/platform/gtk/microtexequation.h +72 -0
- package/native/vendor/microtex/platform/qt/CMakeLists.txt +37 -0
- package/native/vendor/microtex/platform/qt/graphic_qt.cpp +355 -0
- package/native/vendor/microtex/platform/qt/graphic_qt.h +116 -0
- package/native/vendor/microtex/platform/qt/meson.build +38 -0
- package/native/vendor/microtex/platform/qt/microtex-qtConfig.cmake.in +7 -0
- package/native/vendor/microtex/platform/skia/CMakeLists.txt +46 -0
- package/native/vendor/microtex/platform/skia/graphic_skia.cpp +306 -0
- package/native/vendor/microtex/platform/skia/graphic_skia.h +125 -0
- package/native/vendor/microtex/platform/skia/microtex-skiaConfig.cmake.in +6 -0
- package/native/vendor/microtex/platform/wasm/CMakeLists.txt +38 -0
- package/native/vendor/microtex/platform/wasm/emscripten.cross +31 -0
- package/native/vendor/microtex/platform/wasm/main.cpp +15 -0
- package/native/vendor/microtex/platform/wasm/meson.build +8 -0
- package/native/vendor/microtex/platform/wasm/prebuild-example-meson.sh +21 -0
- package/native/vendor/microtex/platform/wasm/prebuild-example.sh +21 -0
- package/native/vendor/microtex/platform/wasm/prebuild-lib-meson.sh +28 -0
- package/native/vendor/microtex/platform/wasm/prebuild-lib.sh +31 -0
- package/native/vendor/microtex/platform/wasm/web/.babelrc +10 -0
- package/native/vendor/microtex/platform/wasm/web/example/examples.js +43 -0
- package/native/vendor/microtex/platform/wasm/web/example/hello.js +31 -0
- package/native/vendor/microtex/platform/wasm/web/example/index.html +55 -0
- package/native/vendor/microtex/platform/wasm/web/example/index.js +243 -0
- package/native/vendor/microtex/platform/wasm/web/example/styles.css +86 -0
- package/native/vendor/microtex/platform/wasm/web/example/utils.js +47 -0
- package/native/vendor/microtex/platform/wasm/web/lib/context.js +271 -0
- package/native/vendor/microtex/platform/wasm/web/lib/index.js +10 -0
- package/native/vendor/microtex/platform/wasm/web/lib/render.js +293 -0
- package/native/vendor/microtex/platform/wasm/web/lib/runtime.js +14 -0
- package/native/vendor/microtex/platform/wasm/web/lib/svg.js +237 -0
- package/native/vendor/microtex/platform/wasm/web/lib/textlayout.js +88 -0
- package/native/vendor/microtex/platform/wasm/web/package-lock.json +5931 -0
- package/native/vendor/microtex/platform/wasm/web/package.json +45 -0
- package/native/vendor/microtex/platform/wasm/web/publish-example.sh +17 -0
- package/native/vendor/microtex/platform/wasm/web/rollup.config.example.js +24 -0
- package/native/vendor/microtex/platform/wasm/web/rollup.config.lib.js +16 -0
- package/native/vendor/microtex/prebuilt/otf2clm.py +807 -0
- package/native/vendor/microtex/prebuilt/otf2clm.sh +9 -0
- package/native/vendor/microtex/prebuilt/preclms.sh +17 -0
- package/native/vendor/microtex/readme/example_bw_false.svg +680 -0
- package/native/vendor/microtex/readme/example_bw_true.svg +680 -0
- package/native/vendor/microtex/readme/example_cjk_trying.svg +54 -0
- package/native/vendor/microtex/readme/example_custom_symbols.svg +92 -0
- package/native/vendor/microtex/readme/example_debug.svg +764 -0
- package/native/vendor/microtex/readme/example_emoji.svg +199 -0
- package/native/vendor/microtex/readme/example_have_log.svg +79 -0
- package/native/vendor/microtex/readme/example_keep_trying.svg +101 -0
- package/native/vendor/microtex/readme/example_logos.svg +50 -0
- package/native/vendor/microtex/readme/example_ubuntu.png +0 -0
- package/native/vendor/microtex/readme/example_windows.png +0 -0
- package/native/vendor/microtex/readme/samples/sample_0.svg +665 -0
- package/native/vendor/microtex/readme/samples/sample_1.svg +1259 -0
- package/native/vendor/microtex/readme/samples/sample_10.svg +333 -0
- package/native/vendor/microtex/readme/samples/sample_11.svg +306 -0
- package/native/vendor/microtex/readme/samples/sample_2.svg +2461 -0
- package/native/vendor/microtex/readme/samples/sample_3.svg +2653 -0
- package/native/vendor/microtex/readme/samples/sample_4.svg +554 -0
- package/native/vendor/microtex/readme/samples/sample_5.svg +247 -0
- package/native/vendor/microtex/readme/samples/sample_6.svg +1082 -0
- package/native/vendor/microtex/readme/samples/sample_7.svg +518 -0
- package/native/vendor/microtex/readme/samples/sample_8.svg +529 -0
- package/native/vendor/microtex/readme/samples/sample_9.svg +1702 -0
- package/native/vendor/microtex/readme/samples.md +301 -0
- package/native/vendor/microtex/readme/tex_logo.svg +19 -0
- package/native/vendor/microtex/res/EXAMPLE.txt +25 -0
- package/native/vendor/microtex/res/SAMPLES.tex +946 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/firamath/FiraMath-Regular.otf +0 -0
- package/native/vendor/microtex/res/firamath/README.md +42 -0
- package/native/vendor/microtex/res/lm-math/README +92 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.clm1 +0 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.clm2 +0 -0
- package/native/vendor/microtex/res/lm-math/latinmodern-math.otf +0 -0
- package/native/vendor/microtex/res/tex-gyre/README-TeX-Gyre-DejaVu-Math.txt +82 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm1 +0 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.clm2 +0 -0
- package/native/vendor/microtex/res/tex-gyre/texgyredejavu-math.otf +0 -0
- package/native/vendor/microtex/res/xits/FONTLOG.txt +246 -0
- package/native/vendor/microtex/res/xits/OFL.txt +98 -0
- package/native/vendor/microtex/res/xits/README.txt +15 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Bold.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-BoldItalic.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Italic.otf +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITS-Regular.otf +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Bold.otf +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.clm1 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.clm2 +0 -0
- package/native/vendor/microtex/res/xits/XITSMath-Regular.otf +0 -0
- package/native/vendor/microtex/test/clm/meson.build +10 -0
- package/native/vendor/microtex/test/clm/test_clm.cpp +140 -0
- package/native/vendor/microtex/test/env/meson.build +10 -0
- package/native/vendor/microtex/test/env/test_env.cpp +100 -0
- package/native/vendor/microtex/test/fuzzer/afl.native +20 -0
- package/native/vendor/microtex/test/fuzzer/fuzz.sh +135 -0
- package/native/vendor/microtex/test/fuzzer/fuzzer.cpp +61 -0
- package/native/vendor/microtex/test/fuzzer/generateSeed.java +33 -0
- package/native/vendor/microtex/test/fuzzer/meson.build +9 -0
- package/native/vendor/microtex/test/fuzzer/microtex.dict +3708 -0
- package/native/vendor/microtex/test/fuzzer/platform_none.cpp +100 -0
- package/native/vendor/microtex/test/has_filesystem.cpp +8 -0
- package/native/vendor/microtex/test/meson.build +6 -0
- package/native/vendor/nanosvg.h +3278 -0
- package/native/vendor/nanosvgrast.h +1472 -0
- package/native/vendor/zigtex/.github/assets/example.svg +27 -0
- package/native/vendor/zigtex/LICENSE +674 -0
- package/native/vendor/zigtex/README.md +52 -0
- package/native/vendor/zigtex/build.zig +52 -0
- package/native/vendor/zigtex/build.zig.zon +16 -0
- package/native/vendor/zigtex/fonts/latinmodern-math.clm2 +0 -0
- package/native/vendor/zigtex/src/main.zig +22 -0
- package/native/vendor/zigtex/src/root.zig +124 -0
- package/native/vendor/zigtex/src/svg.zig +273 -0
- package/native/vendor/zigtex/src/tex.zig +383 -0
- package/native/zigtex-0.16.patch +35 -0
- package/package.json +27 -0
- package/scripts/bootstrap-native +89 -0
|
@@ -0,0 +1,549 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 50;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
|
|
11
|
+
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
|
|
12
|
+
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
|
|
13
|
+
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
|
|
14
|
+
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
|
|
15
|
+
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
|
|
16
|
+
DAC8CBA3FACCAEA335C13815 /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 048CF153F5A6F64C8DA8431C /* Pods_Runner.framework */; };
|
|
17
|
+
/* End PBXBuildFile section */
|
|
18
|
+
|
|
19
|
+
/* Begin PBXCopyFilesBuildPhase section */
|
|
20
|
+
9705A1C41CF9048500538489 /* Embed Frameworks */ = {
|
|
21
|
+
isa = PBXCopyFilesBuildPhase;
|
|
22
|
+
buildActionMask = 2147483647;
|
|
23
|
+
dstPath = "";
|
|
24
|
+
dstSubfolderSpec = 10;
|
|
25
|
+
files = (
|
|
26
|
+
);
|
|
27
|
+
name = "Embed Frameworks";
|
|
28
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
29
|
+
};
|
|
30
|
+
/* End PBXCopyFilesBuildPhase section */
|
|
31
|
+
|
|
32
|
+
/* Begin PBXFileReference section */
|
|
33
|
+
048CF153F5A6F64C8DA8431C /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
34
|
+
1453939EBD2E1BE1411D19FE /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
|
|
35
|
+
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; };
|
|
36
|
+
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; };
|
|
37
|
+
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; };
|
|
38
|
+
45CCF264D45A4A7C2677EDD8 /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; };
|
|
39
|
+
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; };
|
|
40
|
+
74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
|
41
|
+
7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; };
|
|
42
|
+
9038CA9E5970F6596EE0FA5A /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
|
|
43
|
+
9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; };
|
|
44
|
+
9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; };
|
|
45
|
+
97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
46
|
+
97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
|
47
|
+
97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
|
48
|
+
97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
49
|
+
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
50
|
+
/* End PBXFileReference section */
|
|
51
|
+
|
|
52
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
53
|
+
97C146EB1CF9000F007C117D /* Frameworks */ = {
|
|
54
|
+
isa = PBXFrameworksBuildPhase;
|
|
55
|
+
buildActionMask = 2147483647;
|
|
56
|
+
files = (
|
|
57
|
+
DAC8CBA3FACCAEA335C13815 /* Pods_Runner.framework in Frameworks */,
|
|
58
|
+
);
|
|
59
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
60
|
+
};
|
|
61
|
+
/* End PBXFrameworksBuildPhase section */
|
|
62
|
+
|
|
63
|
+
/* Begin PBXGroup section */
|
|
64
|
+
744782E63F51275DC62DEE9A /* Frameworks */ = {
|
|
65
|
+
isa = PBXGroup;
|
|
66
|
+
children = (
|
|
67
|
+
048CF153F5A6F64C8DA8431C /* Pods_Runner.framework */,
|
|
68
|
+
);
|
|
69
|
+
name = Frameworks;
|
|
70
|
+
sourceTree = "<group>";
|
|
71
|
+
};
|
|
72
|
+
9740EEB11CF90186004384FC /* Flutter */ = {
|
|
73
|
+
isa = PBXGroup;
|
|
74
|
+
children = (
|
|
75
|
+
3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
|
|
76
|
+
9740EEB21CF90195004384FC /* Debug.xcconfig */,
|
|
77
|
+
7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
|
|
78
|
+
9740EEB31CF90195004384FC /* Generated.xcconfig */,
|
|
79
|
+
);
|
|
80
|
+
name = Flutter;
|
|
81
|
+
sourceTree = "<group>";
|
|
82
|
+
};
|
|
83
|
+
97C146E51CF9000F007C117D = {
|
|
84
|
+
isa = PBXGroup;
|
|
85
|
+
children = (
|
|
86
|
+
9740EEB11CF90186004384FC /* Flutter */,
|
|
87
|
+
97C146F01CF9000F007C117D /* Runner */,
|
|
88
|
+
97C146EF1CF9000F007C117D /* Products */,
|
|
89
|
+
A30FFBB7EBA3760F4C5EA8A0 /* Pods */,
|
|
90
|
+
744782E63F51275DC62DEE9A /* Frameworks */,
|
|
91
|
+
);
|
|
92
|
+
sourceTree = "<group>";
|
|
93
|
+
};
|
|
94
|
+
97C146EF1CF9000F007C117D /* Products */ = {
|
|
95
|
+
isa = PBXGroup;
|
|
96
|
+
children = (
|
|
97
|
+
97C146EE1CF9000F007C117D /* Runner.app */,
|
|
98
|
+
);
|
|
99
|
+
name = Products;
|
|
100
|
+
sourceTree = "<group>";
|
|
101
|
+
};
|
|
102
|
+
97C146F01CF9000F007C117D /* Runner */ = {
|
|
103
|
+
isa = PBXGroup;
|
|
104
|
+
children = (
|
|
105
|
+
97C146FA1CF9000F007C117D /* Main.storyboard */,
|
|
106
|
+
97C146FD1CF9000F007C117D /* Assets.xcassets */,
|
|
107
|
+
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
|
|
108
|
+
97C147021CF9000F007C117D /* Info.plist */,
|
|
109
|
+
1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
|
|
110
|
+
1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
|
|
111
|
+
74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
|
|
112
|
+
74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
|
|
113
|
+
);
|
|
114
|
+
path = Runner;
|
|
115
|
+
sourceTree = "<group>";
|
|
116
|
+
};
|
|
117
|
+
A30FFBB7EBA3760F4C5EA8A0 /* Pods */ = {
|
|
118
|
+
isa = PBXGroup;
|
|
119
|
+
children = (
|
|
120
|
+
45CCF264D45A4A7C2677EDD8 /* Pods-Runner.debug.xcconfig */,
|
|
121
|
+
1453939EBD2E1BE1411D19FE /* Pods-Runner.release.xcconfig */,
|
|
122
|
+
9038CA9E5970F6596EE0FA5A /* Pods-Runner.profile.xcconfig */,
|
|
123
|
+
);
|
|
124
|
+
name = Pods;
|
|
125
|
+
path = Pods;
|
|
126
|
+
sourceTree = "<group>";
|
|
127
|
+
};
|
|
128
|
+
/* End PBXGroup section */
|
|
129
|
+
|
|
130
|
+
/* Begin PBXNativeTarget section */
|
|
131
|
+
97C146ED1CF9000F007C117D /* Runner */ = {
|
|
132
|
+
isa = PBXNativeTarget;
|
|
133
|
+
buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
|
|
134
|
+
buildPhases = (
|
|
135
|
+
6AE9DB3C7BFEE257DA7AB3BC /* [CP] Check Pods Manifest.lock */,
|
|
136
|
+
9740EEB61CF901F6004384FC /* Run Script */,
|
|
137
|
+
97C146EA1CF9000F007C117D /* Sources */,
|
|
138
|
+
97C146EB1CF9000F007C117D /* Frameworks */,
|
|
139
|
+
97C146EC1CF9000F007C117D /* Resources */,
|
|
140
|
+
9705A1C41CF9048500538489 /* Embed Frameworks */,
|
|
141
|
+
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
|
|
142
|
+
E7075149C936E66C083FDBE6 /* [CP] Embed Pods Frameworks */,
|
|
143
|
+
);
|
|
144
|
+
buildRules = (
|
|
145
|
+
);
|
|
146
|
+
dependencies = (
|
|
147
|
+
);
|
|
148
|
+
name = Runner;
|
|
149
|
+
productName = Runner;
|
|
150
|
+
productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
|
|
151
|
+
productType = "com.apple.product-type.application";
|
|
152
|
+
};
|
|
153
|
+
/* End PBXNativeTarget section */
|
|
154
|
+
|
|
155
|
+
/* Begin PBXProject section */
|
|
156
|
+
97C146E61CF9000F007C117D /* Project object */ = {
|
|
157
|
+
isa = PBXProject;
|
|
158
|
+
attributes = {
|
|
159
|
+
LastUpgradeCheck = 1300;
|
|
160
|
+
ORGANIZATIONNAME = "";
|
|
161
|
+
TargetAttributes = {
|
|
162
|
+
97C146ED1CF9000F007C117D = {
|
|
163
|
+
CreatedOnToolsVersion = 7.3.1;
|
|
164
|
+
LastSwiftMigration = 1100;
|
|
165
|
+
};
|
|
166
|
+
};
|
|
167
|
+
};
|
|
168
|
+
buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
|
|
169
|
+
compatibilityVersion = "Xcode 9.3";
|
|
170
|
+
developmentRegion = en;
|
|
171
|
+
hasScannedForEncodings = 0;
|
|
172
|
+
knownRegions = (
|
|
173
|
+
en,
|
|
174
|
+
Base,
|
|
175
|
+
);
|
|
176
|
+
mainGroup = 97C146E51CF9000F007C117D;
|
|
177
|
+
productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
|
|
178
|
+
projectDirPath = "";
|
|
179
|
+
projectRoot = "";
|
|
180
|
+
targets = (
|
|
181
|
+
97C146ED1CF9000F007C117D /* Runner */,
|
|
182
|
+
);
|
|
183
|
+
};
|
|
184
|
+
/* End PBXProject section */
|
|
185
|
+
|
|
186
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
187
|
+
97C146EC1CF9000F007C117D /* Resources */ = {
|
|
188
|
+
isa = PBXResourcesBuildPhase;
|
|
189
|
+
buildActionMask = 2147483647;
|
|
190
|
+
files = (
|
|
191
|
+
97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
|
|
192
|
+
3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
|
|
193
|
+
97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
|
|
194
|
+
97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
|
|
195
|
+
);
|
|
196
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
197
|
+
};
|
|
198
|
+
/* End PBXResourcesBuildPhase section */
|
|
199
|
+
|
|
200
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
201
|
+
3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
|
|
202
|
+
isa = PBXShellScriptBuildPhase;
|
|
203
|
+
buildActionMask = 2147483647;
|
|
204
|
+
files = (
|
|
205
|
+
);
|
|
206
|
+
inputPaths = (
|
|
207
|
+
);
|
|
208
|
+
name = "Thin Binary";
|
|
209
|
+
outputPaths = (
|
|
210
|
+
);
|
|
211
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
212
|
+
shellPath = /bin/sh;
|
|
213
|
+
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
|
|
214
|
+
};
|
|
215
|
+
6AE9DB3C7BFEE257DA7AB3BC /* [CP] Check Pods Manifest.lock */ = {
|
|
216
|
+
isa = PBXShellScriptBuildPhase;
|
|
217
|
+
buildActionMask = 2147483647;
|
|
218
|
+
files = (
|
|
219
|
+
);
|
|
220
|
+
inputFileListPaths = (
|
|
221
|
+
);
|
|
222
|
+
inputPaths = (
|
|
223
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
224
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
225
|
+
);
|
|
226
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
227
|
+
outputFileListPaths = (
|
|
228
|
+
);
|
|
229
|
+
outputPaths = (
|
|
230
|
+
"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
|
|
231
|
+
);
|
|
232
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
233
|
+
shellPath = /bin/sh;
|
|
234
|
+
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";
|
|
235
|
+
showEnvVarsInLog = 0;
|
|
236
|
+
};
|
|
237
|
+
9740EEB61CF901F6004384FC /* Run Script */ = {
|
|
238
|
+
isa = PBXShellScriptBuildPhase;
|
|
239
|
+
buildActionMask = 2147483647;
|
|
240
|
+
files = (
|
|
241
|
+
);
|
|
242
|
+
inputPaths = (
|
|
243
|
+
);
|
|
244
|
+
name = "Run Script";
|
|
245
|
+
outputPaths = (
|
|
246
|
+
);
|
|
247
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
248
|
+
shellPath = /bin/sh;
|
|
249
|
+
shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
|
|
250
|
+
};
|
|
251
|
+
E7075149C936E66C083FDBE6 /* [CP] Embed Pods Frameworks */ = {
|
|
252
|
+
isa = PBXShellScriptBuildPhase;
|
|
253
|
+
buildActionMask = 2147483647;
|
|
254
|
+
files = (
|
|
255
|
+
);
|
|
256
|
+
inputFileListPaths = (
|
|
257
|
+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
|
|
258
|
+
);
|
|
259
|
+
name = "[CP] Embed Pods Frameworks";
|
|
260
|
+
outputFileListPaths = (
|
|
261
|
+
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
|
|
262
|
+
);
|
|
263
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
264
|
+
shellPath = /bin/sh;
|
|
265
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
|
|
266
|
+
showEnvVarsInLog = 0;
|
|
267
|
+
};
|
|
268
|
+
/* End PBXShellScriptBuildPhase section */
|
|
269
|
+
|
|
270
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
271
|
+
97C146EA1CF9000F007C117D /* Sources */ = {
|
|
272
|
+
isa = PBXSourcesBuildPhase;
|
|
273
|
+
buildActionMask = 2147483647;
|
|
274
|
+
files = (
|
|
275
|
+
74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
|
|
276
|
+
1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
|
|
277
|
+
);
|
|
278
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
279
|
+
};
|
|
280
|
+
/* End PBXSourcesBuildPhase section */
|
|
281
|
+
|
|
282
|
+
/* Begin PBXVariantGroup section */
|
|
283
|
+
97C146FA1CF9000F007C117D /* Main.storyboard */ = {
|
|
284
|
+
isa = PBXVariantGroup;
|
|
285
|
+
children = (
|
|
286
|
+
97C146FB1CF9000F007C117D /* Base */,
|
|
287
|
+
);
|
|
288
|
+
name = Main.storyboard;
|
|
289
|
+
sourceTree = "<group>";
|
|
290
|
+
};
|
|
291
|
+
97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
|
|
292
|
+
isa = PBXVariantGroup;
|
|
293
|
+
children = (
|
|
294
|
+
97C147001CF9000F007C117D /* Base */,
|
|
295
|
+
);
|
|
296
|
+
name = LaunchScreen.storyboard;
|
|
297
|
+
sourceTree = "<group>";
|
|
298
|
+
};
|
|
299
|
+
/* End PBXVariantGroup section */
|
|
300
|
+
|
|
301
|
+
/* Begin XCBuildConfiguration section */
|
|
302
|
+
249021D3217E4FDB00AE95B9 /* Profile */ = {
|
|
303
|
+
isa = XCBuildConfiguration;
|
|
304
|
+
buildSettings = {
|
|
305
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
306
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
307
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
308
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
309
|
+
CLANG_ENABLE_MODULES = YES;
|
|
310
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
311
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
312
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
313
|
+
CLANG_WARN_COMMA = YES;
|
|
314
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
315
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
316
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
317
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
318
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
319
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
320
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
321
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
322
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
323
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
324
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
325
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
326
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
327
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
328
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
329
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
330
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
331
|
+
COPY_PHASE_STRIP = NO;
|
|
332
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
333
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
334
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
335
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
336
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
337
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
338
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
339
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
340
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
341
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
342
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
343
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
|
344
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
345
|
+
SDKROOT = iphoneos;
|
|
346
|
+
SUPPORTED_PLATFORMS = iphoneos;
|
|
347
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
348
|
+
VALIDATE_PRODUCT = YES;
|
|
349
|
+
};
|
|
350
|
+
name = Profile;
|
|
351
|
+
};
|
|
352
|
+
249021D4217E4FDB00AE95B9 /* Profile */ = {
|
|
353
|
+
isa = XCBuildConfiguration;
|
|
354
|
+
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
|
|
355
|
+
buildSettings = {
|
|
356
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
357
|
+
CLANG_ENABLE_MODULES = YES;
|
|
358
|
+
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
|
359
|
+
ENABLE_BITCODE = NO;
|
|
360
|
+
INFOPLIST_FILE = Runner/Info.plist;
|
|
361
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
362
|
+
"$(inherited)",
|
|
363
|
+
"@executable_path/Frameworks",
|
|
364
|
+
);
|
|
365
|
+
PRODUCT_BUNDLE_IDENTIFIER = io.nano.microtex.microtexExample;
|
|
366
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
367
|
+
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
|
368
|
+
SWIFT_VERSION = 5.0;
|
|
369
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
370
|
+
};
|
|
371
|
+
name = Profile;
|
|
372
|
+
};
|
|
373
|
+
97C147031CF9000F007C117D /* Debug */ = {
|
|
374
|
+
isa = XCBuildConfiguration;
|
|
375
|
+
buildSettings = {
|
|
376
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
377
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
378
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
379
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
380
|
+
CLANG_ENABLE_MODULES = YES;
|
|
381
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
382
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
383
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
384
|
+
CLANG_WARN_COMMA = YES;
|
|
385
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
386
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
387
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
388
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
389
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
390
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
391
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
392
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
393
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
394
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
395
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
396
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
397
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
398
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
399
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
400
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
401
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
402
|
+
COPY_PHASE_STRIP = NO;
|
|
403
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
404
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
405
|
+
ENABLE_TESTABILITY = YES;
|
|
406
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
407
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
408
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
409
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
410
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
411
|
+
"DEBUG=1",
|
|
412
|
+
"$(inherited)",
|
|
413
|
+
);
|
|
414
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
415
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
416
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
417
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
418
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
419
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
420
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
|
421
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
422
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
423
|
+
SDKROOT = iphoneos;
|
|
424
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
425
|
+
};
|
|
426
|
+
name = Debug;
|
|
427
|
+
};
|
|
428
|
+
97C147041CF9000F007C117D /* Release */ = {
|
|
429
|
+
isa = XCBuildConfiguration;
|
|
430
|
+
buildSettings = {
|
|
431
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
432
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
433
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
|
434
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
435
|
+
CLANG_ENABLE_MODULES = YES;
|
|
436
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
437
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
438
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
439
|
+
CLANG_WARN_COMMA = YES;
|
|
440
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
441
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
442
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
443
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
444
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
445
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
446
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
447
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
448
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
449
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
450
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
451
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
452
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
453
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
454
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
455
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
456
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
457
|
+
COPY_PHASE_STRIP = NO;
|
|
458
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
459
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
460
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
461
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
462
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
463
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
464
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
465
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
466
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
467
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
468
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
469
|
+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
|
|
470
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
471
|
+
SDKROOT = iphoneos;
|
|
472
|
+
SUPPORTED_PLATFORMS = iphoneos;
|
|
473
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
474
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
475
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
476
|
+
VALIDATE_PRODUCT = YES;
|
|
477
|
+
};
|
|
478
|
+
name = Release;
|
|
479
|
+
};
|
|
480
|
+
97C147061CF9000F007C117D /* Debug */ = {
|
|
481
|
+
isa = XCBuildConfiguration;
|
|
482
|
+
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
|
|
483
|
+
buildSettings = {
|
|
484
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
485
|
+
CLANG_ENABLE_MODULES = YES;
|
|
486
|
+
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
|
487
|
+
ENABLE_BITCODE = NO;
|
|
488
|
+
INFOPLIST_FILE = Runner/Info.plist;
|
|
489
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
490
|
+
"$(inherited)",
|
|
491
|
+
"@executable_path/Frameworks",
|
|
492
|
+
);
|
|
493
|
+
PRODUCT_BUNDLE_IDENTIFIER = io.nano.microtex.microtexExample;
|
|
494
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
495
|
+
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
|
496
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
497
|
+
SWIFT_VERSION = 5.0;
|
|
498
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
499
|
+
};
|
|
500
|
+
name = Debug;
|
|
501
|
+
};
|
|
502
|
+
97C147071CF9000F007C117D /* Release */ = {
|
|
503
|
+
isa = XCBuildConfiguration;
|
|
504
|
+
baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
|
|
505
|
+
buildSettings = {
|
|
506
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
507
|
+
CLANG_ENABLE_MODULES = YES;
|
|
508
|
+
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
|
|
509
|
+
ENABLE_BITCODE = NO;
|
|
510
|
+
INFOPLIST_FILE = Runner/Info.plist;
|
|
511
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
512
|
+
"$(inherited)",
|
|
513
|
+
"@executable_path/Frameworks",
|
|
514
|
+
);
|
|
515
|
+
PRODUCT_BUNDLE_IDENTIFIER = io.nano.microtex.microtexExample;
|
|
516
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
517
|
+
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
|
|
518
|
+
SWIFT_VERSION = 5.0;
|
|
519
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
520
|
+
};
|
|
521
|
+
name = Release;
|
|
522
|
+
};
|
|
523
|
+
/* End XCBuildConfiguration section */
|
|
524
|
+
|
|
525
|
+
/* Begin XCConfigurationList section */
|
|
526
|
+
97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
|
|
527
|
+
isa = XCConfigurationList;
|
|
528
|
+
buildConfigurations = (
|
|
529
|
+
97C147031CF9000F007C117D /* Debug */,
|
|
530
|
+
97C147041CF9000F007C117D /* Release */,
|
|
531
|
+
249021D3217E4FDB00AE95B9 /* Profile */,
|
|
532
|
+
);
|
|
533
|
+
defaultConfigurationIsVisible = 0;
|
|
534
|
+
defaultConfigurationName = Release;
|
|
535
|
+
};
|
|
536
|
+
97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
|
|
537
|
+
isa = XCConfigurationList;
|
|
538
|
+
buildConfigurations = (
|
|
539
|
+
97C147061CF9000F007C117D /* Debug */,
|
|
540
|
+
97C147071CF9000F007C117D /* Release */,
|
|
541
|
+
249021D4217E4FDB00AE95B9 /* Profile */,
|
|
542
|
+
);
|
|
543
|
+
defaultConfigurationIsVisible = 0;
|
|
544
|
+
defaultConfigurationName = Release;
|
|
545
|
+
};
|
|
546
|
+
/* End XCConfigurationList section */
|
|
547
|
+
};
|
|
548
|
+
rootObject = 97C146E61CF9000F007C117D /* Project object */;
|
|
549
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Scheme
|
|
3
|
+
LastUpgradeVersion = "1300"
|
|
4
|
+
version = "1.3">
|
|
5
|
+
<BuildAction
|
|
6
|
+
parallelizeBuildables = "YES"
|
|
7
|
+
buildImplicitDependencies = "YES">
|
|
8
|
+
<BuildActionEntries>
|
|
9
|
+
<BuildActionEntry
|
|
10
|
+
buildForTesting = "YES"
|
|
11
|
+
buildForRunning = "YES"
|
|
12
|
+
buildForProfiling = "YES"
|
|
13
|
+
buildForArchiving = "YES"
|
|
14
|
+
buildForAnalyzing = "YES">
|
|
15
|
+
<BuildableReference
|
|
16
|
+
BuildableIdentifier = "primary"
|
|
17
|
+
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
|
|
18
|
+
BuildableName = "Runner.app"
|
|
19
|
+
BlueprintName = "Runner"
|
|
20
|
+
ReferencedContainer = "container:Runner.xcodeproj">
|
|
21
|
+
</BuildableReference>
|
|
22
|
+
</BuildActionEntry>
|
|
23
|
+
</BuildActionEntries>
|
|
24
|
+
</BuildAction>
|
|
25
|
+
<TestAction
|
|
26
|
+
buildConfiguration = "Debug"
|
|
27
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
28
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
29
|
+
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
30
|
+
<MacroExpansion>
|
|
31
|
+
<BuildableReference
|
|
32
|
+
BuildableIdentifier = "primary"
|
|
33
|
+
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
|
|
34
|
+
BuildableName = "Runner.app"
|
|
35
|
+
BlueprintName = "Runner"
|
|
36
|
+
ReferencedContainer = "container:Runner.xcodeproj">
|
|
37
|
+
</BuildableReference>
|
|
38
|
+
</MacroExpansion>
|
|
39
|
+
<Testables>
|
|
40
|
+
</Testables>
|
|
41
|
+
</TestAction>
|
|
42
|
+
<LaunchAction
|
|
43
|
+
buildConfiguration = "Debug"
|
|
44
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
45
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
46
|
+
launchStyle = "0"
|
|
47
|
+
useCustomWorkingDirectory = "NO"
|
|
48
|
+
ignoresPersistentStateOnLaunch = "NO"
|
|
49
|
+
debugDocumentVersioning = "YES"
|
|
50
|
+
debugServiceExtension = "internal"
|
|
51
|
+
allowLocationSimulation = "YES">
|
|
52
|
+
<BuildableProductRunnable
|
|
53
|
+
runnableDebuggingMode = "0">
|
|
54
|
+
<BuildableReference
|
|
55
|
+
BuildableIdentifier = "primary"
|
|
56
|
+
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
|
|
57
|
+
BuildableName = "Runner.app"
|
|
58
|
+
BlueprintName = "Runner"
|
|
59
|
+
ReferencedContainer = "container:Runner.xcodeproj">
|
|
60
|
+
</BuildableReference>
|
|
61
|
+
</BuildableProductRunnable>
|
|
62
|
+
</LaunchAction>
|
|
63
|
+
<ProfileAction
|
|
64
|
+
buildConfiguration = "Profile"
|
|
65
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
66
|
+
savedToolIdentifier = ""
|
|
67
|
+
useCustomWorkingDirectory = "NO"
|
|
68
|
+
debugDocumentVersioning = "YES">
|
|
69
|
+
<BuildableProductRunnable
|
|
70
|
+
runnableDebuggingMode = "0">
|
|
71
|
+
<BuildableReference
|
|
72
|
+
BuildableIdentifier = "primary"
|
|
73
|
+
BlueprintIdentifier = "97C146ED1CF9000F007C117D"
|
|
74
|
+
BuildableName = "Runner.app"
|
|
75
|
+
BlueprintName = "Runner"
|
|
76
|
+
ReferencedContainer = "container:Runner.xcodeproj">
|
|
77
|
+
</BuildableReference>
|
|
78
|
+
</BuildableProductRunnable>
|
|
79
|
+
</ProfileAction>
|
|
80
|
+
<AnalyzeAction
|
|
81
|
+
buildConfiguration = "Debug">
|
|
82
|
+
</AnalyzeAction>
|
|
83
|
+
<ArchiveAction
|
|
84
|
+
buildConfiguration = "Release"
|
|
85
|
+
revealArchiveInOrganizer = "YES">
|
|
86
|
+
</ArchiveAction>
|
|
87
|
+
</Scheme>
|