From 01deb2c71a3999885ac11bc4735e19b13f7449e1 Mon Sep 17 00:00:00 2001 From: Chun-Heng Tai Date: Fri, 28 Aug 2026 16:03:10 -0700 Subject: [PATCH 1/4] [material_ui] Copies a11y_assessments --- .../material_ui/a11y_assessments/.metadata | 45 ++ .../material_ui/a11y_assessments/README.md | 33 + .../a11y_assessments/analysis_options.yaml | 16 + .../a11y_assessments/android/.gitignore | 14 + .../a11y_assessments/android/app/build.gradle | 86 +++ .../android/app/src/debug/AndroidManifest.xml | 11 + .../android/app/src/main/AndroidManifest.xml | 37 + .../example/a11y_assessments/MainActivity.kt | 5 + .../res/drawable-v21/launch_background.xml | 16 + .../main/res/drawable/launch_background.xml | 16 + .../src/main/res/mipmap-hdpi/ic_launcher.png | Bin 0 -> 544 bytes .../src/main/res/mipmap-mdpi/ic_launcher.png | Bin 0 -> 442 bytes .../src/main/res/mipmap-xhdpi/ic_launcher.png | Bin 0 -> 721 bytes .../main/res/mipmap-xxhdpi/ic_launcher.png | Bin 0 -> 1031 bytes .../main/res/mipmap-xxxhdpi/ic_launcher.png | Bin 0 -> 1443 bytes .../app/src/main/res/values-night/styles.xml | 22 + .../app/src/main/res/values/styles.xml | 22 + .../app/src/profile/AndroidManifest.xml | 11 + .../a11y_assessments/android/build.gradle | 35 + .../android/buildscript-gradle.lockfile | 121 +++ .../android/gradle.properties | 6 + .../gradle/wrapper/gradle-wrapper.properties | 5 + .../android/project-app.lockfile | 295 ++++++++ .../a11y_assessments/android/settings.gradle | 41 ++ .../a11y_assessments/ios/.gitignore | 34 + .../ios/Flutter/AppFrameworkInfo.plist | 24 + .../ios/Flutter/Debug.xcconfig | 1 + .../ios/Flutter/Release.xcconfig | 1 + .../ios/Runner.xcodeproj/project.pbxproj | 613 +++++++++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/WorkspaceSettings.xcsettings | 8 + .../xcshareddata/xcschemes/Runner.xcscheme | 99 +++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/WorkspaceSettings.xcsettings | 8 + .../ios/Runner/AppDelegate.swift | 22 + .../AppIcon.appiconset/Contents.json | 122 +++ .../Icon-App-1024x1024@1x.png | Bin 0 -> 10932 bytes .../AppIcon.appiconset/Icon-App-20x20@1x.png | Bin 0 -> 564 bytes .../AppIcon.appiconset/Icon-App-20x20@2x.png | Bin 0 -> 1283 bytes .../AppIcon.appiconset/Icon-App-20x20@3x.png | Bin 0 -> 1588 bytes .../AppIcon.appiconset/Icon-App-29x29@1x.png | Bin 0 -> 1025 bytes .../AppIcon.appiconset/Icon-App-29x29@2x.png | Bin 0 -> 1716 bytes .../AppIcon.appiconset/Icon-App-29x29@3x.png | Bin 0 -> 1920 bytes .../AppIcon.appiconset/Icon-App-40x40@1x.png | Bin 0 -> 1283 bytes .../AppIcon.appiconset/Icon-App-40x40@2x.png | Bin 0 -> 1895 bytes .../AppIcon.appiconset/Icon-App-40x40@3x.png | Bin 0 -> 2665 bytes .../AppIcon.appiconset/Icon-App-60x60@2x.png | Bin 0 -> 2665 bytes .../AppIcon.appiconset/Icon-App-60x60@3x.png | Bin 0 -> 3831 bytes .../AppIcon.appiconset/Icon-App-76x76@1x.png | Bin 0 -> 1888 bytes .../AppIcon.appiconset/Icon-App-76x76@2x.png | Bin 0 -> 3294 bytes .../Icon-App-83.5x83.5@2x.png | Bin 0 -> 3612 bytes .../LaunchImage.imageset/Contents.json | 23 + .../LaunchImage.imageset/LaunchImage.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/LaunchImage@2x.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/LaunchImage@3x.png | Bin 0 -> 68 bytes .../LaunchImage.imageset/README.md | 5 + .../Runner/Base.lproj/LaunchScreen.storyboard | 37 + .../ios/Runner/Base.lproj/Main.storyboard | 26 + .../a11y_assessments/ios/Runner/Info.plist | 70 ++ .../ios/Runner/Runner-Bridging-Header.h | 5 + .../ios/RunnerTests/RunnerTests.swift | 16 + .../lib/common/dynamic_title.dart | 17 + .../a11y_assessments/lib/main.dart | 171 +++++ .../lib/use_cases/about_list_tile.dart | 47 ++ .../lib/use_cases/action_chip.dart | 56 ++ .../lib/use_cases/app_bar.dart | 119 +++ .../lib/use_cases/auto_complete.dart | 81 ++ .../lib/use_cases/back_button.dart | 51 ++ .../a11y_assessments/lib/use_cases/badge.dart | 52 ++ .../lib/use_cases/bottom_app_bar.dart | 73 ++ .../a11y_assessments/lib/use_cases/card.dart | 53 ++ .../lib/use_cases/check_box.dart | 55 ++ .../lib/use_cases/check_box_list_tile.dart | 64 ++ .../lib/use_cases/close_button.dart | 54 ++ .../lib/use_cases/date_picker.dart | 53 ++ .../lib/use_cases/dialog.dart | 75 ++ .../lib/use_cases/drawer.dart | 82 +++ .../lib/use_cases/dropdown_menu.dart | 69 ++ .../lib/use_cases/elevated_button.dart | 53 ++ .../lib/use_cases/expansion_tile.dart | 71 ++ .../lib/use_cases/filled_button.dart | 53 ++ .../lib/use_cases/floating_action_button.dart | 54 ++ .../lib/use_cases/icon_button.dart | 58 ++ .../lib/use_cases/material_banner.dart | 81 ++ .../lib/use_cases/menu_anchor.dart | 86 +++ .../lib/use_cases/menu_bar.dart | 113 +++ .../lib/use_cases/navigation_bar.dart | 70 ++ .../lib/use_cases/navigation_drawer.dart | 106 +++ .../lib/use_cases/navigation_rail.dart | 195 +++++ .../lib/use_cases/outlined_button.dart | 53 ++ .../lib/use_cases/popup_menu_button.dart | 62 ++ .../a11y_assessments/lib/use_cases/radio.dart | 88 +++ .../lib/use_cases/radio_list_tile.dart | 65 ++ .../lib/use_cases/range_slider.dart | 59 ++ .../lib/use_cases/search_bar.dart | 148 ++++ .../lib/use_cases/segmented_button.dart | 69 ++ .../lib/use_cases/slider.dart | 62 ++ .../lib/use_cases/snack_bar.dart | 66 ++ .../lib/use_cases/switch.dart | 57 ++ .../lib/use_cases/switch_list_tile.dart | 71 ++ .../lib/use_cases/tab_bar_view.dart | 54 ++ .../lib/use_cases/text_button.dart | 80 ++ .../lib/use_cases/text_field.dart | 66 ++ .../lib/use_cases/text_field_password.dart | 51 ++ .../lib/use_cases/text_form_field.dart | 106 +++ .../lib/use_cases/toggle_buttons.dart | 59 ++ .../lib/use_cases/use_cases.dart | 125 ++++ .../a11y_assessments/lib/utils.dart | 7 + .../a11y_assessments/linux/.gitignore | 1 + .../a11y_assessments/linux/CMakeLists.txt | 139 ++++ .../linux/flutter/CMakeLists.txt | 88 +++ .../a11y_assessments/linux/main.cc | 10 + .../a11y_assessments/linux/my_application.cc | 108 +++ .../a11y_assessments/linux/my_application.h | 22 + .../a11y_assessments/macos/.gitignore | 7 + .../macos/Flutter/Flutter-Debug.xcconfig | 1 + .../macos/Flutter/Flutter-Release.xcconfig | 1 + .../macos/Runner.xcodeproj/project.pbxproj | 695 ++++++++++++++++++ .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/xcschemes/Runner.xcscheme | 98 +++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../macos/Runner/AppDelegate.swift | 17 + .../AppIcon.appiconset/Contents.json | 68 ++ .../AppIcon.appiconset/app_icon_1024.png | Bin 0 -> 46993 bytes .../AppIcon.appiconset/app_icon_128.png | Bin 0 -> 3276 bytes .../AppIcon.appiconset/app_icon_16.png | Bin 0 -> 1429 bytes .../AppIcon.appiconset/app_icon_256.png | Bin 0 -> 5933 bytes .../AppIcon.appiconset/app_icon_32.png | Bin 0 -> 1243 bytes .../AppIcon.appiconset/app_icon_512.png | Bin 0 -> 14800 bytes .../AppIcon.appiconset/app_icon_64.png | Bin 0 -> 1874 bytes .../macos/Runner/Base.lproj/MainMenu.xib | 343 +++++++++ .../macos/Runner/Configs/AppInfo.xcconfig | 14 + .../macos/Runner/Configs/Debug.xcconfig | 2 + .../macos/Runner/Configs/Release.xcconfig | 2 + .../macos/Runner/Configs/Warnings.xcconfig | 13 + .../macos/Runner/DebugProfile.entitlements | 12 + .../a11y_assessments/macos/Runner/Info.plist | 32 + .../macos/Runner/MainFlutterWindow.swift | 19 + .../macos/Runner/Release.entitlements | 8 + .../macos/RunnerTests/RunnerTests.swift | 16 + .../material_ui/a11y_assessments/pubspec.yaml | 24 + .../test/about_list_tile_test.dart | 27 + .../test/accessibility_guideline_test.dart | 105 +++ .../test/action_chip_test.dart | 23 + .../a11y_assessments/test/app_bar_test.dart | 15 + .../test/auto_complete_test.dart | 46 ++ .../test/back_button_test.dart | 16 + .../a11y_assessments/test/badge_test.dart | 23 + .../test/bottom_app_bar_test.dart | 23 + .../a11y_assessments/test/card_test.dart | 23 + .../test/check_box_list_tile_test.dart | 23 + .../a11y_assessments/test/check_box_test.dart | 27 + .../test/close_button_test.dart | 16 + .../test/date_picker_test.dart | 27 + .../a11y_assessments/test/dialog_test.dart | 52 ++ .../a11y_assessments/test/drawer_test.dart | 30 + .../test/dropdown_menu_test.dart | 43 ++ .../test/elevated_button_test.dart | 16 + .../test/expansion_tile_test.dart | 23 + .../test/filled_button_test.dart | 16 + .../test/floating_action_button_test.dart | 49 ++ .../a11y_assessments/test/home_page_test.dart | 429 +++++++++++ .../test/icon_button_test.dart | 16 + .../test/material_banner_test.dart | 53 ++ .../test/menu_anchor_test.dart | 53 ++ .../a11y_assessments/test/menu_bar_test.dart | 76 ++ .../test/navigation_bar_test.dart | 30 + .../test/navigation_drawer_test.dart | 30 + .../test/navigation_rail_test.dart | 47 ++ .../test/outlined_button_test.dart | 16 + .../test/popup_menu_button_test.dart | 34 + .../test/radio_list_tile_test.dart | 23 + .../a11y_assessments/test/radio_test.dart | 28 + .../test/range_slider_test.dart | 16 + .../test/search_bar_test.dart | 44 ++ .../test/segmented_button_test.dart | 35 + .../a11y_assessments/test/slider_test.dart | 35 + .../a11y_assessments/test/snack_bar_test.dart | 27 + .../test/switch_list_tile_test.dart | 23 + .../a11y_assessments/test/switch_test.dart | 27 + .../test/tab_bar_view_test.dart | 16 + .../a11y_assessments/test/test_utils.dart | 19 + .../test/text_button_test.dart | 53 ++ .../test/text_field_password_test.dart | 59 ++ .../test/text_field_test.dart | 74 ++ .../test/text_form_field_test.dart | 64 ++ .../test/toggle_buttons_test.dart | 91 +++ .../a11y_assessments/web/favicon.png | Bin 0 -> 917 bytes .../a11y_assessments/web/flutter_bootstrap.js | 15 + .../a11y_assessments/web/icons/Icon-192.png | Bin 0 -> 5292 bytes .../a11y_assessments/web/icons/Icon-512.png | Bin 0 -> 8252 bytes .../web/icons/Icon-maskable-192.png | Bin 0 -> 5292 bytes .../web/icons/Icon-maskable-512.png | Bin 0 -> 8252 bytes .../a11y_assessments/web/index.html | 42 ++ .../a11y_assessments/web/manifest.json | 35 + .../a11y_assessments/windows/.gitignore | 17 + .../a11y_assessments/windows/CMakeLists.txt | 102 +++ .../windows/flutter/CMakeLists.txt | 109 +++ .../windows/runner/CMakeLists.txt | 40 + .../a11y_assessments/windows/runner/Runner.rc | 121 +++ .../windows/runner/flutter_window.cpp | 75 ++ .../windows/runner/flutter_window.h | 37 + .../a11y_assessments/windows/runner/main.cpp | 47 ++ .../windows/runner/resource.h | 20 + .../windows/runner/resources/app_icon.ico | Bin 0 -> 787 bytes .../windows/runner/runner.exe.manifest | 14 + .../a11y_assessments/windows/runner/utils.cpp | 73 ++ .../a11y_assessments/windows/runner/utils.h | 23 + .../windows/runner/win32_window.cpp | 292 ++++++++ .../windows/runner/win32_window.h | 106 +++ 213 files changed, 10413 insertions(+) create mode 100644 packages/material_ui/a11y_assessments/.metadata create mode 100644 packages/material_ui/a11y_assessments/README.md create mode 100644 packages/material_ui/a11y_assessments/analysis_options.yaml create mode 100644 packages/material_ui/a11y_assessments/android/.gitignore create mode 100644 packages/material_ui/a11y_assessments/android/app/build.gradle create mode 100644 packages/material_ui/a11y_assessments/android/app/src/debug/AndroidManifest.xml create mode 100644 packages/material_ui/a11y_assessments/android/app/src/main/AndroidManifest.xml create mode 100644 packages/material_ui/a11y_assessments/android/app/src/main/kotlin/com/example/a11y_assessments/MainActivity.kt create mode 100644 packages/material_ui/a11y_assessments/android/app/src/main/res/drawable-v21/launch_background.xml create mode 100644 packages/material_ui/a11y_assessments/android/app/src/main/res/drawable/launch_background.xml create mode 100644 packages/material_ui/a11y_assessments/android/app/src/main/res/mipmap-hdpi/ic_launcher.png create mode 100644 packages/material_ui/a11y_assessments/android/app/src/main/res/mipmap-mdpi/ic_launcher.png create mode 100644 packages/material_ui/a11y_assessments/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png create mode 100644 packages/material_ui/a11y_assessments/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png create mode 100644 packages/material_ui/a11y_assessments/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png create mode 100644 packages/material_ui/a11y_assessments/android/app/src/main/res/values-night/styles.xml create mode 100644 packages/material_ui/a11y_assessments/android/app/src/main/res/values/styles.xml create mode 100644 packages/material_ui/a11y_assessments/android/app/src/profile/AndroidManifest.xml create mode 100644 packages/material_ui/a11y_assessments/android/build.gradle create mode 100644 packages/material_ui/a11y_assessments/android/buildscript-gradle.lockfile create mode 100644 packages/material_ui/a11y_assessments/android/gradle.properties create mode 100644 packages/material_ui/a11y_assessments/android/gradle/wrapper/gradle-wrapper.properties create mode 100644 packages/material_ui/a11y_assessments/android/project-app.lockfile create mode 100644 packages/material_ui/a11y_assessments/android/settings.gradle create mode 100644 packages/material_ui/a11y_assessments/ios/.gitignore create mode 100644 packages/material_ui/a11y_assessments/ios/Flutter/AppFrameworkInfo.plist create mode 100644 packages/material_ui/a11y_assessments/ios/Flutter/Debug.xcconfig create mode 100644 packages/material_ui/a11y_assessments/ios/Flutter/Release.xcconfig create mode 100644 packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/project.pbxproj create mode 100644 packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings create mode 100644 packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme create mode 100644 packages/material_ui/a11y_assessments/ios/Runner.xcworkspace/contents.xcworkspacedata create mode 100644 packages/material_ui/a11y_assessments/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 packages/material_ui/a11y_assessments/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/AppDelegate.swift create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Base.lproj/LaunchScreen.storyboard create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Base.lproj/Main.storyboard create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Info.plist create mode 100644 packages/material_ui/a11y_assessments/ios/Runner/Runner-Bridging-Header.h create mode 100644 packages/material_ui/a11y_assessments/ios/RunnerTests/RunnerTests.swift create mode 100644 packages/material_ui/a11y_assessments/lib/common/dynamic_title.dart create mode 100644 packages/material_ui/a11y_assessments/lib/main.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/about_list_tile.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/action_chip.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/app_bar.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/auto_complete.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/back_button.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/badge.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/bottom_app_bar.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/card.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/check_box.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/check_box_list_tile.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/close_button.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/date_picker.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/dialog.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/drawer.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/dropdown_menu.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/elevated_button.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/expansion_tile.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/filled_button.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/floating_action_button.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/icon_button.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/material_banner.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/menu_anchor.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/menu_bar.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/navigation_bar.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/navigation_drawer.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/navigation_rail.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/outlined_button.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/popup_menu_button.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/radio.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/radio_list_tile.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/range_slider.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/search_bar.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/segmented_button.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/slider.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/snack_bar.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/switch.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/switch_list_tile.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/tab_bar_view.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/text_button.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/text_field.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/text_field_password.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/text_form_field.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/toggle_buttons.dart create mode 100644 packages/material_ui/a11y_assessments/lib/use_cases/use_cases.dart create mode 100644 packages/material_ui/a11y_assessments/lib/utils.dart create mode 100644 packages/material_ui/a11y_assessments/linux/.gitignore create mode 100644 packages/material_ui/a11y_assessments/linux/CMakeLists.txt create mode 100644 packages/material_ui/a11y_assessments/linux/flutter/CMakeLists.txt create mode 100644 packages/material_ui/a11y_assessments/linux/main.cc create mode 100644 packages/material_ui/a11y_assessments/linux/my_application.cc create mode 100644 packages/material_ui/a11y_assessments/linux/my_application.h create mode 100644 packages/material_ui/a11y_assessments/macos/.gitignore create mode 100644 packages/material_ui/a11y_assessments/macos/Flutter/Flutter-Debug.xcconfig create mode 100644 packages/material_ui/a11y_assessments/macos/Flutter/Flutter-Release.xcconfig create mode 100644 packages/material_ui/a11y_assessments/macos/Runner.xcodeproj/project.pbxproj create mode 100644 packages/material_ui/a11y_assessments/macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 packages/material_ui/a11y_assessments/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme create mode 100644 packages/material_ui/a11y_assessments/macos/Runner.xcworkspace/contents.xcworkspacedata create mode 100644 packages/material_ui/a11y_assessments/macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 packages/material_ui/a11y_assessments/macos/Runner/AppDelegate.swift create mode 100644 packages/material_ui/a11y_assessments/macos/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json create mode 100644 packages/material_ui/a11y_assessments/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png create mode 100644 packages/material_ui/a11y_assessments/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png create mode 100644 packages/material_ui/a11y_assessments/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png create mode 100644 packages/material_ui/a11y_assessments/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png create mode 100644 packages/material_ui/a11y_assessments/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png create mode 100644 packages/material_ui/a11y_assessments/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png create mode 100644 packages/material_ui/a11y_assessments/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png create mode 100644 packages/material_ui/a11y_assessments/macos/Runner/Base.lproj/MainMenu.xib create mode 100644 packages/material_ui/a11y_assessments/macos/Runner/Configs/AppInfo.xcconfig create mode 100644 packages/material_ui/a11y_assessments/macos/Runner/Configs/Debug.xcconfig create mode 100644 packages/material_ui/a11y_assessments/macos/Runner/Configs/Release.xcconfig create mode 100644 packages/material_ui/a11y_assessments/macos/Runner/Configs/Warnings.xcconfig create mode 100644 packages/material_ui/a11y_assessments/macos/Runner/DebugProfile.entitlements create mode 100644 packages/material_ui/a11y_assessments/macos/Runner/Info.plist create mode 100644 packages/material_ui/a11y_assessments/macos/Runner/MainFlutterWindow.swift create mode 100644 packages/material_ui/a11y_assessments/macos/Runner/Release.entitlements create mode 100644 packages/material_ui/a11y_assessments/macos/RunnerTests/RunnerTests.swift create mode 100644 packages/material_ui/a11y_assessments/pubspec.yaml create mode 100644 packages/material_ui/a11y_assessments/test/about_list_tile_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/accessibility_guideline_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/action_chip_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/app_bar_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/auto_complete_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/back_button_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/badge_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/bottom_app_bar_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/card_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/check_box_list_tile_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/check_box_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/close_button_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/date_picker_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/dialog_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/drawer_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/dropdown_menu_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/elevated_button_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/expansion_tile_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/filled_button_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/floating_action_button_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/home_page_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/icon_button_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/material_banner_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/menu_anchor_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/menu_bar_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/navigation_bar_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/navigation_drawer_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/navigation_rail_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/outlined_button_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/popup_menu_button_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/radio_list_tile_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/radio_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/range_slider_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/search_bar_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/segmented_button_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/slider_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/snack_bar_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/switch_list_tile_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/switch_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/tab_bar_view_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/test_utils.dart create mode 100644 packages/material_ui/a11y_assessments/test/text_button_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/text_field_password_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/text_field_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/text_form_field_test.dart create mode 100644 packages/material_ui/a11y_assessments/test/toggle_buttons_test.dart create mode 100644 packages/material_ui/a11y_assessments/web/favicon.png create mode 100644 packages/material_ui/a11y_assessments/web/flutter_bootstrap.js create mode 100644 packages/material_ui/a11y_assessments/web/icons/Icon-192.png create mode 100644 packages/material_ui/a11y_assessments/web/icons/Icon-512.png create mode 100644 packages/material_ui/a11y_assessments/web/icons/Icon-maskable-192.png create mode 100644 packages/material_ui/a11y_assessments/web/icons/Icon-maskable-512.png create mode 100644 packages/material_ui/a11y_assessments/web/index.html create mode 100644 packages/material_ui/a11y_assessments/web/manifest.json create mode 100644 packages/material_ui/a11y_assessments/windows/.gitignore create mode 100644 packages/material_ui/a11y_assessments/windows/CMakeLists.txt create mode 100644 packages/material_ui/a11y_assessments/windows/flutter/CMakeLists.txt create mode 100644 packages/material_ui/a11y_assessments/windows/runner/CMakeLists.txt create mode 100644 packages/material_ui/a11y_assessments/windows/runner/Runner.rc create mode 100644 packages/material_ui/a11y_assessments/windows/runner/flutter_window.cpp create mode 100644 packages/material_ui/a11y_assessments/windows/runner/flutter_window.h create mode 100644 packages/material_ui/a11y_assessments/windows/runner/main.cpp create mode 100644 packages/material_ui/a11y_assessments/windows/runner/resource.h create mode 100644 packages/material_ui/a11y_assessments/windows/runner/resources/app_icon.ico create mode 100644 packages/material_ui/a11y_assessments/windows/runner/runner.exe.manifest create mode 100644 packages/material_ui/a11y_assessments/windows/runner/utils.cpp create mode 100644 packages/material_ui/a11y_assessments/windows/runner/utils.h create mode 100644 packages/material_ui/a11y_assessments/windows/runner/win32_window.cpp create mode 100644 packages/material_ui/a11y_assessments/windows/runner/win32_window.h diff --git a/packages/material_ui/a11y_assessments/.metadata b/packages/material_ui/a11y_assessments/.metadata new file mode 100644 index 000000000000..f35b49906d8e --- /dev/null +++ b/packages/material_ui/a11y_assessments/.metadata @@ -0,0 +1,45 @@ +# 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: "b9c3f1f74c075a1766fd74418b5d79f528cf8c74" + channel: "master" + +project_type: app + +# Tracks metadata for the flutter migrate command +migration: + platforms: + - platform: root + create_revision: b9c3f1f74c075a1766fd74418b5d79f528cf8c74 + base_revision: b9c3f1f74c075a1766fd74418b5d79f528cf8c74 + - platform: android + create_revision: b9c3f1f74c075a1766fd74418b5d79f528cf8c74 + base_revision: b9c3f1f74c075a1766fd74418b5d79f528cf8c74 + - platform: ios + create_revision: b9c3f1f74c075a1766fd74418b5d79f528cf8c74 + base_revision: b9c3f1f74c075a1766fd74418b5d79f528cf8c74 + - platform: linux + create_revision: b9c3f1f74c075a1766fd74418b5d79f528cf8c74 + base_revision: b9c3f1f74c075a1766fd74418b5d79f528cf8c74 + - platform: macos + create_revision: b9c3f1f74c075a1766fd74418b5d79f528cf8c74 + base_revision: b9c3f1f74c075a1766fd74418b5d79f528cf8c74 + - platform: web + create_revision: b9c3f1f74c075a1766fd74418b5d79f528cf8c74 + base_revision: b9c3f1f74c075a1766fd74418b5d79f528cf8c74 + - platform: windows + create_revision: b9c3f1f74c075a1766fd74418b5d79f528cf8c74 + base_revision: b9c3f1f74c075a1766fd74418b5d79f528cf8c74 + + # User provided section + + # List of Local paths (relative to this file) that should be + # ignored by the migrate tool. + # + # Files that are not part of the templates will be ignored by default. + unmanaged_files: + - 'lib/main.dart' + - 'ios/Runner.xcodeproj/project.pbxproj' diff --git a/packages/material_ui/a11y_assessments/README.md b/packages/material_ui/a11y_assessments/README.md new file mode 100644 index 000000000000..b6400496adc1 --- /dev/null +++ b/packages/material_ui/a11y_assessments/README.md @@ -0,0 +1,33 @@ +# a11y_assessments + +This app is used for internal testing. + +## Release a new version for Android + +pre-requisite: This can and should only be done by a googler and you must also +be in the flutter.dev play console account. + +1. Follow https://docs.flutter.dev/deployment/android to create a keystore file if you don't already +have one. + +2. Bump the pubspec.yaml version + +3. Create a key.properties file in `android/` directory following this format. +``` +storePassword= +keyPassword= +keyAlias=upload +storeFile= +``` + +4. Run `flutter build appbundle` and upload the artifact to play console + +## Release a new version for iOS + +pre-requisite: This can and should only be done by a googler and you must also +be in the FLUTTER.IO LLC developer account with iOS distribution permission. + +1. Bump the pubspec.yaml version +2. Run `flutter build ipa` and upload the artifact to app store using transporter or other tools. +For more information, see https://docs.flutter.dev/deployment/ios. +3. Once the app is in TestFlight, add appropriate testers to the app so they can start testing. \ No newline at end of file diff --git a/packages/material_ui/a11y_assessments/analysis_options.yaml b/packages/material_ui/a11y_assessments/analysis_options.yaml new file mode 100644 index 000000000000..51a684f20b72 --- /dev/null +++ b/packages/material_ui/a11y_assessments/analysis_options.yaml @@ -0,0 +1,16 @@ +analyzer: + exclude: + - build/** + - android/** + - ios/** + - web/** + - windows/** + - macos/** + - linux/** + +include: ../analysis_options.yaml + +linter: + rules: + public_member_api_docs: false + diff --git a/packages/material_ui/a11y_assessments/android/.gitignore b/packages/material_ui/a11y_assessments/android/.gitignore new file mode 100644 index 000000000000..be3943c96d8e --- /dev/null +++ b/packages/material_ui/a11y_assessments/android/.gitignore @@ -0,0 +1,14 @@ +gradle-wrapper.jar +/.gradle +/captures/ +/gradlew +/gradlew.bat +/local.properties +GeneratedPluginRegistrant.java +.cxx/ + +# Remember to never publicly share your keystore. +# See https://flutter.dev/to/reference-keystore +key.properties +**/*.keystore +**/*.jks diff --git a/packages/material_ui/a11y_assessments/android/app/build.gradle b/packages/material_ui/a11y_assessments/android/app/build.gradle new file mode 100644 index 000000000000..9ee3a833b109 --- /dev/null +++ b/packages/material_ui/a11y_assessments/android/app/build.gradle @@ -0,0 +1,86 @@ +// 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. + +plugins { + id "com.android.application" + id "dev.flutter.flutter-gradle-plugin" +} + +def localProperties = new Properties() +def localPropertiesFile = rootProject.file('local.properties') +if (localPropertiesFile.exists()) { + localPropertiesFile.withReader('UTF-8') { reader -> + localProperties.load(reader) + } +} + +def flutterVersionCode = localProperties.getProperty('flutter.versionCode') +if (flutterVersionCode == null) { + flutterVersionCode = '1' +} + +def flutterVersionName = localProperties.getProperty('flutter.versionName') +if (flutterVersionName == null) { + flutterVersionName = '1.0' +} + +def keystoreProperties = new Properties() +def keystorePropertiesFile = rootProject.file('key.properties') +if (keystorePropertiesFile.exists()) { + keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) +} + +android { + namespace = "com.example.a11y_assessments" + compileSdk = flutter.compileSdkVersion + ndkVersion = flutter.ndkVersion + + compileOptions { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 + } + + sourceSets { + main.java.srcDirs += 'src/main/kotlin' + } + + defaultConfig { + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). + applicationId "dev.flutter.a11yassessments" + // You can update the following values to match your application needs. + // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. + minSdk = flutter.minSdkVersion + targetSdk = flutter.targetSdkVersion + versionCode = flutterVersionCode.toInteger() + versionName = flutterVersionName + } + signingConfigs { + release { + keyAlias keystoreProperties['keyAlias'] + keyPassword keystoreProperties['keyPassword'] + storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null + storePassword keystoreProperties['storePassword'] + } + } + + buildTypes { + release { + // TODO: Add your own signing config for the release build. + // Signing with the debug keys for now, so `flutter run --release` works. + signingConfig = signingConfigs.release + } + } +} + +kotlin { + compilerOptions { + jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17 + } +} + +flutter { + source = '../..' +} + +dependencies {} diff --git a/packages/material_ui/a11y_assessments/android/app/src/debug/AndroidManifest.xml b/packages/material_ui/a11y_assessments/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 000000000000..e00f903eae2a --- /dev/null +++ b/packages/material_ui/a11y_assessments/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,11 @@ + + + + + + diff --git a/packages/material_ui/a11y_assessments/android/app/src/main/AndroidManifest.xml b/packages/material_ui/a11y_assessments/android/app/src/main/AndroidManifest.xml new file mode 100644 index 000000000000..a1c931a7a55b --- /dev/null +++ b/packages/material_ui/a11y_assessments/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + diff --git a/packages/material_ui/a11y_assessments/android/app/src/main/kotlin/com/example/a11y_assessments/MainActivity.kt b/packages/material_ui/a11y_assessments/android/app/src/main/kotlin/com/example/a11y_assessments/MainActivity.kt new file mode 100644 index 000000000000..ad39b4a46ffd --- /dev/null +++ b/packages/material_ui/a11y_assessments/android/app/src/main/kotlin/com/example/a11y_assessments/MainActivity.kt @@ -0,0 +1,5 @@ +package com.example.a11y_assessments + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity : FlutterActivity() diff --git a/packages/material_ui/a11y_assessments/android/app/src/main/res/drawable-v21/launch_background.xml b/packages/material_ui/a11y_assessments/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100644 index 000000000000..9f19e2f90407 --- /dev/null +++ b/packages/material_ui/a11y_assessments/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/packages/material_ui/a11y_assessments/android/app/src/main/res/drawable/launch_background.xml b/packages/material_ui/a11y_assessments/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 000000000000..3727f9e00a02 --- /dev/null +++ b/packages/material_ui/a11y_assessments/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/packages/material_ui/a11y_assessments/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/packages/material_ui/a11y_assessments/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..db77bb4b7b0906d62b1847e87f15cdcacf6a4f29 GIT binary patch literal 544 zcmeAS@N?(olHy`uVBq!ia0vp^9w5xY3?!3`olAj~WQl7;NpOBzNqJ&XDuZK6ep0G} zXKrG8YEWuoN@d~6R2!h8bpbvhu0Wd6uZuB!w&u2PAxD2eNXD>P5D~Wn-+_Wa#27Xc zC?Zj|6r#X(-D3u$NCt}(Ms06KgJ4FxJVv{GM)!I~&n8Bnc94O7-Hd)cjDZswgC;Qs zO=b+9!WcT8F?0rF7!Uys2bs@gozCP?z~o%U|N3vA*22NaGQG zlg@K`O_XuxvZ&Ks^m&R!`&1=spLvfx7oGDKDwpwW`#iqdw@AL`7MR}m`rwr|mZgU`8P7SBkL78fFf!WnuYWm$5Z0 zNXhDbCv&49sM544K|?c)WrFfiZvCi9h0O)B3Pgg&ebxsLQ05GG~ AQ2+n{ literal 0 HcmV?d00001 diff --git a/packages/material_ui/a11y_assessments/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/packages/material_ui/a11y_assessments/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..17987b79bb8a35cc66c3c1fd44f5a5526c1b78be GIT binary patch literal 442 zcmeAS@N?(olHy`uVBq!ia0vp^1|ZDA3?vioaBc-sk|nMYCBgY=CFO}lsSJ)O`AMk? zp1FzXsX?iUDV2pMQ*D5Xx&nMcT!A!W`0S9QKQy;}1Cl^CgaH=;G9cpY;r$Q>i*pfB zP2drbID<_#qf;rPZx^FqH)F_D#*k@@q03KywUtLX8Ua?`H+NMzkczFPK3lFz@i_kW%1NOn0|D2I9n9wzH8m|-tHjsw|9>@K=iMBhxvkv6m8Y-l zytQ?X=U+MF$@3 zt`~i=@j|6y)RWMK--}M|=T`o&^Ni>IoWKHEbBXz7?A@mgWoL>!*SXo`SZH-*HSdS+ yn*9;$7;m`l>wYBC5bq;=U}IMqLzqbYCidGC!)_gkIk_C@Uy!y&wkt5C($~2D>~)O*cj@FGjOCM)M>_ixfudOh)?xMu#Fs z#}Y=@YDTwOM)x{K_j*Q;dPdJ?Mz0n|pLRx{4n|)f>SXlmV)XB04CrSJn#dS5nK2lM zrZ9#~WelCp7&e13Y$jvaEXHskn$2V!!DN-nWS__6T*l;H&Fopn?A6HZ-6WRLFP=R` zqG+CE#d4|IbyAI+rJJ`&x9*T`+a=p|0O(+s{UBcyZdkhj=yS1>AirP+0R;mf2uMgM zC}@~JfByORAh4SyRgi&!(cja>F(l*O+nd+@4m$|6K6KDn_&uvCpV23&>G9HJp{xgg zoq1^2_p9@|WEo z*X_Uko@K)qYYv~>43eQGMdbiGbo>E~Q& zrYBH{QP^@Sti!`2)uG{irBBq@y*$B zi#&(U-*=fp74j)RyIw49+0MRPMRU)+a2r*PJ$L5roHt2$UjExCTZSbq%V!HeS7J$N zdG@vOZB4v_lF7Plrx+hxo7(fCV&}fHq)$ literal 0 HcmV?d00001 diff --git a/packages/material_ui/a11y_assessments/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/packages/material_ui/a11y_assessments/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..d5f1c8d34e7a88e3f88bea192c3a370d44689c3c GIT binary patch literal 1031 zcmeAS@N?(olHy`uVBq!ia0vp^6F``Q8Ax83A=Cw=BuiW)N`mv#O3D+9QW+dm@{>{( zJaZG%Q-e|yQz{EjrrIztFa`(sgt!6~Yi|1%a`XoT0ojZ}lNrNjb9xjc(B0U1_% zz5^97Xt*%oq$rQy4?0GKNfJ44uvxI)gC`h-NZ|&0-7(qS@?b!5r36oQ}zyZrNO3 zMO=Or+<~>+A&uN&E!^Sl+>xE!QC-|oJv`ApDhqC^EWD|@=#J`=d#Xzxs4ah}w&Jnc z$|q_opQ^2TrnVZ0o~wh<3t%W&flvYGe#$xqda2bR_R zvPYgMcHgjZ5nSA^lJr%;<&0do;O^tDDh~=pIxA#coaCY>&N%M2^tq^U%3DB@ynvKo}b?yu-bFc-u0JHzced$sg7S3zqI(2 z#Km{dPr7I=pQ5>FuK#)QwK?Y`E`B?nP+}U)I#c1+FM*1kNvWG|a(TpksZQ3B@sD~b zpQ2)*V*TdwjFOtHvV|;OsiDqHi=6%)o4b!)x$)%9pGTsE z-JL={-Ffv+T87W(Xpooq<`r*VzWQcgBN$$`u}f>-ZQI1BB8ykN*=e4rIsJx9>z}*o zo~|9I;xof literal 0 HcmV?d00001 diff --git a/packages/material_ui/a11y_assessments/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/packages/material_ui/a11y_assessments/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..4d6372eebdb28e45604e46eeda8dd24651419bc0 GIT binary patch literal 1443 zcmb`G{WsKk6vsdJTdFg%tJav9_E4vzrOaqkWF|A724Nly!y+?N9`YV6wZ}5(X(D_N(?!*n3`|_r0Hc?=PQw&*vnU?QTFY zB_MsH|!j$PP;I}?dppoE_gA(4uc!jV&0!l7_;&p2^pxNo>PEcNJv za5_RT$o2Mf!<+r?&EbHH6nMoTsDOa;mN(wv8RNsHpG)`^ymG-S5By8=l9iVXzN_eG%Xg2@Xeq76tTZ*dGh~Lo9vl;Zfs+W#BydUw zCkZ$o1LqWQO$FC9aKlLl*7x9^0q%0}$OMlp@Kk_jHXOjofdePND+j!A{q!8~Jn+s3 z?~~w@4?egS02}8NuulUA=L~QQfm;MzCGd)XhiftT;+zFO&JVyp2mBww?;QByS_1w! zrQlx%{^cMj0|Bo1FjwY@Q8?Hx0cIPF*@-ZRFpPc#bBw{5@tD(5%sClzIfl8WU~V#u zm5Q;_F!wa$BSpqhN>W@2De?TKWR*!ujY;Yylk_X5#~V!L*Gw~;$%4Q8~Mad z@`-kG?yb$a9cHIApZDVZ^U6Xkp<*4rU82O7%}0jjHlK{id@?-wpN*fCHXyXh(bLt* zPc}H-x0e4E&nQ>y%B-(EL=9}RyC%MyX=upHuFhAk&MLbsF0LP-q`XnH78@fT+pKPW zu72MW`|?8ht^tz$iC}ZwLp4tB;Q49K!QCF3@!iB1qOI=?w z7In!}F~ij(18UYUjnbmC!qKhPo%24?8U1x{7o(+?^Zu0Hx81|FuS?bJ0jgBhEMzf< zCgUq7r2OCB(`XkKcN-TL>u5y#dD6D!)5W?`O5)V^>jb)P)GBdy%t$uUMpf$SNV31$ zb||OojAbvMP?T@$h_ZiFLFVHDmbyMhJF|-_)HX3%m=CDI+ID$0^C>kzxprBW)hw(v zr!Gmda);ICoQyhV_oP5+C%?jcG8v+D@9f?Dk*!BxY}dazmrT@64UrP3hlslANK)bq z$67n83eh}OeW&SV@HG95P|bjfqJ7gw$e+`Hxo!4cx`jdK1bJ>YDSpGKLPZ^1cv$ek zIB?0S<#tX?SJCLWdMd{-ME?$hc7A$zBOdIJ)4!KcAwb=VMov)nK;9z>x~rfT1>dS+ zZ6#`2v@`jgbqq)P22H)Tx2CpmM^o1$B+xT6`(v%5xJ(?j#>Q$+rx_R|7TzDZe{J6q zG1*EcU%tE?!kO%^M;3aM6JN*LAKUVb^xz8-Pxo#jR5(-KBeLJvA@-gxNHx0M-ZJLl z;#JwQoh~9V?`UVo#}{6ka@II>++D@%KqGpMdlQ}?9E*wFcf5(#XQnP$Dk5~%iX^>f z%$y;?M0BLp{O3a(-4A?ewryHrrD%cx#Q^%KY1H zNre$ve+vceSLZcNY4U(RBX&)oZn*Py()h)XkE?PL$!bNb{N5FVI2Y%LKEm%yvpyTP z(1P?z~7YxD~Rf<(a@_y` literal 0 HcmV?d00001 diff --git a/packages/material_ui/a11y_assessments/android/app/src/main/res/values-night/styles.xml b/packages/material_ui/a11y_assessments/android/app/src/main/res/values-night/styles.xml new file mode 100644 index 000000000000..f3ab3e83cd36 --- /dev/null +++ b/packages/material_ui/a11y_assessments/android/app/src/main/res/values-night/styles.xml @@ -0,0 +1,22 @@ + + + + + + + + + diff --git a/packages/material_ui/a11y_assessments/android/app/src/main/res/values/styles.xml b/packages/material_ui/a11y_assessments/android/app/src/main/res/values/styles.xml new file mode 100644 index 000000000000..9a0ead3c04f7 --- /dev/null +++ b/packages/material_ui/a11y_assessments/android/app/src/main/res/values/styles.xml @@ -0,0 +1,22 @@ + + + + + + + + + diff --git a/packages/material_ui/a11y_assessments/android/app/src/profile/AndroidManifest.xml b/packages/material_ui/a11y_assessments/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 000000000000..e00f903eae2a --- /dev/null +++ b/packages/material_ui/a11y_assessments/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,11 @@ + + + + + + diff --git a/packages/material_ui/a11y_assessments/android/build.gradle b/packages/material_ui/a11y_assessments/android/build.gradle new file mode 100644 index 000000000000..c56251bb0a18 --- /dev/null +++ b/packages/material_ui/a11y_assessments/android/build.gradle @@ -0,0 +1,35 @@ +// 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. + +// This file is auto generated. +// To update all the build.gradle files in the Flutter repo, +// See dev/tools/bin/generate_gradle_lockfiles.dart. + +allprojects { + repositories { + google() + mavenCentral() + } +} + +rootProject.layout.buildDirectory.value(rootProject.layout.buildDirectory.dir("../../build").get()) + +subprojects { + project.layout.buildDirectory.value(rootProject.layout.buildDirectory.dir(project.name).get()) +} +subprojects { + project.evaluationDependsOn(':app') + dependencyLocking { + ignoredDependencies.add('io.flutter:*') + lockFile = file("${rootProject.projectDir}/project-${project.name}.lockfile") + def ignoreFile = file("${rootProject.projectDir}/.ignore-locking.md") + if (!ignoreFile.exists() && !project.hasProperty('local-engine-repo')) { + lockAllConfigurations() + } + } +} + +tasks.register("clean", Delete) { + delete rootProject.layout.buildDirectory +} diff --git a/packages/material_ui/a11y_assessments/android/buildscript-gradle.lockfile b/packages/material_ui/a11y_assessments/android/buildscript-gradle.lockfile new file mode 100644 index 000000000000..4bae013a7322 --- /dev/null +++ b/packages/material_ui/a11y_assessments/android/buildscript-gradle.lockfile @@ -0,0 +1,121 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +androidx.databinding:databinding-common:9.1.0=classpath +androidx.databinding:databinding-compiler-common:9.1.0=classpath +com.android.application:com.android.application.gradle.plugin:9.1.0=classpath +com.android.databinding:baseLibrary:9.1.0=classpath +com.android.tools.analytics-library:crash:32.1.0=classpath +com.android.tools.analytics-library:protos:32.1.0=classpath +com.android.tools.analytics-library:shared:32.1.0=classpath +com.android.tools.analytics-library:tracker:32.1.0=classpath +com.android.tools.build.jetifier:jetifier-core:1.0.0-beta10=classpath +com.android.tools.build.jetifier:jetifier-processor:1.0.0-beta10=classpath +com.android.tools.build:aapt2-proto:9.1.0-14792394=classpath +com.android.tools.build:aaptcompiler:9.1.0=classpath +com.android.tools.build:apksig:9.1.0=classpath +com.android.tools.build:apkzlib:9.1.0=classpath +com.android.tools.build:builder-model:9.1.0=classpath +com.android.tools.build:builder-test-api:9.1.0=classpath +com.android.tools.build:builder:9.1.0=classpath +com.android.tools.build:bundletool:1.18.3=classpath +com.android.tools.build:gradle-api:9.1.0=classpath +com.android.tools.build:gradle-common-api:9.1.0=classpath +com.android.tools.build:gradle-settings-api:9.1.0=classpath +com.android.tools.build:gradle:9.1.0=classpath +com.android.tools.build:manifest-merger:32.1.0=classpath +com.android.tools.ddms:ddmlib:32.1.0=classpath +com.android.tools.layoutlib:layoutlib-api:32.1.0=classpath +com.android.tools.lint:lint-model:32.1.0=classpath +com.android.tools.lint:lint-typedef-remover:32.1.0=classpath +com.android.tools.utp:gradle-work-action-api:32.1.0=classpath +com.android.tools:annotations:32.1.0=classpath +com.android.tools:common:32.1.0=classpath +com.android.tools:dvlib:32.1.0=classpath +com.android.tools:repository:32.1.0=classpath +com.android.tools:sdk-common:32.1.0=classpath +com.android.tools:sdklib:32.1.0=classpath +com.android:signflinger:9.1.0=classpath +com.android:zipflinger:9.1.0=classpath +com.google.auto.value:auto-value-annotations:1.6.2=classpath +com.google.code.findbugs:jsr305:3.0.2=classpath +com.google.code.gson:gson:2.11.0=classpath +com.google.crypto.tink:tink:1.7.0=classpath +com.google.dagger:dagger:2.28.3=classpath +com.google.errorprone:error_prone_annotations:2.28.0=classpath +com.google.flatbuffers:flatbuffers-java:1.12.0=classpath +com.google.guava:failureaccess:1.0.2=classpath +com.google.guava:guava:33.3.1-jre=classpath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=classpath +com.google.j2objc:j2objc-annotations:3.0.0=classpath +com.google.jimfs:jimfs:1.1=classpath +com.google.protobuf:protobuf-java-util:3.25.5=classpath +com.google.protobuf:protobuf-java:3.25.5=classpath +com.googlecode.juniversalchardet:juniversalchardet:1.0.3=classpath +com.squareup:javapoet:1.13.0=classpath +com.squareup:javawriter:2.5.0=classpath +com.sun.istack:istack-commons-runtime:3.0.8=classpath +com.sun.xml.fastinfoset:FastInfoset:1.2.16=classpath +commons-codec:commons-codec:1.17.1=classpath +commons-io:commons-io:2.16.1=classpath +commons-logging:commons-logging:1.2=classpath +jakarta.activation:jakarta.activation-api:1.2.1=classpath +jakarta.xml.bind:jakarta.xml.bind-api:2.3.2=classpath +javax.inject:javax.inject:1=classpath +net.java.dev.jna:jna-platform:5.6.0=classpath +net.java.dev.jna:jna:5.6.0=classpath +net.sf.jopt-simple:jopt-simple:4.9=classpath +net.sf.kxml:kxml2:2.3.0=classpath +org.apache.commons:commons-compress:1.27.1=classpath +org.apache.commons:commons-lang3:3.16.0=classpath +org.apache.httpcomponents:httpclient:4.5.14=classpath +org.apache.httpcomponents:httpcore:4.4.16=classpath +org.apache.httpcomponents:httpmime:4.5.6=classpath +org.bitbucket.b_c:jose4j:0.9.5=classpath +org.bouncycastle:bcpkix-jdk18on:1.79=classpath +org.bouncycastle:bcprov-jdk18on:1.79=classpath +org.bouncycastle:bcutil-jdk18on:1.79=classpath +org.checkerframework:checker-qual:3.43.0=classpath +org.glassfish.jaxb:jaxb-runtime:2.3.2=classpath +org.glassfish.jaxb:txw2:2.3.2=classpath +org.jdom:jdom2:2.0.6=classpath +org.jetbrains.kotlin.android:org.jetbrains.kotlin.android.gradle.plugin:2.4.0=classpath +org.jetbrains.kotlin:fus-statistics-gradle-plugin:2.4.0=classpath +org.jetbrains.kotlin:kotlin-build-statistics:2.4.0=classpath +org.jetbrains.kotlin:kotlin-build-tools-api:2.4.0=classpath +org.jetbrains.kotlin:kotlin-compiler-runner:2.4.0=classpath +org.jetbrains.kotlin:kotlin-daemon-client:2.4.0=classpath +org.jetbrains.kotlin:kotlin-gradle-plugin-annotations:2.4.0=classpath +org.jetbrains.kotlin:kotlin-gradle-plugin-api:2.4.0=classpath +org.jetbrains.kotlin:kotlin-gradle-plugin-idea-proto:2.4.0=classpath +org.jetbrains.kotlin:kotlin-gradle-plugin-idea:2.4.0=classpath +org.jetbrains.kotlin:kotlin-gradle-plugin:2.4.0=classpath +org.jetbrains.kotlin:kotlin-gradle-plugins-bom:2.4.0=classpath +org.jetbrains.kotlin:kotlin-klib-commonizer-api:2.4.0=classpath +org.jetbrains.kotlin:kotlin-native-utils:2.4.0=classpath +org.jetbrains.kotlin:kotlin-reflect:2.2.10=classpath +org.jetbrains.kotlin:kotlin-stdlib-common:2.2.10=classpath +org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.2.10=classpath +org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.2.10=classpath +org.jetbrains.kotlin:kotlin-stdlib:2.2.10=classpath +org.jetbrains.kotlin:kotlin-tooling-core:2.4.0=classpath +org.jetbrains.kotlin:kotlin-util-io:2.4.0=classpath +org.jetbrains.kotlin:kotlin-util-klib-metadata:2.4.0=classpath +org.jetbrains.kotlin:kotlin-util-klib:2.4.0=classpath +org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0=classpath +org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0=classpath +org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0=classpath +org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.4.0=classpath +org.jetbrains.kotlinx:kotlinx-serialization-core:1.4.0=classpath +org.jetbrains.kotlinx:kotlinx-serialization-json-jvm:1.4.0=classpath +org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.0=classpath +org.jetbrains:annotations:23.0.0=classpath +org.jvnet.staxex:stax-ex:1.8.1=classpath +org.ow2.asm:asm-analysis:9.9=classpath +org.ow2.asm:asm-commons:9.9=classpath +org.ow2.asm:asm-tree:9.9=classpath +org.ow2.asm:asm-util:9.9=classpath +org.ow2.asm:asm:9.9=classpath +org.slf4j:slf4j-api:1.7.30=classpath +org.tensorflow:tensorflow-lite-metadata:0.2.0=classpath +empty= diff --git a/packages/material_ui/a11y_assessments/android/gradle.properties b/packages/material_ui/a11y_assessments/android/gradle.properties new file mode 100644 index 000000000000..d5da7278a400 --- /dev/null +++ b/packages/material_ui/a11y_assessments/android/gradle.properties @@ -0,0 +1,6 @@ +org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError +android.useAndroidX=true +# This builtInKotlin flag was added automatically by Flutter migrator +android.builtInKotlin=false +# This newDsl flag was added automatically by Flutter migrator +android.newDsl=false diff --git a/packages/material_ui/a11y_assessments/android/gradle/wrapper/gradle-wrapper.properties b/packages/material_ui/a11y_assessments/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 000000000000..bdc0141f5311 --- /dev/null +++ b/packages/material_ui/a11y_assessments/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip diff --git a/packages/material_ui/a11y_assessments/android/project-app.lockfile b/packages/material_ui/a11y_assessments/android/project-app.lockfile new file mode 100644 index 000000000000..10ab059f50eb --- /dev/null +++ b/packages/material_ui/a11y_assessments/android/project-app.lockfile @@ -0,0 +1,295 @@ +# This is a Gradle generated file for dependency locking. +# Manual edits can break the build and are not advised. +# This file is expected to be part of source control. +androidx.activity:activity:1.8.1=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.annotation:annotation-experimental:1.4.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.annotation:annotation-jvm:1.8.1=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.annotation:annotation:1.8.1=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.arch.core:core-common:2.2.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.arch.core:core-runtime:2.2.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.collection:collection:1.1.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.concurrent:concurrent-futures:1.1.0=debugAndroidTestLintChecksClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestRuntimeClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestRuntimeClasspath +androidx.core:core-ktx:1.13.1=debugAndroidTestLintChecksClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.core:core-ktx:1.2.0=debugAndroidTestCompileClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugUnitTestCompileClasspath,profileApiDependenciesMetadata,profileCompileClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath +androidx.core:core:1.13.1=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.customview:customview:1.0.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.exifinterface:exifinterface:1.4.1=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.fragment:fragment:1.7.1=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.interpolator:interpolator:1.0.0=debugAndroidTestLintChecksClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestRuntimeClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestRuntimeClasspath +androidx.lifecycle:lifecycle-common-java8:2.7.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.lifecycle:lifecycle-common:2.7.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.lifecycle:lifecycle-livedata-core-ktx:2.7.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.lifecycle:lifecycle-livedata-core:2.7.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.lifecycle:lifecycle-livedata:2.7.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.lifecycle:lifecycle-process:2.7.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.lifecycle:lifecycle-runtime:2.7.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.lifecycle:lifecycle-viewmodel-savedstate:2.7.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.lifecycle:lifecycle-viewmodel:2.7.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.loader:loader:1.0.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.profileinstaller:profileinstaller:1.3.1=debugAndroidTestLintChecksClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestRuntimeClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestRuntimeClasspath +androidx.savedstate:savedstate:1.2.1=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.startup:startup-runtime:1.1.1=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.tracing:tracing:1.2.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.versionedparcelable:versionedparcelable:1.1.1=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.viewpager:viewpager:1.0.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.window.extensions.core:core:1.0.0=debugAndroidTestLintChecksClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestRuntimeClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestRuntimeClasspath +androidx.window:window-java:1.2.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +androidx.window:window:1.2.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +com.android.tools.analytics-library:protos:32.1.0=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +com.android.tools.analytics-library:shared:32.1.0=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +com.android.tools.build:aapt2-proto:9.1.0-14792394=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +com.android.tools.ddms:ddmlib:32.1.0=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-gradle-work-action +com.android.tools.emulator:proto:31.7.0=_internal-unified-test-platform-android-test-plugin-host-retention +com.android.tools.emulator:proto:32.1.0=_internal-unified-test-platform-android-test-plugin-host-emulator-control +com.android.tools.layoutlib:layoutlib-api:32.1.0=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +com.android.tools.utp:android-device-provider-ddmlib-proto:32.1.0=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-gradle-work-action +com.android.tools.utp:android-device-provider-ddmlib:32.1.0=_internal-unified-test-platform-android-device-provider-ddmlib +com.android.tools.utp:android-device-provider-gradle-proto:31.11.1=_internal-unified-test-platform-android-device-provider-gradle +com.android.tools.utp:android-device-provider-gradle:31.11.1=_internal-unified-test-platform-android-device-provider-gradle +com.android.tools.utp:android-device-provider-profile-proto:31.11.1=_internal-unified-test-platform-android-device-provider-gradle +com.android.tools.utp:android-device-provider-profile:31.11.1=_internal-unified-test-platform-android-device-provider-gradle +com.android.tools.utp:android-test-plugin-host-additional-test-output-proto:32.1.0=_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-gradle-work-action +com.android.tools.utp:android-test-plugin-host-additional-test-output:32.1.0=_internal-unified-test-platform-android-test-plugin-host-additional-test-output +com.android.tools.utp:android-test-plugin-host-apk-installer-proto:32.1.0=_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-gradle-work-action +com.android.tools.utp:android-test-plugin-host-apk-installer:32.1.0=_internal-unified-test-platform-android-test-plugin-host-apk-installer +com.android.tools.utp:android-test-plugin-host-coverage-proto:32.1.0=_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-gradle-work-action +com.android.tools.utp:android-test-plugin-host-coverage:32.1.0=_internal-unified-test-platform-android-test-plugin-host-coverage +com.android.tools.utp:android-test-plugin-host-device-info-proto:32.1.0=_internal-unified-test-platform-android-test-plugin-host-device-info +com.android.tools.utp:android-test-plugin-host-device-info:32.1.0=_internal-unified-test-platform-android-test-plugin-host-device-info +com.android.tools.utp:android-test-plugin-host-emulator-control-proto:32.1.0=_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-gradle-work-action +com.android.tools.utp:android-test-plugin-host-emulator-control:32.1.0=_internal-unified-test-platform-android-test-plugin-host-emulator-control +com.android.tools.utp:android-test-plugin-host-logcat-proto:32.1.0=_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-gradle-work-action +com.android.tools.utp:android-test-plugin-host-logcat:32.1.0=_internal-unified-test-platform-android-test-plugin-host-logcat +com.android.tools.utp:android-test-plugin-host-retention-proto:31.7.0=_internal-unified-test-platform-android-test-plugin-host-retention +com.android.tools.utp:android-test-plugin-host-retention:31.7.0=_internal-unified-test-platform-android-test-plugin-host-retention +com.android.tools.utp:android-test-plugin-result-listener-gradle-proto:32.1.0=_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-gradle-work-action +com.android.tools.utp:android-test-plugin-result-listener-gradle:32.1.0=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +com.android.tools.utp:gradle-work-action:32.1.0=_internal-unified-test-platform-gradle-work-action +com.android.tools.utp:utp-common:31.7.0=_internal-unified-test-platform-android-test-plugin-host-retention +com.android.tools.utp:utp-common:32.1.0=_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-logcat +com.android.tools:annotations:31.11.1=_internal-unified-test-platform-android-device-provider-gradle +com.android.tools:annotations:31.7.0=_internal-unified-test-platform-android-test-plugin-host-retention +com.android.tools:annotations:32.1.0=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-gradle-work-action +com.android.tools:common:31.11.1=_internal-unified-test-platform-android-device-provider-gradle +com.android.tools:common:31.7.0=_internal-unified-test-platform-android-test-plugin-host-retention +com.android.tools:common:32.1.0=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-gradle-work-action +com.android.tools:dvlib:32.1.0=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +com.android.tools:repository:32.1.0=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +com.android.tools:sdk-common:32.1.0=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +com.android.tools:sdklib:32.1.0=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +com.getkeepsafe.relinker:relinker:1.4.5=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +com.github.ben-manes.caffeine:caffeine:2.9.3=swiftExportClasspathResolvable +com.google.android:annotations:4.1.1.4=_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core +com.google.api.grpc:proto-google-common-protos:2.17.0=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-core +com.google.api.grpc:proto-google-common-protos:2.48.0=_internal-unified-test-platform-android-test-plugin-host-emulator-control +com.google.auto.service:auto-service-annotations:1.1.1=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle +com.google.auto.service:auto-service:1.1.1=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle +com.google.auto:auto-common:1.2.1=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle +com.google.code.findbugs:jsr305:3.0.2=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-core,_internal-unified-test-platform-gradle-work-action,_internal-unified-test-platform-launcher +com.google.code.gson:gson:2.10.1=_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core,_internal-unified-test-platform-gradle-work-action +com.google.code.gson:gson:2.11.0=_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-result-listener-gradle +com.google.code.gson:gson:2.8.9=_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-launcher +com.google.crypto.tink:tink:1.18.0=_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-gradle-work-action +com.google.dagger:dagger:2.48=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-core,_internal-unified-test-platform-gradle-work-action +com.google.errorprone:error_prone_annotations:2.18.0=_internal-unified-test-platform-android-test-plugin-host-retention +com.google.errorprone:error_prone_annotations:2.23.0=_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-core,_internal-unified-test-platform-launcher +com.google.errorprone:error_prone_annotations:2.28.0=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-gradle-work-action,swiftExportClasspathResolvable +com.google.errorprone:error_prone_annotations:2.30.0=_internal-unified-test-platform-android-test-plugin-host-emulator-control +com.google.guava:failureaccess:1.0.1=_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core,_internal-unified-test-platform-launcher +com.google.guava:failureaccess:1.0.2=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-gradle-work-action +com.google.guava:guava:32.0.1-jre=_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core,_internal-unified-test-platform-launcher +com.google.guava:guava:33.3.1-jre=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-gradle-work-action +com.google.guava:listenablefuture:1.0=debugAndroidTestLintChecksClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestRuntimeClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestRuntimeClasspath +com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-core,_internal-unified-test-platform-gradle-work-action,_internal-unified-test-platform-launcher +com.google.j2objc:j2objc-annotations:2.8=_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core,_internal-unified-test-platform-launcher +com.google.j2objc:j2objc-annotations:3.0.0=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-gradle-work-action +com.google.jimfs:jimfs:1.1=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +com.google.protobuf:protobuf-java-util:3.22.3=_internal-unified-test-platform-core +com.google.protobuf:protobuf-java-util:4.28.3=_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-gradle-work-action,_internal-unified-test-platform-launcher +com.google.protobuf:protobuf-java:3.22.3=_internal-unified-test-platform-android-test-plugin-host-retention +com.google.protobuf:protobuf-java:3.25.5=_internal-unified-test-platform-android-device-provider-gradle +com.google.protobuf:protobuf-java:4.28.3=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-core,_internal-unified-test-platform-gradle-work-action,_internal-unified-test-platform-launcher +com.google.protobuf:protobuf-kotlin:3.24.4=_internal-unified-test-platform-android-device-provider-gradle +com.google.protobuf:protobuf-kotlin:4.28.3=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-core,_internal-unified-test-platform-gradle-work-action,_internal-unified-test-platform-launcher +com.google.testing.platform:android-device-provider-local:0.0.9-alpha02=_internal-unified-test-platform-android-test-plugin-host-retention +com.google.testing.platform:android-device-provider-local:0.0.9-alpha03=_internal-unified-test-platform-android-device-provider-gradle +com.google.testing.platform:android-device-provider-local:0.0.9-alpha04=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle +com.google.testing.platform:android-driver-instrumentation:0.0.9-alpha04=_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin-host-emulator-control +com.google.testing.platform:android-test-plugin:0.0.9-alpha04=_internal-unified-test-platform-android-test-plugin +com.google.testing.platform:core-proto:0.0.9-alpha03=_internal-unified-test-platform-android-device-provider-gradle +com.google.testing.platform:core-proto:0.0.9-alpha04=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-gradle-work-action +com.google.testing.platform:core:0.0.9-alpha04=_internal-unified-test-platform-core +com.google.testing.platform:launcher:0.0.9-alpha02=_internal-unified-test-platform-android-test-plugin-host-retention +com.google.testing.platform:launcher:0.0.9-alpha04=_internal-unified-test-platform-gradle-work-action,_internal-unified-test-platform-launcher +com.sun.istack:istack-commons-runtime:3.0.8=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +com.sun.xml.fastinfoset:FastInfoset:1.2.16=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +commons-codec:commons-codec:1.17.1=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +commons-io:commons-io:2.13.0=_internal-unified-test-platform-android-test-plugin-host-retention +commons-io:commons-io:2.16.1=_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-gradle-work-action +commons-logging:commons-logging:1.2=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +io.github.java-diff-utils:java-diff-utils:4.12=kotlinInternalAbiValidation +io.grpc:grpc-api:1.57.0=_internal-unified-test-platform-android-test-plugin-host-retention +io.grpc:grpc-api:1.57.2=_internal-unified-test-platform-core +io.grpc:grpc-api:1.69.1=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.grpc:grpc-context:1.57.0=_internal-unified-test-platform-android-test-plugin-host-retention +io.grpc:grpc-context:1.57.2=_internal-unified-test-platform-core +io.grpc:grpc-context:1.69.1=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.grpc:grpc-core:1.57.0=_internal-unified-test-platform-android-test-plugin-host-retention +io.grpc:grpc-core:1.57.2=_internal-unified-test-platform-core +io.grpc:grpc-core:1.69.1=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.grpc:grpc-netty:1.57.0=_internal-unified-test-platform-android-test-plugin-host-retention +io.grpc:grpc-netty:1.57.2=_internal-unified-test-platform-core +io.grpc:grpc-netty:1.69.1=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.grpc:grpc-protobuf-lite:1.57.0=_internal-unified-test-platform-android-test-plugin-host-retention +io.grpc:grpc-protobuf-lite:1.57.2=_internal-unified-test-platform-core +io.grpc:grpc-protobuf-lite:1.69.1=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.grpc:grpc-protobuf:1.57.0=_internal-unified-test-platform-android-test-plugin-host-retention +io.grpc:grpc-protobuf:1.57.2=_internal-unified-test-platform-core +io.grpc:grpc-protobuf:1.69.1=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.grpc:grpc-services:1.57.2=_internal-unified-test-platform-core +io.grpc:grpc-stub:1.57.0=_internal-unified-test-platform-android-test-plugin-host-retention +io.grpc:grpc-stub:1.57.2=_internal-unified-test-platform-core +io.grpc:grpc-stub:1.69.1=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.grpc:grpc-util:1.69.1=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.netty:netty-buffer:4.1.110.Final=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.netty:netty-buffer:4.1.93.Final=_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core +io.netty:netty-codec-http2:4.1.110.Final=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.netty:netty-codec-http2:4.1.93.Final=_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core +io.netty:netty-codec-http:4.1.110.Final=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.netty:netty-codec-http:4.1.93.Final=_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core +io.netty:netty-codec-socks:4.1.110.Final=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.netty:netty-codec-socks:4.1.93.Final=_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core +io.netty:netty-codec:4.1.110.Final=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.netty:netty-codec:4.1.93.Final=_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core +io.netty:netty-common:4.1.110.Final=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.netty:netty-common:4.1.93.Final=_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core +io.netty:netty-handler-proxy:4.1.110.Final=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.netty:netty-handler-proxy:4.1.93.Final=_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core +io.netty:netty-handler:4.1.110.Final=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.netty:netty-handler:4.1.93.Final=_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core +io.netty:netty-resolver:4.1.110.Final=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.netty:netty-resolver:4.1.93.Final=_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core +io.netty:netty-transport-native-unix-common:4.1.110.Final=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.netty:netty-transport-native-unix-common:4.1.93.Final=_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core +io.netty:netty-transport:4.1.110.Final=_internal-unified-test-platform-android-test-plugin-host-emulator-control +io.netty:netty-transport:4.1.93.Final=_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core +io.opencensus:opencensus-api:0.31.0=_internal-unified-test-platform-core +io.opencensus:opencensus-proto:0.2.0=_internal-unified-test-platform-core,_internal-unified-test-platform-gradle-work-action,_internal-unified-test-platform-launcher +io.opentelemetry:opentelemetry-api:1.41.0=swiftExportClasspathResolvable +io.opentelemetry:opentelemetry-context:1.41.0=swiftExportClasspathResolvable +io.perfmark:perfmark-api:0.26.0=_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core +io.perfmark:perfmark-api:0.27.0=_internal-unified-test-platform-android-test-plugin-host-emulator-control +jakarta.activation:jakarta.activation-api:1.2.1=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +jakarta.xml.bind:jakarta.xml.bind-api:2.3.2=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +javax.annotation:javax.annotation-api:1.3.2=_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-retention +javax.inject:javax.inject:1=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-core,_internal-unified-test-platform-gradle-work-action +net.java.dev.jna:jna-platform:5.6.0=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-gradle-work-action +net.java.dev.jna:jna:5.6.0=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-gradle-work-action +net.sf.kxml:kxml2:2.3.0=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-gradle-work-action +org.apache.commons:commons-compress:1.27.1=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +org.apache.commons:commons-lang3:3.16.0=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +org.apache.httpcomponents:httpclient:4.5.6=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +org.apache.httpcomponents:httpcore:4.4.16=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +org.apache.httpcomponents:httpmime:4.5.6=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +org.bouncycastle:bcpg-jdk18on:1.80=kotlinBouncyCastleConfiguration +org.bouncycastle:bcpkix-jdk18on:1.79=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +org.bouncycastle:bcpkix-jdk18on:1.80=kotlinBouncyCastleConfiguration +org.bouncycastle:bcprov-jdk18on:1.79=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +org.bouncycastle:bcprov-jdk18on:1.80=kotlinBouncyCastleConfiguration +org.bouncycastle:bcutil-jdk18on:1.79=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +org.bouncycastle:bcutil-jdk18on:1.80=kotlinBouncyCastleConfiguration +org.checkerframework:checker-qual:3.33.0=_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core,_internal-unified-test-platform-launcher +org.checkerframework:checker-qual:3.43.0=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-gradle-work-action,swiftExportClasspathResolvable +org.codehaus.mojo:animal-sniffer-annotations:1.23=_internal-unified-test-platform-android-test-plugin-host-retention,_internal-unified-test-platform-core +org.codehaus.mojo:animal-sniffer-annotations:1.24=_internal-unified-test-platform-android-test-plugin-host-emulator-control +org.glassfish.jaxb:jaxb-runtime:2.3.2=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +org.glassfish.jaxb:txw2:2.3.2=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +org.jacoco:org.jacoco.agent:0.8.14=androidJacocoAnt +org.jacoco:org.jacoco.ant:0.8.14=androidJacocoAnt +org.jacoco:org.jacoco.core:0.8.14=androidJacocoAnt +org.jacoco:org.jacoco.report:0.8.14=androidJacocoAnt +org.jetbrains.kotlin:abi-tools-api:2.3.20=kotlinInternalAbiValidation +org.jetbrains.kotlin:abi-tools:2.3.20=kotlinInternalAbiValidation +org.jetbrains.kotlin:kotlin-build-tools-api:2.4.0=kotlinBuildToolsApiClasspath,kotlinCompilerClasspath,kotlinKlibCommonizerClasspath +org.jetbrains.kotlin:kotlin-build-tools-api:2.4.20-Beta1=kotlinAbiValidationCompatClasspath +org.jetbrains.kotlin:kotlin-build-tools-compat:2.4.0=kotlinAbiValidationCompatClasspath,kotlinBuildToolsApiClasspath,kotlinCompilerClasspath +org.jetbrains.kotlin:kotlin-build-tools-cri-impl:2.4.0=kotlinBuildToolsApiClasspath,kotlinCompilerClasspath +org.jetbrains.kotlin:kotlin-build-tools-cri-impl:2.4.20-Beta1=kotlinAbiValidationCompatClasspath +org.jetbrains.kotlin:kotlin-build-tools-impl:2.4.0=kotlinBuildToolsApiClasspath,kotlinCompilerClasspath +org.jetbrains.kotlin:kotlin-build-tools-impl:2.4.20-Beta1=kotlinAbiValidationCompatClasspath +org.jetbrains.kotlin:kotlin-compiler-embeddable:2.2.20=swiftExportClasspathResolvable +org.jetbrains.kotlin:kotlin-compiler-embeddable:2.4.0=kotlinBuildToolsApiClasspath,kotlinCompilerClasspath,kotlinKlibCommonizerClasspath +org.jetbrains.kotlin:kotlin-compiler-embeddable:2.4.20-Beta1=kotlinAbiValidationCompatClasspath +org.jetbrains.kotlin:kotlin-compiler-runner:2.4.0=kotlinBuildToolsApiClasspath,kotlinCompilerClasspath +org.jetbrains.kotlin:kotlin-compiler-runner:2.4.20-Beta1=kotlinAbiValidationCompatClasspath +org.jetbrains.kotlin:kotlin-daemon-client:2.4.0=kotlinBuildToolsApiClasspath,kotlinCompilerClasspath +org.jetbrains.kotlin:kotlin-daemon-client:2.4.20-Beta1=kotlinAbiValidationCompatClasspath +org.jetbrains.kotlin:kotlin-daemon-embeddable:2.2.20=swiftExportClasspathResolvable +org.jetbrains.kotlin:kotlin-daemon-embeddable:2.4.0=kotlinBuildToolsApiClasspath,kotlinCompilerClasspath,kotlinKlibCommonizerClasspath +org.jetbrains.kotlin:kotlin-daemon-embeddable:2.4.20-Beta1=kotlinAbiValidationCompatClasspath +org.jetbrains.kotlin:kotlin-klib-abi-reader:2.3.20=kotlinInternalAbiValidation +org.jetbrains.kotlin:kotlin-klib-commonizer-embeddable:2.4.0=kotlinKlibCommonizerClasspath +org.jetbrains.kotlin:kotlin-metadata-jvm:2.3.20=kotlinInternalAbiValidation +org.jetbrains.kotlin:kotlin-reflect:1.6.10=kotlinAbiValidationCompatClasspath,kotlinBuildToolsApiClasspath,kotlinCompilerClasspath,kotlinKlibCommonizerClasspath,swiftExportClasspathResolvable +org.jetbrains.kotlin:kotlin-reflect:1.8.21=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-core,_internal-unified-test-platform-gradle-work-action,_internal-unified-test-platform-launcher +org.jetbrains.kotlin:kotlin-reflect:2.2.10=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +org.jetbrains.kotlin:kotlin-script-runtime:2.2.20=swiftExportClasspathResolvable +org.jetbrains.kotlin:kotlin-script-runtime:2.4.0=kotlinBuildToolsApiClasspath,kotlinCompilerClasspath,kotlinKlibCommonizerClasspath +org.jetbrains.kotlin:kotlin-script-runtime:2.4.20-Beta1=kotlinAbiValidationCompatClasspath +org.jetbrains.kotlin:kotlin-stdlib-common:1.8.21=_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-core +org.jetbrains.kotlin:kotlin-stdlib-common:1.8.22=debugApiDependenciesMetadata,profileApiDependenciesMetadata,releaseApiDependenciesMetadata +org.jetbrains.kotlin:kotlin-stdlib-common:1.9.0=_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-launcher +org.jetbrains.kotlin:kotlin-stdlib-common:1.9.20=_internal-unified-test-platform-android-test-plugin-host-retention +org.jetbrains.kotlin:kotlin-stdlib-common:2.1.20=_internal-unified-test-platform-android-device-provider-gradle +org.jetbrains.kotlin:kotlin-stdlib-common:2.2.10=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-gradle-work-action +org.jetbrains.kotlin:kotlin-stdlib-common:2.2.20=profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +org.jetbrains.kotlin:kotlin-stdlib-common:2.4.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath +org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.20=_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-core,_internal-unified-test-platform-launcher,debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.20=_internal-unified-test-platform-android-test-plugin-host-retention +org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.1.20=_internal-unified-test-platform-android-device-provider-gradle +org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.2.10=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-gradle-work-action +org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.20=_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-core,_internal-unified-test-platform-launcher,debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.20=_internal-unified-test-platform-android-test-plugin-host-retention +org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.1.20=_internal-unified-test-platform-android-device-provider-gradle +org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.2.10=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-gradle-work-action +org.jetbrains.kotlin:kotlin-stdlib:1.8.21=_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-core +org.jetbrains.kotlin:kotlin-stdlib:1.8.22=debugApiDependenciesMetadata,profileApiDependenciesMetadata,releaseApiDependenciesMetadata +org.jetbrains.kotlin:kotlin-stdlib:1.9.0=_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-launcher +org.jetbrains.kotlin:kotlin-stdlib:1.9.20=_internal-unified-test-platform-android-test-plugin-host-retention +org.jetbrains.kotlin:kotlin-stdlib:2.1.20=_internal-unified-test-platform-android-device-provider-gradle +org.jetbrains.kotlin:kotlin-stdlib:2.2.10=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-gradle-work-action +org.jetbrains.kotlin:kotlin-stdlib:2.2.20=apiDependenciesMetadata,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath,swiftExportClasspathResolvable +org.jetbrains.kotlin:kotlin-stdlib:2.3.20=kotlinInternalAbiValidation +org.jetbrains.kotlin:kotlin-stdlib:2.4.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,kotlinBuildToolsApiClasspath,kotlinCompilerClasspath,kotlinKlibCommonizerClasspath,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath +org.jetbrains.kotlin:kotlin-stdlib:2.4.20-Beta1=kotlinAbiValidationCompatClasspath +org.jetbrains.kotlin:kotlin-tooling-core:2.4.0=kotlinBuildToolsApiClasspath,kotlinCompilerClasspath +org.jetbrains.kotlin:kotlin-tooling-core:2.4.20-Beta1=kotlinAbiValidationCompatClasspath +org.jetbrains.kotlin:swift-export-embeddable:2.2.20=swiftExportClasspathResolvable +org.jetbrains.kotlinx:atomicfu-jvm:0.22.0=_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-gradle-work-action,_internal-unified-test-platform-launcher +org.jetbrains.kotlinx:atomicfu:0.20.2=debugApiDependenciesMetadata,profileApiDependenciesMetadata,releaseApiDependenciesMetadata +org.jetbrains.kotlinx:atomicfu:0.22.0=_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-gradle-work-action,_internal-unified-test-platform-launcher +org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.6.4=_internal-unified-test-platform-android-test-plugin-host-retention +org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.1=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-core,_internal-unified-test-platform-gradle-work-action,_internal-unified-test-platform-launcher +org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.9.0=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.6.4=_internal-unified-test-platform-android-test-plugin-host-retention +org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.1=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-core,_internal-unified-test-platform-gradle-work-action,_internal-unified-test-platform-launcher +org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.8.0=kotlinAbiValidationCompatClasspath,kotlinBuildToolsApiClasspath,kotlinCompilerClasspath,kotlinKlibCommonizerClasspath,swiftExportClasspathResolvable +org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.9.0=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4=_internal-unified-test-platform-android-test-plugin-host-retention +org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-core,_internal-unified-test-platform-gradle-work-action,_internal-unified-test-platform-launcher +org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +org.jetbrains.kotlinx:kotlinx-serialization-bom:1.7.3=swiftExportClasspathResolvable +org.jetbrains.kotlinx:kotlinx-serialization-core-jvm:1.7.3=swiftExportClasspathResolvable +org.jetbrains.kotlinx:kotlinx-serialization-core:1.7.3=swiftExportClasspathResolvable +org.jetbrains:annotations:13.0=_internal-unified-test-platform-android-test-plugin-host-retention,debugApiDependenciesMetadata,kotlinAbiValidationCompatClasspath,kotlinBuildToolsApiClasspath,kotlinCompilerClasspath,kotlinInternalAbiValidation,kotlinKlibCommonizerClasspath,profileApiDependenciesMetadata,releaseApiDependenciesMetadata,swiftExportClasspathResolvable +org.jetbrains:annotations:23.0.0=_internal-unified-test-platform-android-device-provider-ddmlib,_internal-unified-test-platform-android-device-provider-gradle,_internal-unified-test-platform-android-driver-instrumentation,_internal-unified-test-platform-android-test-plugin,_internal-unified-test-platform-android-test-plugin-host-additional-test-output,_internal-unified-test-platform-android-test-plugin-host-apk-installer,_internal-unified-test-platform-android-test-plugin-host-coverage,_internal-unified-test-platform-android-test-plugin-host-device-info,_internal-unified-test-platform-android-test-plugin-host-emulator-control,_internal-unified-test-platform-android-test-plugin-host-logcat,_internal-unified-test-platform-android-test-plugin-result-listener-gradle,_internal-unified-test-platform-core,_internal-unified-test-platform-gradle-work-action,_internal-unified-test-platform-launcher,debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +org.jspecify:jspecify:1.0.0=debugAndroidTestCompileClasspath,debugAndroidTestLintChecksClasspath,debugApiDependenciesMetadata,debugCompileClasspath,debugLintChecksClasspath,debugRuntimeClasspath,debugUnitTestCompileClasspath,debugUnitTestLintChecksClasspath,debugUnitTestRuntimeClasspath,profileApiDependenciesMetadata,profileCompileClasspath,profileLintChecksClasspath,profileRuntimeClasspath,profileUnitTestCompileClasspath,profileUnitTestRuntimeClasspath,releaseApiDependenciesMetadata,releaseCompileClasspath,releaseLintChecksClasspath,releaseRuntimeClasspath,releaseUnitTestCompileClasspath,releaseUnitTestRuntimeClasspath +org.jvnet.staxex:stax-ex:1.8.1=_internal-unified-test-platform-android-test-plugin-result-listener-gradle +org.ow2.asm:asm-commons:9.9=androidJacocoAnt +org.ow2.asm:asm-tree:9.9=androidJacocoAnt +org.ow2.asm:asm:9.9=androidJacocoAnt +empty=androidApis,androidJdkImage,androidTestApiDependenciesMetadata,androidTestCompileOnlyDependenciesMetadata,androidTestDebugApiDependenciesMetadata,androidTestDebugCompileOnlyDependenciesMetadata,androidTestDebugImplementationDependenciesMetadata,androidTestDebugIntransitiveDependenciesMetadata,androidTestDebugRuntimeOnlyDependenciesMetadata,androidTestImplementationDependenciesMetadata,androidTestIntransitiveDependenciesMetadata,androidTestProfileApiDependenciesMetadata,androidTestProfileCompileOnlyDependenciesMetadata,androidTestProfileImplementationDependenciesMetadata,androidTestProfileIntransitiveDependenciesMetadata,androidTestProfileRuntimeOnlyDependenciesMetadata,androidTestReleaseApiDependenciesMetadata,androidTestReleaseCompileOnlyDependenciesMetadata,androidTestReleaseImplementationDependenciesMetadata,androidTestReleaseIntransitiveDependenciesMetadata,androidTestReleaseRuntimeOnlyDependenciesMetadata,androidTestRuntimeOnlyDependenciesMetadata,androidTestUtil,compileOnlyDependenciesMetadata,coreLibraryDesugaring,debugAndroidTestAnnotationProcessorClasspath,debugAndroidTestApiDependenciesMetadata,debugAndroidTestCompileOnlyDependenciesMetadata,debugAndroidTestImplementationDependenciesMetadata,debugAndroidTestIntransitiveDependenciesMetadata,debugAndroidTestRuntimeClasspath,debugAndroidTestRuntimeOnlyDependenciesMetadata,debugAnnotationProcessorClasspath,debugCompileOnlyDependenciesMetadata,debugImplementationDependenciesMetadata,debugIntransitiveDependenciesMetadata,debugReverseMetadataValues,debugRuntimeOnlyDependenciesMetadata,debugUnitTestAnnotationProcessorClasspath,debugUnitTestApiDependenciesMetadata,debugUnitTestCompileOnlyDependenciesMetadata,debugUnitTestImplementationDependenciesMetadata,debugUnitTestIntransitiveDependenciesMetadata,debugUnitTestRuntimeOnlyDependenciesMetadata,debugWearBundling,implementationDependenciesMetadata,intransitiveDependenciesMetadata,kotlinCompilerPluginClasspath,kotlinCompilerPluginClasspathDebug,kotlinCompilerPluginClasspathDebugAndroidTest,kotlinCompilerPluginClasspathDebugUnitTest,kotlinCompilerPluginClasspathProfile,kotlinCompilerPluginClasspathProfileUnitTest,kotlinCompilerPluginClasspathRelease,kotlinCompilerPluginClasspathReleaseUnitTest,kotlinNativeCompilerPluginClasspath,lintChecks,lintPublish,profileAnnotationProcessorClasspath,profileCompileOnlyDependenciesMetadata,profileImplementationDependenciesMetadata,profileIntransitiveDependenciesMetadata,profileReverseMetadataValues,profileRuntimeOnlyDependenciesMetadata,profileUnitTestAnnotationProcessorClasspath,profileUnitTestApiDependenciesMetadata,profileUnitTestCompileOnlyDependenciesMetadata,profileUnitTestImplementationDependenciesMetadata,profileUnitTestIntransitiveDependenciesMetadata,profileUnitTestRuntimeOnlyDependenciesMetadata,profileWearBundling,releaseAnnotationProcessorClasspath,releaseCompileOnlyDependenciesMetadata,releaseImplementationDependenciesMetadata,releaseIntransitiveDependenciesMetadata,releaseReverseMetadataValues,releaseRuntimeOnlyDependenciesMetadata,releaseUnitTestAnnotationProcessorClasspath,releaseUnitTestApiDependenciesMetadata,releaseUnitTestCompileOnlyDependenciesMetadata,releaseUnitTestImplementationDependenciesMetadata,releaseUnitTestIntransitiveDependenciesMetadata,releaseUnitTestRuntimeOnlyDependenciesMetadata,releaseWearBundling,runtimeOnlyDependenciesMetadata,testApiDependenciesMetadata,testCompileOnlyDependenciesMetadata,testDebugApiDependenciesMetadata,testDebugCompileOnlyDependenciesMetadata,testDebugImplementationDependenciesMetadata,testDebugIntransitiveDependenciesMetadata,testDebugRuntimeOnlyDependenciesMetadata,testFixturesApiDependenciesMetadata,testFixturesCompileOnlyDependenciesMetadata,testFixturesDebugApiDependenciesMetadata,testFixturesDebugCompileOnlyDependenciesMetadata,testFixturesDebugImplementationDependenciesMetadata,testFixturesDebugIntransitiveDependenciesMetadata,testFixturesDebugRuntimeOnlyDependenciesMetadata,testFixturesImplementationDependenciesMetadata,testFixturesIntransitiveDependenciesMetadata,testFixturesProfileApiDependenciesMetadata,testFixturesProfileCompileOnlyDependenciesMetadata,testFixturesProfileImplementationDependenciesMetadata,testFixturesProfileIntransitiveDependenciesMetadata,testFixturesProfileRuntimeOnlyDependenciesMetadata,testFixturesReleaseApiDependenciesMetadata,testFixturesReleaseCompileOnlyDependenciesMetadata,testFixturesReleaseImplementationDependenciesMetadata,testFixturesReleaseIntransitiveDependenciesMetadata,testFixturesReleaseRuntimeOnlyDependenciesMetadata,testFixturesRuntimeOnlyDependenciesMetadata,testImplementationDependenciesMetadata,testIntransitiveDependenciesMetadata,testProfileApiDependenciesMetadata,testProfileCompileOnlyDependenciesMetadata,testProfileImplementationDependenciesMetadata,testProfileIntransitiveDependenciesMetadata,testProfileRuntimeOnlyDependenciesMetadata,testReleaseApiDependenciesMetadata,testReleaseCompileOnlyDependenciesMetadata,testReleaseImplementationDependenciesMetadata,testReleaseIntransitiveDependenciesMetadata,testReleaseRuntimeOnlyDependenciesMetadata,testRuntimeOnlyDependenciesMetadata diff --git a/packages/material_ui/a11y_assessments/android/settings.gradle b/packages/material_ui/a11y_assessments/android/settings.gradle new file mode 100644 index 000000000000..6434e4178247 --- /dev/null +++ b/packages/material_ui/a11y_assessments/android/settings.gradle @@ -0,0 +1,41 @@ +// 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. + +// This file is auto generated. +// To update all the settings.gradle files in the Flutter repo, +// See dev/tools/bin/generate_gradle_lockfiles.dart. + +pluginManagement { + def flutterSdkPath = { + def properties = new Properties() + file("local.properties").withInputStream { properties.load(it) } + def flutterSdkPath = properties.getProperty("flutter.sdk") + assert flutterSdkPath != null, "flutter.sdk not set in local.properties" + return flutterSdkPath + } + settings.ext.flutterSdkPath = flutterSdkPath() + + includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle") + + repositories { + google() + mavenCentral() + gradlePluginPortal() + } +} + +buildscript { + dependencyLocking { + lockFile = file("${rootProject.projectDir}/buildscript-gradle.lockfile") + lockAllConfigurations() + } +} + +plugins { + id "dev.flutter.flutter-plugin-loader" version "1.0.0" + id "com.android.application" version "9.1.0" apply false + id "org.jetbrains.kotlin.android" version "2.4.0" apply false +} + +include ":app" diff --git a/packages/material_ui/a11y_assessments/ios/.gitignore b/packages/material_ui/a11y_assessments/ios/.gitignore new file mode 100644 index 000000000000..7a7f9873ad7d --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/.gitignore @@ -0,0 +1,34 @@ +**/dgph +*.mode1v3 +*.mode2v3 +*.moved-aside +*.pbxuser +*.perspectivev3 +**/*sync/ +.sconsign.dblite +.tags* +**/.vagrant/ +**/DerivedData/ +Icon? +**/Pods/ +**/.symlinks/ +profile +xcuserdata +**/.generated/ +Flutter/App.framework +Flutter/Flutter.framework +Flutter/Flutter.podspec +Flutter/Generated.xcconfig +Flutter/ephemeral/ +Flutter/app.flx +Flutter/app.zip +Flutter/flutter_assets/ +Flutter/flutter_export_environment.sh +ServiceDefinitions.json +Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!default.mode1v3 +!default.mode2v3 +!default.pbxuser +!default.perspectivev3 diff --git a/packages/material_ui/a11y_assessments/ios/Flutter/AppFrameworkInfo.plist b/packages/material_ui/a11y_assessments/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 000000000000..391a902b2beb --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,24 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + + diff --git a/packages/material_ui/a11y_assessments/ios/Flutter/Debug.xcconfig b/packages/material_ui/a11y_assessments/ios/Flutter/Debug.xcconfig new file mode 100644 index 000000000000..592ceee85b89 --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/Flutter/Debug.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/packages/material_ui/a11y_assessments/ios/Flutter/Release.xcconfig b/packages/material_ui/a11y_assessments/ios/Flutter/Release.xcconfig new file mode 100644 index 000000000000..592ceee85b89 --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/Flutter/Release.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/project.pbxproj b/packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 000000000000..9c51c5395275 --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,613 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 54; + objects = { + +/* Begin PBXBuildFile section */ + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 97C146E61CF9000F007C117D /* Project object */; + proxyType = 1; + remoteGlobalIDString = 97C146ED1CF9000F007C117D; + remoteInfo = Runner; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 9705A1C41CF9048500538489 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; + 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; }; + 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; + 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; + 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 97C146EB1CF9000F007C117D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 331C8082294A63A400263BE5 /* RunnerTests */ = { + isa = PBXGroup; + children = ( + 331C807B294A618700263BE5 /* RunnerTests.swift */, + ); + path = RunnerTests; + sourceTree = ""; + }; + 9740EEB11CF90186004384FC /* Flutter */ = { + isa = PBXGroup; + children = ( + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 9740EEB31CF90195004384FC /* Generated.xcconfig */, + ); + name = Flutter; + sourceTree = ""; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 97C146EF1CF9000F007C117D /* Products */, + 331C8082294A63A400263BE5 /* RunnerTests */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + 331C8081294A63A400263BE5 /* RunnerTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 97C146F01CF9000F007C117D /* Runner */ = { + isa = PBXGroup; + children = ( + 97C146FA1CF9000F007C117D /* Main.storyboard */, + 97C146FD1CF9000F007C117D /* Assets.xcassets */, + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, + 97C147021CF9000F007C117D /* Info.plist */, + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, + ); + path = Runner; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 331C8080294A63A400263BE5 /* RunnerTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; + buildPhases = ( + 331C807D294A63A400263BE5 /* Sources */, + 331C807F294A63A400263BE5 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 331C8086294A63A400263BE5 /* PBXTargetDependency */, + ); + name = RunnerTests; + productName = RunnerTests; + productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 97C146ED1CF9000F007C117D /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 9740EEB61CF901F6004384FC /* Run Script */, + 97C146EA1CF9000F007C117D /* Sources */, + 97C146EB1CF9000F007C117D /* Frameworks */, + 97C146EC1CF9000F007C117D /* Resources */, + 9705A1C41CF9048500538489 /* Embed Frameworks */, + 3B06AD1E1E4923F5004D2608 /* Thin Binary */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Runner; + productName = Runner; + productReference = 97C146EE1CF9000F007C117D /* Runner.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 97C146E61CF9000F007C117D /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = YES; + LastUpgradeCheck = 1510; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 331C8080294A63A400263BE5 = { + CreatedOnToolsVersion = 14.0; + TestTargetID = 97C146ED1CF9000F007C117D; + }; + 97C146ED1CF9000F007C117D = { + CreatedOnToolsVersion = 7.3.1; + LastSwiftMigration = 1100; + }; + }; + }; + buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 97C146E51CF9000F007C117D; + productRefGroup = 97C146EF1CF9000F007C117D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 97C146ED1CF9000F007C117D /* Runner */, + 331C8080294A63A400263BE5 /* RunnerTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 331C807F294A63A400263BE5 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EC1CF9000F007C117D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}", + ); + name = "Thin Binary"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; + }; + 9740EEB61CF901F6004384FC /* Run Script */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Run Script"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 331C807D294A63A400263BE5 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 97C146EA1CF9000F007C117D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 331C8086294A63A400263BE5 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 97C146ED1CF9000F007C117D /* Runner */; + targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + 97C146FA1CF9000F007C117D /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C146FB1CF9000F007C117D /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C147001CF9000F007C117D /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 249021D3217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = 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_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_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + 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 = 15.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Profile; + }; + 249021D4217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = S8QB4VV633; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = dev.flutter.a11yAssessments; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Profile; + }; + 331C8088294A63A400263BE5 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.a11yAssessments.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Debug; + }; + 331C8089294A63A400263BE5 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.a11yAssessments.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Release; + }; + 331C808A294A63A400263BE5 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.example.a11yAssessments.RunnerTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_VERSION = 5.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner"; + }; + name = Profile; + }; + 97C147031CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = 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_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_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + 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 = 15.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 97C147041CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = 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_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_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + 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 = 15.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 97C147061CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = S8QB4VV633; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = dev.flutter.a11yAssessments; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 97C147071CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + DEVELOPMENT_TEAM = S8QB4VV633; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = dev.flutter.a11yAssessments; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 331C8088294A63A400263BE5 /* Debug */, + 331C8089294A63A400263BE5 /* Release */, + 331C808A294A63A400263BE5 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147031CF9000F007C117D /* Debug */, + 97C147041CF9000F007C117D /* Release */, + 249021D3217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147061CF9000F007C117D /* Debug */, + 97C147071CF9000F007C117D /* Release */, + 249021D4217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 97C146E61CF9000F007C117D /* Project object */; +} diff --git a/packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 000000000000..919434a6254f --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 000000000000..18d981003d68 --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 000000000000..f9b0d7c5ea15 --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 000000000000..15cada4838e2 --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/material_ui/a11y_assessments/ios/Runner.xcworkspace/contents.xcworkspacedata b/packages/material_ui/a11y_assessments/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 000000000000..1d526a16ed0f --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/packages/material_ui/a11y_assessments/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/packages/material_ui/a11y_assessments/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 000000000000..18d981003d68 --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/packages/material_ui/a11y_assessments/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/packages/material_ui/a11y_assessments/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 000000000000..f9b0d7c5ea15 --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/packages/material_ui/a11y_assessments/ios/Runner/AppDelegate.swift b/packages/material_ui/a11y_assessments/ios/Runner/AppDelegate.swift new file mode 100644 index 000000000000..68cf615f9bab --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/Runner/AppDelegate.swift @@ -0,0 +1,22 @@ +// 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 Flutter +import UIKit + +@main +@objc class AppDelegate: FlutterAppDelegate { + override func application( + _ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? + ) -> Bool { + return super.application(application, didFinishLaunchingWithOptions: launchOptions) + } +} + +extension AppDelegate: FlutterImplicitEngineDelegate { + func didInitializeImplicitFlutterEngine(_ engineBridge: FlutterImplicitEngineBridge) { + GeneratedPluginRegistrant.register(with: engineBridge.pluginRegistry) + } +} diff --git a/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 000000000000..d36b1fab2d9d --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,122 @@ +{ + "images" : [ + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@3x.png", + "scale" : "3x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@3x.png", + "scale" : "3x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@3x.png", + "scale" : "3x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@2x.png", + "scale" : "2x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@3x.png", + "scale" : "3x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@1x.png", + "scale" : "1x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@1x.png", + "scale" : "1x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@1x.png", + "scale" : "1x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@2x.png", + "scale" : "2x" + }, + { + "size" : "83.5x83.5", + "idiom" : "ipad", + "filename" : "Icon-App-83.5x83.5@2x.png", + "scale" : "2x" + }, + { + "size" : "1024x1024", + "idiom" : "ios-marketing", + "filename" : "Icon-App-1024x1024@1x.png", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..b6a5d3f48e4e0fec02ff52437b182c553efd1c00 GIT binary patch literal 10932 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 literal 0 HcmV?d00001 diff --git a/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..f091b6b0bca859a3f474b03065bef75ba58a9e4c GIT binary patch literal 1588 zcmV-42Fv-0P)C1SqPt}wig>|5Crh^=oyX$BK<}M8eLU3e2hGT;=G|!_SP)7zNI6fqUMB=)y zRAZ>eDe#*r`yDAVgB_R*LB*MAc)8(b{g{9McCXW!lq7r(btRoB9!8B-#AI6JMb~YFBEvdsV)`mEQO^&#eRKx@b&x- z5lZm*!WfD8oCLzfHGz#u7sT0^VLMI1MqGxF^v+`4YYnVYgk*=kU?HsSz{v({E3lb9 z>+xILjBN)t6`=g~IBOelGQ(O990@BfXf(DRI5I$qN$0Gkz-FSc$3a+2fX$AedL4u{ z4V+5Ong(9LiGcIKW?_352sR;LtDPmPJXI{YtT=O8=76o9;*n%_m|xo!i>7$IrZ-{l z-x3`7M}qzHsPV@$v#>H-TpjDh2UE$9g6sysUREDy_R(a)>=eHw-WAyfIN z*qb!_hW>G)Tu8nSw9yn#3wFMiLcfc4pY0ek1}8(NqkBR@t4{~oC>ryc-h_ByH(Cg5 z>ao-}771+xE3um9lWAY1FeQFxowa1(!J(;Jg*wrg!=6FdRX+t_<%z&d&?|Bn){>zm zZQj(aA_HeBY&OC^jj*)N`8fa^ePOU72VpInJoI1?`ty#lvlNzs(&MZX+R%2xS~5Kh zX*|AU4QE#~SgPzOXe9>tRj>hjU@c1k5Y_mW*Jp3fI;)1&g3j|zDgC+}2Q_v%YfDax z!?umcN^n}KYQ|a$Lr+51Nf9dkkYFSjZZjkma$0KOj+;aQ&721~t7QUKx61J3(P4P1 zstI~7-wOACnWP4=8oGOwz%vNDqD8w&Q`qcNGGrbbf&0s9L0De{4{mRS?o0MU+nR_! zrvshUau0G^DeMhM_v{5BuLjb#Hh@r23lDAk8oF(C+P0rsBpv85EP>4CVMx#04MOfG z;P%vktHcXwTj~+IE(~px)3*MY77e}p#|c>TD?sMatC0Tu4iKKJ0(X8jxQY*gYtxsC z(zYC$g|@+I+kY;dg_dE>scBf&bP1Nc@Hz<3R)V`=AGkc;8CXqdi=B4l2k|g;2%#m& z*jfX^%b!A8#bI!j9-0Fi0bOXl(-c^AB9|nQaE`*)Hw+o&jS9@7&Gov#HbD~#d{twV zXd^Tr^mWLfFh$@Dr$e;PBEz4(-2q1FF0}c;~B5sA}+Q>TOoP+t>wf)V9Iy=5ruQa;z)y zI9C9*oUga6=hxw6QasLPnee@3^Rr*M{CdaL5=R41nLs(AHk_=Y+A9$2&H(B7!_pURs&8aNw7?`&Z&xY_Ye z)~D5Bog^td-^QbUtkTirdyK^mTHAOuptDflut!#^lnKqU md>ggs(5nOWAqO?umG&QVYK#ibz}*4>0000U6E9hRK9^#O7(mu>ETqrXGsduA8$)?`v2seloOCza43C{NQ$$gAOH**MCn0Q?+L7dl7qnbRdqZ8LSVp1ItDxhxD?t@5_yHg6A8yI zC*%Wgg22K|8E#!~cTNYR~@Y9KepMPrrB8cABapAFa=`H+UGhkXUZV1GnwR1*lPyZ;*K(i~2gp|@bzp8}og7e*#% zEnr|^CWdVV!-4*Y_7rFvlww2Ze+>j*!Z!pQ?2l->4q#nqRu9`ELo6RMS5=br47g_X zRw}P9a7RRYQ%2Vsd0Me{_(EggTnuN6j=-?uFS6j^u69elMypu?t>op*wBx<=Wx8?( ztpe^(fwM6jJX7M-l*k3kEpWOl_Vk3@(_w4oc}4YF4|Rt=2V^XU?#Yz`8(e?aZ@#li0n*=g^qOcVpd-Wbok=@b#Yw zqn8u9a)z>l(1kEaPYZ6hwubN6i<8QHgsu0oE) ziJ(p;Wxm>sf!K+cw>R-(^Y2_bahB+&KI9y^);#0qt}t-$C|Bo71lHi{_+lg#f%RFy z0um=e3$K3i6K{U_4K!EX?F&rExl^W|G8Z8;`5z-k}OGNZ0#WVb$WCpQu-_YsiqKP?BB# vzVHS-CTUF4Ozn5G+mq_~Qqto~ahA+K`|lyv3(-e}00000NkvXXu0mjfd`9t{ literal 0 HcmV?d00001 diff --git a/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..d0ef06e7edb86cdfe0d15b4b0d98334a86163658 GIT binary patch literal 1716 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 literal 0 HcmV?d00001 diff --git a/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..c8f9ed8f5cee1c98386d13b17e89f719e83555b2 GIT binary patch literal 1895 zcmV-t2blPYP)FQtfgmafE#=YDCq`qUBt#QpG%*H6QHY765~R=q zZ6iudfM}q!Pz#~9JgOi8QJ|DSu?1-*(kSi1K4#~5?#|rh?sS)(-JQqX*}ciXJ56_H zdw=^s_srbAdqxlvGyrgGet#6T7_|j;95sL%MtM;q86vOxKM$f#puR)Bjv9Zvz9-di zXOTSsZkM83)E9PYBXC<$6(|>lNLVBb&&6y{NByFCp%6+^ALR@NCTse_wqvNmSWI-m z!$%KlHFH2omF!>#%1l3LTZg(s7eof$7*xB)ZQ0h?ejh?Ta9fDv59+u#MokW+1t8Zb zgHv%K(u9G^Lv`lh#f3<6!JVTL3(dCpxHbnbA;kKqQyd1~^Xe0VIaYBSWm6nsr;dFj z4;G-RyL?cYgsN1{L4ZFFNa;8)Rv0fM0C(~Tkit94 zz#~A)59?QjD&pAPSEQ)p8gP|DS{ng)j=2ux)_EzzJ773GmQ_Cic%3JJhC0t2cx>|v zJcVusIB!%F90{+}8hG3QU4KNeKmK%T>mN57NnCZ^56=0?&3@!j>a>B43pi{!u z7JyDj7`6d)qVp^R=%j>UIY6f+3`+qzIc!Y_=+uN^3BYV|o+$vGo-j-Wm<10%A=(Yk^beI{t%ld@yhKjq0iNjqN4XMGgQtbKubPM$JWBz}YA65k%dm*awtC^+f;a-x4+ddbH^7iDWGg&N0n#MW{kA|=8iMUiFYvMoDY@sPC#t$55gn6ykUTPAr`a@!(;np824>2xJthS z*ZdmT`g5-`BuJs`0LVhz+D9NNa3<=6m;cQLaF?tCv8)zcRSh66*Z|vXhG@$I%U~2l z?`Q zykI#*+rQ=z6Jm=Bui-SfpDYLA=|vzGE(dYm=OC8XM&MDo7ux4UF1~0J1+i%aCUpRe zt3L_uNyQ*cE(38Uy03H%I*)*Bh=Lb^Xj3?I^Hnbeq72(EOK^Y93CNp*uAA{5Lc=ky zx=~RKa4{iTm{_>_vSCm?$Ej=i6@=m%@VvAITnigVg{&@!7CDgs908761meDK5azA} z4?=NOH|PdvabgJ&fW2{Mo$Q0CcD8Qc84%{JPYt5EiG{MdLIAeX%T=D7NIP4%Hw}p9 zg)==!2Lbp#j{u_}hMiao9=!VSyx0gHbeCS`;q&vzeq|fs`y&^X-lso(Ls@-706qmA z7u*T5PMo_w3{se1t2`zWeO^hOvTsohG_;>J0wVqVe+n)AbQCx)yh9;w+J6?NF5Lmo zecS@ieAKL8%bVd@+-KT{yI|S}O>pYckUFs;ry9Ow$CD@ztz5K-*D$^{i(_1llhSh^ zEkL$}tsQt5>QA^;QgjgIfBDmcOgi5YDyu?t6vSnbp=1+@6D& z5MJ}B8q;bRlVoxasyhcUF1+)o`&3r0colr}QJ3hcSdLu;9;td>kf@Tcn<@9sIx&=m z;AD;SCh95=&p;$r{Xz3iWCO^MX83AGJ(yH&eTXgv|0=34#-&WAmw{)U7OU9!Wz^!7 zZ%jZFi@JR;>Mhi7S>V7wQ176|FdW2m?&`qa(ScO^CFPR80HucLHOTy%5s*HR0^8)i h0WYBP*#0Ks^FNSabJA*5${_#%002ovPDHLkV1oKhTl@e3 literal 0 HcmV?d00001 diff --git a/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..a6d6b8609df07bf62e5100a53a01510388bd2b22 GIT binary patch literal 2665 zcmV-v3YPVWP)oFh3q0MFesq&64WThn3$;G69TfjsAv=f2G9}p zgSx99+!YV6qME!>9MD13x)k(+XE7W?_O4LoLb5ND8 zaV{9+P@>42xDfRiYBMSgD$0!vssptcb;&?u9u(LLBKmkZ>RMD=kvD3h`sk6!QYtBa ztlZI#nu$8lJ^q2Z79UTgZe>BU73(Aospiq+?SdMt8lDZ;*?@tyWVZVS_Q7S&*tJaiRlJ z+aSMOmbg3@h5}v;A*c8SbqM3icg-`Cnwl;7Ts%A1RkNIp+Txl-Ckkvg4oxrqGA5ewEgYqwtECD<_3Egu)xGllKt&J8g&+=ac@Jq4-?w6M3b*>w5 z69N3O%=I^6&UL5gZ!}trC7bUj*12xLdkNs~Bz4QdJJ*UDZox2UGR}SNg@lmOvhCc~ z*f_UeXv(=#I#*7>VZx2ObEN~UoGUTl=-@)E;YtCRZ>SVp$p9yG5hEFZ!`wI!spd)n zSk+vK0Vin7FL{7f&6OB%f;SH22dtbcF<|9fi2Fp%q4kxL!b1#l^)8dUwJ zwEf{(wJj@8iYDVnKB`eSU+;ml-t2`@%_)0jDM`+a46xhDbBj2+&Ih>1A>6aky#(-SYyE{R3f#y57wfLs z6w1p~$bp;6!9DX$M+J~S@D6vJAaElETnsX4h9a5tvPhC3L@qB~bOzkL@^z0k_hS{T4PF*TDrgdXp+dzsE? z>V|VR035Pl9n5&-RePFdS{7KAr2vPOqR9=M$vXA1Yy5>w;EsF`;OK{2pkn-kpp9Pw z)r;5JfJKKaT$4qCb{TaXHjb$QA{y0EYy*+b1XI;6Ah- zw13P)xT`>~eFoJC!>{2XL(a_#upp3gaR1#5+L(Jmzp4TBnx{~WHedpJ1ch8JFk~Sw z>F+gN+i+VD?gMXwcIhn8rz`>e>J^TI3E-MW>f}6R-pL}>WMOa0k#jN+`RyUVUC;#D zg|~oS^$6%wpF{^Qr+}X>0PKcr3Fc&>Z>uv@C);pwDs@2bZWhYP!rvGx?_|q{d`t<*XEb#=aOb=N+L@CVBGqImZf&+a zCQEa3$~@#kC);pasdG=f6tuIi0PO-y&tvX%>Mv=oY3U$nD zJ#gMegnQ46pq+3r=;zmgcG+zRc9D~c>z+jo9&D+`E6$LmyFqlmCYw;-Zooma{sR@~ z)_^|YL1&&@|GXo*pivH7k!msl+$Sew3%XJnxajt0K%3M6Bd&YFNy9}tWG^aovK2eX z1aL1%7;KRDrA@eG-Wr6w+;*H_VD~qLiVI`{_;>o)k`{8xa3EJT1O_>#iy_?va0eR? zDV=N%;Zjb%Z2s$@O>w@iqt!I}tLjGk!=p`D23I}N4Be@$(|iSA zf3Ih7b<{zqpDB4WF_5X1(peKe+rASze%u8eKLn#KKXt;UZ+Adf$_TO+vTqshLLJ5c z52HucO=lrNVae5XWOLm!V@n-ObU11!b+DN<$RuU+YsrBq*lYT;?AwJpmNKniF0Q1< zJCo>Q$=v$@&y=sj6{r!Y&y&`0$-I}S!H_~pI&2H8Z1C|BX4VgZ^-! zje3-;x0PBD!M`v*J_)rL^+$<1VJhH*2Fi~aA7s&@_rUHYJ9zD=M%4AFQ`}k8OC$9s XsPq=LnkwKG00000NkvXXu0mjfhAk5^ literal 0 HcmV?d00001 diff --git a/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..a6d6b8609df07bf62e5100a53a01510388bd2b22 GIT binary patch literal 2665 zcmV-v3YPVWP)oFh3q0MFesq&64WThn3$;G69TfjsAv=f2G9}p zgSx99+!YV6qME!>9MD13x)k(+XE7W?_O4LoLb5ND8 zaV{9+P@>42xDfRiYBMSgD$0!vssptcb;&?u9u(LLBKmkZ>RMD=kvD3h`sk6!QYtBa ztlZI#nu$8lJ^q2Z79UTgZe>BU73(Aospiq+?SdMt8lDZ;*?@tyWVZVS_Q7S&*tJaiRlJ z+aSMOmbg3@h5}v;A*c8SbqM3icg-`Cnwl;7Ts%A1RkNIp+Txl-Ckkvg4oxrqGA5ewEgYqwtECD<_3Egu)xGllKt&J8g&+=ac@Jq4-?w6M3b*>w5 z69N3O%=I^6&UL5gZ!}trC7bUj*12xLdkNs~Bz4QdJJ*UDZox2UGR}SNg@lmOvhCc~ z*f_UeXv(=#I#*7>VZx2ObEN~UoGUTl=-@)E;YtCRZ>SVp$p9yG5hEFZ!`wI!spd)n zSk+vK0Vin7FL{7f&6OB%f;SH22dtbcF<|9fi2Fp%q4kxL!b1#l^)8dUwJ zwEf{(wJj@8iYDVnKB`eSU+;ml-t2`@%_)0jDM`+a46xhDbBj2+&Ih>1A>6aky#(-SYyE{R3f#y57wfLs z6w1p~$bp;6!9DX$M+J~S@D6vJAaElETnsX4h9a5tvPhC3L@qB~bOzkL@^z0k_hS{T4PF*TDrgdXp+dzsE? z>V|VR035Pl9n5&-RePFdS{7KAr2vPOqR9=M$vXA1Yy5>w;EsF`;OK{2pkn-kpp9Pw z)r;5JfJKKaT$4qCb{TaXHjb$QA{y0EYy*+b1XI;6Ah- zw13P)xT`>~eFoJC!>{2XL(a_#upp3gaR1#5+L(Jmzp4TBnx{~WHedpJ1ch8JFk~Sw z>F+gN+i+VD?gMXwcIhn8rz`>e>J^TI3E-MW>f}6R-pL}>WMOa0k#jN+`RyUVUC;#D zg|~oS^$6%wpF{^Qr+}X>0PKcr3Fc&>Z>uv@C);pwDs@2bZWhYP!rvGx?_|q{d`t<*XEb#=aOb=N+L@CVBGqImZf&+a zCQEa3$~@#kC);pasdG=f6tuIi0PO-y&tvX%>Mv=oY3U$nD zJ#gMegnQ46pq+3r=;zmgcG+zRc9D~c>z+jo9&D+`E6$LmyFqlmCYw;-Zooma{sR@~ z)_^|YL1&&@|GXo*pivH7k!msl+$Sew3%XJnxajt0K%3M6Bd&YFNy9}tWG^aovK2eX z1aL1%7;KRDrA@eG-Wr6w+;*H_VD~qLiVI`{_;>o)k`{8xa3EJT1O_>#iy_?va0eR? zDV=N%;Zjb%Z2s$@O>w@iqt!I}tLjGk!=p`D23I}N4Be@$(|iSA zf3Ih7b<{zqpDB4WF_5X1(peKe+rASze%u8eKLn#KKXt;UZ+Adf$_TO+vTqshLLJ5c z52HucO=lrNVae5XWOLm!V@n-ObU11!b+DN<$RuU+YsrBq*lYT;?AwJpmNKniF0Q1< zJCo>Q$=v$@&y=sj6{r!Y&y&`0$-I}S!H_~pI&2H8Z1C|BX4VgZ^-! zje3-;x0PBD!M`v*J_)rL^+$<1VJhH*2Fi~aA7s&@_rUHYJ9zD=M%4AFQ`}k8OC$9s XsPq=LnkwKG00000NkvXXu0mjfhAk5^ literal 0 HcmV?d00001 diff --git a/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..75b2d164a5a98e212cca15ea7bf2ab5de5108680 GIT binary patch literal 3831 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 literal 0 HcmV?d00001 diff --git a/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png new file mode 100644 index 0000000000000000000000000000000000000000..c4df70d39da7941ef3f6dcb7f06a192d8dcb308d GIT binary patch literal 1888 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 iW8Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v literal 0 HcmV?d00001 diff --git a/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v literal 0 HcmV?d00001 diff --git a/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 0000000000000000000000000000000000000000..9da19eacad3b03bb08bbddbbf4ac48dd78b3d838 GIT binary patch literal 68 zcmeAS@N?(olHy`uVBq!ia0vp^j3CUx0wlM}@Gt=>Zci7-kcv6Uzs@r-FtIZ-&5|)J Q1PU{Fy85}Sb4q9e0B4a5jsO4v literal 0 HcmV?d00001 diff --git a/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 000000000000..89c2725b70f1 --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md @@ -0,0 +1,5 @@ +# Launch Screen Assets + +You can customize the launch screen with your own desired assets by replacing the image files in this directory. + +You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/packages/material_ui/a11y_assessments/ios/Runner/Base.lproj/LaunchScreen.storyboard b/packages/material_ui/a11y_assessments/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 000000000000..f2e259c7c939 --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/material_ui/a11y_assessments/ios/Runner/Base.lproj/Main.storyboard b/packages/material_ui/a11y_assessments/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 000000000000..f3c28516fb38 --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/material_ui/a11y_assessments/ios/Runner/Info.plist b/packages/material_ui/a11y_assessments/ios/Runner/Info.plist new file mode 100644 index 000000000000..0249c9c6bd69 --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/Runner/Info.plist @@ -0,0 +1,70 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + A11y Assessments + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + a11y_assessments + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + CADisableMinimumFrameDurationOnPhone + + UIApplicationSupportsIndirectInputEvents + + UIApplicationSceneManifest + + UIApplicationSupportsMultipleScenes + + UISceneConfigurations + + UIWindowSceneSessionRoleApplication + + + UISceneClassName + UIWindowScene + UISceneDelegateClassName + FlutterSceneDelegate + UISceneConfigurationName + flutter + UISceneStoryboardFile + Main + + + + + + diff --git a/packages/material_ui/a11y_assessments/ios/Runner/Runner-Bridging-Header.h b/packages/material_ui/a11y_assessments/ios/Runner/Runner-Bridging-Header.h new file mode 100644 index 000000000000..95b7baf386d0 --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/Runner/Runner-Bridging-Header.h @@ -0,0 +1,5 @@ +// 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 "GeneratedPluginRegistrant.h" diff --git a/packages/material_ui/a11y_assessments/ios/RunnerTests/RunnerTests.swift b/packages/material_ui/a11y_assessments/ios/RunnerTests/RunnerTests.swift new file mode 100644 index 000000000000..6bfa573763f8 --- /dev/null +++ b/packages/material_ui/a11y_assessments/ios/RunnerTests/RunnerTests.swift @@ -0,0 +1,16 @@ +// 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 Flutter +import UIKit +import XCTest + +class RunnerTests: XCTestCase { + + func testExample() { + // If you add code to the Runner application, consider adding tests here. + // See https://developer.apple.com/documentation/xctest for more information about using XCTest. + } + +} diff --git a/packages/material_ui/a11y_assessments/lib/common/dynamic_title.dart b/packages/material_ui/a11y_assessments/lib/common/dynamic_title.dart new file mode 100644 index 000000000000..2097820a841b --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/common/dynamic_title.dart @@ -0,0 +1,17 @@ +// 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:material_ui/material_ui.dart'; + +class DynamicTitle extends StatelessWidget { + const DynamicTitle({super.key, required this.title, required this.child}); + + final String title; + final Widget child; + + @override + Widget build(BuildContext context) { + return Title(title: title, color: Theme.of(context).colorScheme.primary, child: child); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/main.dart b/packages/material_ui/a11y_assessments/lib/main.dart new file mode 100644 index 000000000000..d796a6678730 --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/main.dart @@ -0,0 +1,171 @@ +// 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/foundation.dart'; +import 'package:flutter/rendering.dart'; +import 'package:material_ui/material_ui.dart'; + +import 'use_cases/use_cases.dart'; + +void main() { + runApp(const App()); + if (kIsWeb) { + SemanticsBinding.instance.ensureSemantics(); + } +} + +ThemeData _buildTheme({required Brightness brightness, double contrastLevel = 0.0}) { + final scheme = ColorScheme.fromSeed( + brightness: brightness, + seedColor: const Color(0xff6750a4), + contrastLevel: contrastLevel, + ); + return ThemeData( + colorScheme: scheme, + appBarTheme: AppBarTheme(backgroundColor: scheme.primary, foregroundColor: scheme.onPrimary), + pageTransitionsTheme: PageTransitionsTheme( + builders: { + for (final TargetPlatform platform in TargetPlatform.values) + platform: const FadeForwardsPageTransitionsBuilder(), + }, + ), + ); +} + +final ThemeData _lightTheme = _buildTheme(brightness: Brightness.light); +final ThemeData _darkTheme = _buildTheme(brightness: Brightness.dark); +final ThemeData _highContrastTheme = _buildTheme(brightness: Brightness.light, contrastLevel: 1.0); +final ThemeData _highContrastDarkTheme = _buildTheme( + brightness: Brightness.dark, + contrastLevel: 1.0, +); + +class App extends StatelessWidget { + const App({super.key, this.initialTags = const {Tag.batch3}}); + + final Set initialTags; + + @override + Widget build(BuildContext context) { + final routes = Map.fromEntries( + useCases.map( + (UseCase useCase) => MapEntry( + useCase.route, + (BuildContext context) => useCase.buildWithTitle(context), + ), + ), + ); + + return MaterialApp( + debugShowCheckedModeBanner: false, + title: 'Accessibility Assessments Home Page', + theme: _lightTheme, + darkTheme: _darkTheme, + highContrastTheme: _highContrastTheme, + highContrastDarkTheme: _highContrastDarkTheme, + routes: { + '/': (_) => HomePage(initialTags: initialTags), + ...routes, + }, + ); + } +} + +class HomePage extends StatefulWidget { + const HomePage({super.key, required this.initialTags}); + + final Set initialTags; + + @override + State createState() => HomePageState(); +} + +class HomePageState extends State { + final ScrollController scrollController = ScrollController(); + + late Set _selectedTags; + + @override + void initState() { + super.initState(); + _selectedTags = Set.from(widget.initialTags); + } + + @override + void dispose() { + scrollController.dispose(); + super.dispose(); + } + + Widget _buildUseCaseItem(int index, UseCase useCase) { + return Padding( + padding: const EdgeInsets.all(10), + child: Builder( + builder: (BuildContext context) { + return TextButton( + key: Key(useCase.name), + onPressed: () => + Navigator.of(context).pushNamed(useCase.route, arguments: useCase.name), + child: Text(useCase.name), + ); + }, + ), + ); + } + + @override + Widget build(BuildContext context) { + final List effectiveUseCases = useCases.where((UseCase useCase) { + return _selectedTags.isEmpty || _selectedTags.every((Tag tag) => useCase.tags.contains(tag)); + }).toList(); + + return Scaffold( + appBar: AppBar( + title: Semantics(headingLevel: 1, child: const Text('Accessibility Assessments')), + actions: [ + MenuAnchor( + builder: (BuildContext context, MenuController controller, Widget? child) { + return IconButton( + tooltip: 'Filter by tags', + icon: const Icon(Icons.filter_list), + onPressed: () { + if (controller.isOpen) { + controller.close(); + } else { + controller.open(); + } + }, + ); + }, + menuChildren: Tag.values.map((Tag tag) { + return CheckboxMenuButton( + closeOnActivate: false, + value: _selectedTags.contains(tag), + onChanged: (bool? value) { + setState(() { + if (value ?? false) { + _selectedTags.add(tag); + } else { + _selectedTags.remove(tag); + } + }); + }, + child: Tooltip(message: tag.description, child: Text(tag.name)), + ); + }).toList(), + ), + ], + ), + body: Center( + child: ListView( + controller: scrollController, + children: List.generate( + effectiveUseCases.length, + (int index) => _buildUseCaseItem(index, effectiveUseCases[index]), + ), + ), + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/about_list_tile.dart b/packages/material_ui/a11y_assessments/lib/use_cases/about_list_tile.dart new file mode 100644 index 000000000000..269350d43407 --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/about_list_tile.dart @@ -0,0 +1,47 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class AboutListTileUseCase extends UseCase { + AboutListTileUseCase(); + + @override + String get name => 'AboutListTile'; + + @override + String get route => '/about-list-tile'; + + @override + List get tags => [Tag.batch2, Tag.core]; + + @override + Widget build(BuildContext context) => const MainWidget(); +} + +class MainWidget extends StatelessWidget { + const MainWidget({super.key}); + + @override + Widget build(BuildContext context) { + final String pageTitle = getUseCaseName(AboutListTileUseCase()); + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: ListView( + children: const [ + AboutListTile( + icon: Icon(Icons.info), + applicationName: 'A11y Assessment', + applicationVersion: '1.0.0', + applicationIcon: FlutterLogo(), + applicationLegalese: '© 2026 The Flutter Authors', + aboutBoxChildren: [Text('This is a test app for accessibility.')], + ), + ], + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/action_chip.dart b/packages/material_ui/a11y_assessments/lib/use_cases/action_chip.dart new file mode 100644 index 000000000000..9ce44cfcf5bd --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/action_chip.dart @@ -0,0 +1,56 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class ActionChipUseCase extends UseCase { + ActionChipUseCase(); + + @override + String get name => 'ActionChip'; + + @override + String get route => '/action-chip'; + + @override + List get tags => [Tag.batch1, Tag.core]; + + @override + Widget build(BuildContext context) => const MainWidget(); +} + +class MainWidget extends StatefulWidget { + const MainWidget({super.key}); + + @override + State createState() => MainWidgetState(); +} + +class MainWidgetState extends State { + bool favorite = false; + + String pageTitle = getUseCaseName(ActionChipUseCase()); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + ActionChip( + avatar: const Icon(Icons.favorite), + label: const Text('Action'), + onPressed: () {}, + ), + const ActionChip(avatar: Icon(Icons.favorite), label: Text('Action')), + ], + ), + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/app_bar.dart b/packages/material_ui/a11y_assessments/lib/use_cases/app_bar.dart new file mode 100644 index 000000000000..d15ad89ae5ea --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/app_bar.dart @@ -0,0 +1,119 @@ +// 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:material_ui/material_ui.dart'; + +import 'use_cases.dart'; + +class AppBarUseCase extends UseCase { + AppBarUseCase(); + + @override + String get name => 'AppBar'; + + @override + String get route => '/app-bar'; + + @override + List get tags => [Tag.batch1, Tag.core]; + + @override + Widget build(BuildContext context) => const MainWidget(); +} + +class MainWidget extends StatefulWidget { + const MainWidget({super.key}); + + @override + State createState() => MainWidgetState(); +} + +class MainWidgetState extends State { + int currentIndex = 0; + + void _onChanged(int? value) { + setState(() { + currentIndex = value!; + }); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: [ + AppBar(title: Semantics(headingLevel: 1, child: const Text('AppBar'))), + AppBar( + title: Semantics(headingLevel: 1, child: const Text('AppBar')), + actions: [ + IconButton( + icon: const Icon(Icons.add_alert), + tooltip: 'Show Snackbar', + onPressed: () { + ScaffoldMessenger.of( + context, + ).showSnackBar(const SnackBar(content: Text('This is a snackbar'))); + }, + ), + IconButton( + icon: const Icon(Icons.navigate_next), + tooltip: 'Go to the next page', + onPressed: () { + Navigator.push( + context, + MaterialPageRoute( + builder: (BuildContext context) { + return Scaffold( + appBar: AppBar( + title: Semantics(headingLevel: 1, child: const Text('Next Page')), + ), + body: const Center( + child: Text('This is the next page', style: TextStyle(fontSize: 24)), + ), + ); + }, + ), + ); + }, + ), + ], + ), + AppBar( + title: Semantics(headingLevel: 1, child: const Text('AppBar')), + actions: [ + for (final String label in const ['Action 1', 'Action 2']) + TextButton( + onPressed: () {}, + style: TextButton.styleFrom( + foregroundColor: Theme.of(context).colorScheme.onPrimary, + ), + child: Text(label), + ), + ], + ), + ][currentIndex], + body: ListView( + children: [ + RadioListTile( + title: const Text('1. Simple app bar'), + value: 0, + groupValue: currentIndex, + onChanged: _onChanged, + ), + RadioListTile( + title: const Text('2. App bar with actions'), + value: 1, + groupValue: currentIndex, + onChanged: _onChanged, + ), + RadioListTile( + title: const Text('3. App bar with text buttons'), + value: 2, + groupValue: currentIndex, + onChanged: _onChanged, + ), + ], + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/auto_complete.dart b/packages/material_ui/a11y_assessments/lib/use_cases/auto_complete.dart new file mode 100644 index 000000000000..e0393e526840 --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/auto_complete.dart @@ -0,0 +1,81 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class AutoCompleteUseCase extends UseCase { + AutoCompleteUseCase(); + + @override + String get name => 'AutoComplete'; + + @override + String get route => '/auto-complete'; + + @override + List get tags => [Tag.batch1, Tag.core]; + + @override + Widget build(BuildContext context) => const _MainWidget(); +} + +class _MainWidget extends StatefulWidget { + const _MainWidget(); + + @override + State<_MainWidget> createState() => _MainWidgetState(); +} + +class _MainWidgetState extends State<_MainWidget> { + static const List _kOptions = ['apple', 'banana', 'lemon']; + + static Widget _fieldViewBuilder( + BuildContext context, + TextEditingController textEditingController, + FocusNode focusNode, + VoidCallback onFieldSubmitted, + ) { + return TextFormField( + decoration: const InputDecoration(labelText: 'Fruit'), + focusNode: focusNode, + controller: textEditingController, + onFieldSubmitted: (String value) { + onFieldSubmitted(); + }, + ); + } + + String pageTitle = getUseCaseName(AutoCompleteUseCase()); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: Center( + child: Semantics( + container: true, + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Text('Type below to autocomplete the following possible results: $_kOptions.'), + Autocomplete( + optionsBuilder: (TextEditingValue textEditingValue) { + if (textEditingValue.text == '') { + return const Iterable.empty(); + } + return _kOptions.where((String option) { + return option.contains(textEditingValue.text.toLowerCase()); + }); + }, + fieldViewBuilder: _fieldViewBuilder, + ), + ], + ), + ), + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/back_button.dart b/packages/material_ui/a11y_assessments/lib/use_cases/back_button.dart new file mode 100644 index 000000000000..503d2367176f --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/back_button.dart @@ -0,0 +1,51 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class BackButtonUseCase extends UseCase { + BackButtonUseCase(); + + @override + String get name => 'BackButton'; + + @override + String get route => '/back-button'; + + @override + List get tags => [Tag.batch2, Tag.core]; + + @override + Widget build(BuildContext context) => const MainWidget(); +} + +class MainWidget extends StatefulWidget { + const MainWidget({super.key}); + + @override + State createState() => MainWidgetState(); +} + +class MainWidgetState extends State { + String pageTitle = getUseCaseName(BackButtonUseCase()); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: const Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + BackButton(), + SizedBox(height: 20), + Text('Check the back button above'), + ], + ), + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/badge.dart b/packages/material_ui/a11y_assessments/lib/use_cases/badge.dart new file mode 100644 index 000000000000..8c06c77ff4da --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/badge.dart @@ -0,0 +1,52 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class BadgeUseCase extends UseCase { + BadgeUseCase(); + + @override + String get name => 'Badge'; + + @override + String get route => '/badge'; + + @override + List get tags => [Tag.batch1, Tag.core]; + + @override + Widget build(BuildContext context) => const MainWidget(); +} + +class MainWidget extends StatefulWidget { + const MainWidget({super.key}); + + @override + State createState() => MainWidgetState(); +} + +class MainWidgetState extends State { + String pageTitle = getUseCaseName(BadgeUseCase()); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: const Center( + child: Badge( + label: Text( + '5', + semanticsLabel: '5 new messages', + style: TextStyle(color: Colors.white), + ), + backgroundColor: Colors.green, + child: Icon(Icons.mail, semanticLabel: 'Messages'), + ), + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/bottom_app_bar.dart b/packages/material_ui/a11y_assessments/lib/use_cases/bottom_app_bar.dart new file mode 100644 index 000000000000..cf31b8e3ff40 --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/bottom_app_bar.dart @@ -0,0 +1,73 @@ +// 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:material_ui/material_ui.dart'; + +import '../utils.dart'; +import 'use_cases.dart'; + +class BottomAppBarUseCase extends UseCase { + BottomAppBarUseCase(); + + @override + String get name => 'BottomAppBar'; + + @override + String get route => '/bottom-app-bar'; + + @override + List get tags => [Tag.batch3, Tag.core]; + + @override + Widget build(BuildContext context) => const MainWidget(); +} + +class MainWidget extends StatefulWidget { + const MainWidget({super.key}); + + @override + State createState() => MainWidgetState(); +} + +class MainWidgetState extends State { + final String pageTitle = getUseCaseName(BottomAppBarUseCase()); + String _selectedAction = 'None'; + + void _onItemTapped(String action) { + setState(() { + _selectedAction = action; + }); + ScaffoldMessenger.of(context).hideCurrentSnackBar(); + ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text('Tapped: $action'))); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + bottomNavigationBar: BottomAppBar( + child: Row( + children: [ + IconButton( + tooltip: 'Open menu', + icon: const Icon(Icons.menu), + onPressed: () => _onItemTapped('Menu'), + ), + IconButton( + tooltip: 'Search', + icon: const Icon(Icons.search), + onPressed: () => _onItemTapped('Search'), + ), + IconButton( + tooltip: 'Favorite', + icon: const Icon(Icons.favorite), + onPressed: () => _onItemTapped('Favorite'), + ), + ], + ), + ), + body: Center(child: Text('Selected: $_selectedAction')), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/card.dart b/packages/material_ui/a11y_assessments/lib/use_cases/card.dart new file mode 100644 index 000000000000..26dd8e4a238b --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/card.dart @@ -0,0 +1,53 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class CardUseCase extends UseCase { + CardUseCase(); + + @override + String get name => 'Card'; + + @override + String get route => '/card'; + + @override + List get tags => [Tag.batch1, Tag.core]; + + @override + Widget build(BuildContext context) => const MainWidget(); +} + +class MainWidget extends StatefulWidget { + const MainWidget({super.key}); + + @override + State createState() => MainWidgetState(); +} + +class MainWidgetState extends State { + bool favorite = false; + + String pageTitle = getUseCaseName(CardUseCase()); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: const Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Card( + child: Padding(padding: EdgeInsets.all(16), child: Text('Card')), + ), + ], + ), + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/check_box.dart b/packages/material_ui/a11y_assessments/lib/use_cases/check_box.dart new file mode 100644 index 000000000000..361a7c759d60 --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/check_box.dart @@ -0,0 +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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class CheckBoxUseCase extends UseCase { + CheckBoxUseCase(); + + @override + String get name => 'CheckBox'; + + @override + String get route => '/check-box'; + + @override + List get tags => [Tag.batch3, Tag.core]; + + @override + Widget build(BuildContext context) => _MainWidget(); +} + +class _MainWidget extends StatefulWidget { + @override + State<_MainWidget> createState() => _MainWidgetState(); +} + +class _MainWidgetState extends State<_MainWidget> { + bool _checked = false; + + String pageTitle = getUseCaseName(CheckBoxUseCase()); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: ListView( + children: [ + Checkbox( + value: _checked, + semanticLabel: 'Enabled checkbox', + onChanged: (bool? value) { + setState(() { + _checked = value!; + }); + }, + ), + const Checkbox(value: false, semanticLabel: 'Disabled checkbox', onChanged: null), + ], + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/check_box_list_tile.dart b/packages/material_ui/a11y_assessments/lib/use_cases/check_box_list_tile.dart new file mode 100644 index 000000000000..d083ebb4223b --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/check_box_list_tile.dart @@ -0,0 +1,64 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class CheckBoxListTile extends UseCase { + CheckBoxListTile(); + + @override + String get name => 'CheckBoxListTile'; + + @override + String get route => '/check-box-list-tile'; + + @override + List get tags => [Tag.batch1, Tag.core]; + + @override + Widget build(BuildContext context) => _MainWidget(); +} + +class _MainWidget extends StatefulWidget { + @override + State<_MainWidget> createState() => _MainWidgetState(); +} + +class _MainWidgetState extends State<_MainWidget> { + bool _checked = false; + + String pageTitle = getUseCaseName(CheckBoxListTile()); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: ListView( + children: [ + CheckboxListTile( + value: _checked, + onChanged: (bool? value) { + setState(() { + _checked = value!; + }); + }, + title: const Text('a check box list title'), + ), + CheckboxListTile( + value: _checked, + onChanged: (bool? value) { + setState(() { + _checked = value!; + }); + }, + title: const Text('a disabled check box list title'), + enabled: false, + ), + ], + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/close_button.dart b/packages/material_ui/a11y_assessments/lib/use_cases/close_button.dart new file mode 100644 index 000000000000..d22d8d09b72e --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/close_button.dart @@ -0,0 +1,54 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class CloseButtonUseCase extends UseCase { + CloseButtonUseCase(); + + @override + String get name => 'CloseButton'; + + @override + String get route => '/close-button'; + + @override + List get tags => [Tag.batch2, Tag.core]; + + @override + Widget build(BuildContext context) => const MainWidget(); +} + +class MainWidget extends StatefulWidget { + const MainWidget({super.key}); + + @override + State createState() => MainWidgetState(); +} + +class MainWidgetState extends State { + String pageTitle = getUseCaseName(CloseButtonUseCase()); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar( + title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo')), + automaticallyImplyLeading: false, + ), + body: const Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + CloseButton(), + SizedBox(height: 20), + Text('Check the close button above'), + ], + ), + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/date_picker.dart b/packages/material_ui/a11y_assessments/lib/use_cases/date_picker.dart new file mode 100644 index 000000000000..d198fd2dcbcd --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/date_picker.dart @@ -0,0 +1,53 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class DatePickerUseCase extends UseCase { + DatePickerUseCase(); + + @override + String get name => 'DatePicker'; + + @override + String get route => '/date-picker'; + + @override + List get tags => [Tag.batch1, Tag.core]; + + @override + Widget build(BuildContext context) => const _MainWidget(); +} + +class _MainWidget extends StatefulWidget { + const _MainWidget(); + + @override + State<_MainWidget> createState() => _MainWidgetState(); +} + +class _MainWidgetState extends State<_MainWidget> { + String pageTitle = getUseCaseName(DatePickerUseCase()); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: Center( + child: TextButton( + onPressed: () => showDatePicker( + context: context, + initialEntryMode: DatePickerEntryMode.calendarOnly, + initialDate: DateTime.now(), + firstDate: DateTime.now().subtract(const Duration(days: 365)), + lastDate: DateTime.now().add(const Duration(days: 365)), + ), + child: const Text('Show Date Picker'), + ), + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/dialog.dart b/packages/material_ui/a11y_assessments/lib/use_cases/dialog.dart new file mode 100644 index 000000000000..85a3e25ff203 --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/dialog.dart @@ -0,0 +1,75 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class DialogUseCase extends UseCase { + DialogUseCase(); + + @override + String get name => 'Dialog'; + + @override + String get route => '/dialog'; + + @override + List get tags => [Tag.batch1, Tag.core]; + + @override + Widget build(BuildContext context) => _MainWidget(); +} + +class _MainWidget extends StatelessWidget { + _MainWidget(); + + final String pageTitle = getUseCaseName(DialogUseCase()); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: Center( + child: TextButton( + onPressed: () => showDialog( + context: context, + builder: (BuildContext context) => Dialog( + child: Padding( + padding: const EdgeInsets.all(8.0), + child: Column( + mainAxisSize: MainAxisSize.min, + mainAxisAlignment: MainAxisAlignment.center, + children: [ + const Text('This is a typical dialog.'), + const SizedBox(height: 15), + Row( + children: [ + TextButton( + key: const Key('OK Button'), + autofocus: true, + onPressed: () { + Navigator.pop(context); + }, + child: const Text('OK'), + ), + TextButton( + onPressed: () { + Navigator.pop(context); + }, + child: const Text('Cancel'), + ), + ], + ), + ], + ), + ), + ), + ), + child: const Text('Show Dialog'), + ), + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/drawer.dart b/packages/material_ui/a11y_assessments/lib/use_cases/drawer.dart new file mode 100644 index 000000000000..9fdb35aa55b9 --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/drawer.dart @@ -0,0 +1,82 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class DrawerUseCase extends UseCase { + DrawerUseCase(); + + @override + String get name => 'drawer'; + + @override + String get route => '/drawer'; + + @override + List get tags => [Tag.batch1, Tag.core]; + + @override + Widget build(BuildContext context) => const DrawerExample(); +} + +class DrawerExample extends StatefulWidget { + const DrawerExample({super.key}); + + @override + State createState() => _DrawerExampleState(); +} + +class _DrawerExampleState extends State { + String selectedPage = ''; + + String pageTitle = getUseCaseName(DrawerUseCase()); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + endDrawer: Drawer( + child: ListView( + padding: EdgeInsets.zero, + children: [ + const DrawerHeader( + decoration: BoxDecoration(color: Colors.blue), + child: Text('Drawer Header', style: TextStyle(color: Colors.white, fontSize: 24)), + ), + ListTile( + leading: const Icon(Icons.message), + title: const Text('Messages'), + onTap: () { + setState(() { + selectedPage = 'Messages'; + }); + }, + ), + ListTile( + leading: const Icon(Icons.account_circle), + title: const Text('Profile'), + onTap: () { + setState(() { + selectedPage = 'Profile'; + }); + }, + ), + ListTile( + leading: const Icon(Icons.settings), + title: const Text('Settings'), + onTap: () { + setState(() { + selectedPage = 'Settings'; + }); + }, + ), + ], + ), + ), + body: Center(child: Text('Page: $selectedPage')), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/dropdown_menu.dart b/packages/material_ui/a11y_assessments/lib/use_cases/dropdown_menu.dart new file mode 100644 index 000000000000..0545c2e7382e --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/dropdown_menu.dart @@ -0,0 +1,69 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class DropdownMenuUseCase extends UseCase { + DropdownMenuUseCase(); + + @override + String get name => 'DropdownMenu'; + + @override + String get route => '/dropdown-menu'; + + @override + List get tags => [Tag.batch3, Tag.core]; + + @override + Widget build(BuildContext context) => const _MainWidget(); +} + +class _MainWidget extends StatelessWidget { + const _MainWidget(); + + static const List _kOptions = ['apple', 'banana', 'lemon']; + static final List> _kMenuEntries = _kOptions + .map>( + (String name) => DropdownMenuEntry(value: name, label: name), + ) + .toList(); + + @override + Widget build(BuildContext context) { + final String pageTitle = getUseCaseName(DropdownMenuUseCase()); + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: ListView( + padding: const EdgeInsets.all(24.0), + children: [ + Semantics( + label: 'Enabled dropdown menu', + child: DropdownMenu( + key: const Key('enabled dropdown menu'), + label: const Text('Fruit'), + expandedInsets: EdgeInsets.zero, + initialSelection: _kOptions.first, + dropdownMenuEntries: _kMenuEntries, + ), + ), + const SizedBox(height: 24.0), + Semantics( + label: 'Disabled dropdown menu', + child: DropdownMenu( + key: const Key('disabled dropdown menu'), + label: const Text('Fruit'), + expandedInsets: EdgeInsets.zero, + enabled: false, + initialSelection: _kOptions.first, + dropdownMenuEntries: _kMenuEntries, + ), + ), + ], + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/elevated_button.dart b/packages/material_ui/a11y_assessments/lib/use_cases/elevated_button.dart new file mode 100644 index 000000000000..a843c9201ce9 --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/elevated_button.dart @@ -0,0 +1,53 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class ElevatedButtonUseCase extends UseCase { + ElevatedButtonUseCase(); + + @override + String get name => 'ElevatedButton'; + + @override + String get route => '/elevated-button'; + + @override + List get tags => [Tag.batch2, Tag.core]; + + @override + Widget build(BuildContext context) => const MainWidget(); +} + +class MainWidget extends StatefulWidget { + const MainWidget({super.key}); + + @override + State createState() => MainWidgetState(); +} + +class MainWidgetState extends State { + String pageTitle = getUseCaseName(ElevatedButtonUseCase()); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + ElevatedButton(onPressed: () {}, child: const Text('Elevated Button')), + const ElevatedButton( + onPressed: null, // Disabled + child: Text('Disabled ElevatedButton'), + ), + ], + ), + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/expansion_tile.dart b/packages/material_ui/a11y_assessments/lib/use_cases/expansion_tile.dart new file mode 100644 index 000000000000..da1ecc69669d --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/expansion_tile.dart @@ -0,0 +1,71 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class ExpansionTileUseCase extends UseCase { + ExpansionTileUseCase(); + + @override + String get name => 'ExpansionTile'; + + @override + String get route => '/expansion-tile'; + + @override + List get tags => [Tag.batch1, Tag.core]; + + @override + Widget build(BuildContext context) => const ExpansionTileExample(); +} + +class ExpansionTileExample extends StatefulWidget { + const ExpansionTileExample({super.key}); + + @override + State createState() => _ExpansionTileExampleState(); +} + +class _ExpansionTileExampleState extends State { + bool _customTileExpanded = false; + + String pageTitle = getUseCaseName(ExpansionTileUseCase()); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: Column( + children: [ + const ExpansionTile( + title: Text('ExpansionTile 1'), + subtitle: Text('Trailing expansion arrow icon'), + children: [ListTile(title: Text('This is tile number 1'))], + ), + ExpansionTile( + title: const Text('ExpansionTile 2'), + subtitle: const Text('Custom expansion arrow icon'), + trailing: Icon( + _customTileExpanded ? Icons.arrow_drop_down_circle : Icons.arrow_drop_down, + ), + children: const [ListTile(title: Text('This is tile number 2'))], + onExpansionChanged: (bool expanded) { + setState(() { + _customTileExpanded = expanded; + }); + }, + ), + const ExpansionTile( + title: Text('ExpansionTile 3'), + subtitle: Text('Leading expansion arrow icon'), + controlAffinity: ListTileControlAffinity.leading, + children: [ListTile(title: Text('This is tile number 3'))], + ), + ], + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/filled_button.dart b/packages/material_ui/a11y_assessments/lib/use_cases/filled_button.dart new file mode 100644 index 000000000000..b27c3b0f8584 --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/filled_button.dart @@ -0,0 +1,53 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class FilledButtonUseCase extends UseCase { + FilledButtonUseCase(); + + @override + String get name => 'FilledButton'; + + @override + String get route => '/filled-button'; + + @override + List get tags => [Tag.batch2, Tag.core]; + + @override + Widget build(BuildContext context) => const MainWidget(); +} + +class MainWidget extends StatefulWidget { + const MainWidget({super.key}); + + @override + State createState() => MainWidgetState(); +} + +class MainWidgetState extends State { + String pageTitle = getUseCaseName(FilledButtonUseCase()); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + FilledButton(onPressed: () {}, child: const Text('Filled Button')), + const FilledButton( + onPressed: null, // Disabled + child: Text('Disabled FilledButton'), + ), + ], + ), + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/floating_action_button.dart b/packages/material_ui/a11y_assessments/lib/use_cases/floating_action_button.dart new file mode 100644 index 000000000000..4375c2aaeadb --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/floating_action_button.dart @@ -0,0 +1,54 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class FloatingActionButtonUseCase extends UseCase { + FloatingActionButtonUseCase(); + + @override + String get name => 'FloatingActionButton'; + + @override + String get route => '/floating-action-button'; + + @override + List get tags => [Tag.batch2, Tag.core]; + + @override + Widget build(BuildContext context) => const MainWidget(); +} + +class MainWidget extends StatefulWidget { + const MainWidget({super.key}); + + @override + State createState() => MainWidgetState(); +} + +class MainWidgetState extends State { + String pageTitle = getUseCaseName(FloatingActionButtonUseCase()); + int _tapCount = 0; + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: Center( + child: Semantics(container: true, liveRegion: true, child: Text('Tap count: $_tapCount')), + ), + floatingActionButton: FloatingActionButton( + onPressed: () { + setState(() { + _tapCount++; + }); + }, + tooltip: 'Increment', + child: const Icon(Icons.add), + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/icon_button.dart b/packages/material_ui/a11y_assessments/lib/use_cases/icon_button.dart new file mode 100644 index 000000000000..a1db83dfebd2 --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/icon_button.dart @@ -0,0 +1,58 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class IconButtonUseCase extends UseCase { + IconButtonUseCase(); + + @override + String get name => 'IconButton'; + + @override + String get route => '/icon-button'; + + @override + List get tags => [Tag.batch2, Tag.core]; + + @override + Widget build(BuildContext context) => const MainWidget(); +} + +class MainWidget extends StatefulWidget { + const MainWidget({super.key}); + + @override + State createState() => MainWidgetState(); +} + +class MainWidgetState extends State { + String pageTitle = getUseCaseName(IconButtonUseCase()); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + IconButton( + icon: const Icon(Icons.volume_up), + tooltip: 'Increase volume', + onPressed: () {}, + ), + const IconButton( + icon: Icon(Icons.volume_up), + tooltip: 'Increase volume', + onPressed: null, // Disabled + ), + ], + ), + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/material_banner.dart b/packages/material_ui/a11y_assessments/lib/use_cases/material_banner.dart new file mode 100644 index 000000000000..32d2acebdbac --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/material_banner.dart @@ -0,0 +1,81 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class MaterialBannerUseCase extends UseCase { + MaterialBannerUseCase(); + + @override + String get name => 'MaterialBanner'; + + @override + String get route => '/material_banner'; + + @override + List get tags => [Tag.batch1, Tag.core]; + + @override + Widget build(BuildContext context) => const MainWidget(); +} + +class MainWidget extends StatefulWidget { + const MainWidget({super.key}); + + @override + State createState() => MainWidgetState(); +} + +class MainWidgetState extends State { + final FocusNode dismissButtonFocusNode = FocusNode(); + final FocusNode showButtonFocusNode = FocusNode(); + + String pageTitle = getUseCaseName(MaterialBannerUseCase()); + + @override + void dispose() { + dismissButtonFocusNode.dispose(); + showButtonFocusNode.dispose(); + super.dispose(); + } + + void hideBanner() { + ScaffoldMessenger.of(context).hideCurrentMaterialBanner(); + showButtonFocusNode.requestFocus(); + } + + void showBanner() { + ScaffoldMessenger.of(context).showMaterialBanner( + MaterialBanner( + padding: const EdgeInsets.all(20), + content: const Text('Hello, I am a Material Banner'), + leading: const Icon(Icons.agriculture_outlined), + actions: [ + TextButton( + focusNode: dismissButtonFocusNode, + onPressed: hideBanner, + child: const Text('DISMISS'), + ), + ], + ), + ); + dismissButtonFocusNode.requestFocus(); + } + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: Center( + child: ElevatedButton( + focusNode: showButtonFocusNode, + onPressed: showBanner, + child: const Text('Show a MaterialBanner'), + ), + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/menu_anchor.dart b/packages/material_ui/a11y_assessments/lib/use_cases/menu_anchor.dart new file mode 100644 index 000000000000..8708e9afce8a --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/menu_anchor.dart @@ -0,0 +1,86 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class MenuAnchorUseCase extends UseCase { + MenuAnchorUseCase(); + + @override + String get name => 'MenuAnchor'; + + @override + String get route => '/menu-anchor'; + + @override + List get tags => [Tag.core]; + + @override + Widget build(BuildContext context) => const _MainWidget(); +} + +class _MainWidget extends StatefulWidget { + const _MainWidget(); + + @override + State<_MainWidget> createState() => _MainWidgetState(); +} + +class _MainWidgetState extends State<_MainWidget> { + String _lastSelection = 'None'; + + @override + Widget build(BuildContext context) { + final String pageTitle = getUseCaseName(MenuAnchorUseCase()); + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: ListView( + children: [ + Semantics(liveRegion: true, child: Text('Last Selection: $_lastSelection')), + Semantics( + label: 'Enabled menu anchor', + child: MenuAnchor( + key: const Key('enabled menu anchor'), + builder: (BuildContext context, MenuController controller, Widget? child) { + return ElevatedButton( + onPressed: () { + if (controller.isOpen) { + controller.close(); + } else { + controller.open(); + } + }, + child: const Text('Open Menu'), + ); + }, + menuChildren: [ + MenuItemButton( + onPressed: () { + setState(() { + _lastSelection = 'Item 1'; + }); + }, + child: const Text('Item 1'), + ), + const MenuItemButton(child: Text('Disabled Item')), + ], + ), + ), + Semantics( + label: 'Disabled menu anchor', + child: MenuAnchor( + key: const Key('disabled menu anchor'), + builder: (BuildContext context, MenuController controller, Widget? child) { + return const ElevatedButton(onPressed: null, child: Text('Disabled Menu Button')); + }, + menuChildren: const [MenuItemButton(child: Text('Disabled Item'))], + ), + ), + ], + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/menu_bar.dart b/packages/material_ui/a11y_assessments/lib/use_cases/menu_bar.dart new file mode 100644 index 000000000000..4151bda86e8b --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/menu_bar.dart @@ -0,0 +1,113 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class MenuBarUseCase extends UseCase { + MenuBarUseCase(); + + @override + String get name => 'MenuBar'; + + @override + String get route => '/menu-bar'; + + @override + List get tags => [Tag.core]; + + @override + Widget build(BuildContext context) => const _MainWidget(); +} + +class _MainWidget extends StatefulWidget { + const _MainWidget(); + + @override + State<_MainWidget> createState() => _MainWidgetState(); +} + +class _MainWidgetState extends State<_MainWidget> { + String _lastSelection = 'None'; + + @override + Widget build(BuildContext context) { + final String pageTitle = getUseCaseName(MenuBarUseCase()); + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: ListView( + children: [ + Semantics(liveRegion: true, child: Text('Last Selection: $_lastSelection')), + Semantics( + label: 'Enabled menu bar', + child: MenuBar( + key: const Key('enabled menu bar'), + children: [ + SubmenuButton( + menuChildren: [ + MenuItemButton( + onPressed: () { + setState(() { + _lastSelection = 'Save'; + }); + }, + child: const Text('Save'), + ), + const MenuItemButton(child: Text('Disabled Item')), + ], + child: const Text('File'), + ), + SubmenuButton( + menuChildren: [ + MenuItemButton( + onPressed: () { + setState(() { + _lastSelection = 'About'; + }); + }, + child: const Text('About'), + ), + SubmenuButton( + menuChildren: [ + MenuItemButton( + onPressed: () { + setState(() { + _lastSelection = 'Documentation'; + }); + }, + child: const Text('Documentation'), + ), + MenuItemButton( + onPressed: () { + setState(() { + _lastSelection = 'Send Feedback'; + }); + }, + child: const Text('Send Feedback'), + ), + ], + child: const Text('Online Help'), + ), + ], + child: const Text('Help'), + ), + ], + ), + ), + Semantics( + label: 'Disabled menu bar', + child: const MenuBar( + key: Key('disabled menu bar'), + children: [ + SubmenuButton(menuChildren: [], child: Text('Disabled File')), + MenuItemButton(child: Text('Disabled Help')), + ], + ), + ), + ], + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/navigation_bar.dart b/packages/material_ui/a11y_assessments/lib/use_cases/navigation_bar.dart new file mode 100644 index 000000000000..c4d16f85b6e7 --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/navigation_bar.dart @@ -0,0 +1,70 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class NavigationBarUseCase extends UseCase { + NavigationBarUseCase(); + + @override + String get name => 'NavigationBar'; + + @override + String get route => '/navigation-bar'; + + @override + List get tags => [Tag.batch1, Tag.core]; + + @override + Widget build(BuildContext context) => const MainWidget(); +} + +class MainWidget extends StatefulWidget { + const MainWidget({super.key}); + + @override + State createState() => MainWidgetState(); +} + +class MainWidgetState extends State { + int currentPageIndex = 0; + + String pageTitle = getUseCaseName(NavigationBarUseCase()); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + bottomNavigationBar: NavigationBar( + onDestinationSelected: (int index) { + setState(() { + currentPageIndex = index; + }); + }, + indicatorColor: Colors.amber[800], + selectedIndex: currentPageIndex, + destinations: const [ + NavigationDestination( + selectedIcon: Icon(Icons.home), + icon: Icon(Icons.home_outlined), + label: 'Home', + ), + NavigationDestination(icon: Icon(Icons.business), label: 'Business'), + NavigationDestination( + selectedIcon: Icon(Icons.school), + icon: Icon(Icons.school_outlined), + label: 'School', + ), + ], + ), + body: [ + Container(alignment: Alignment.center, child: const Text('Page 1')), + Container(alignment: Alignment.center, child: const Text('Page 2')), + Container(alignment: Alignment.center, child: const Text('Page 3')), + ][currentPageIndex], + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/navigation_drawer.dart b/packages/material_ui/a11y_assessments/lib/use_cases/navigation_drawer.dart new file mode 100644 index 000000000000..6c610ad9a861 --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/navigation_drawer.dart @@ -0,0 +1,106 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class ExampleDestination { + const ExampleDestination(this.label, this.icon, this.selectedIcon); + + final String label; + final Widget icon; + final Widget selectedIcon; +} + +const List destinations = [ + ExampleDestination('Messages', Icon(Icons.widgets_outlined), Icon(Icons.widgets)), + ExampleDestination('Profile', Icon(Icons.format_paint_outlined), Icon(Icons.format_paint)), + ExampleDestination('Settings', Icon(Icons.settings_outlined), Icon(Icons.settings)), +]; + +class NavigationDrawerUseCase extends UseCase { + NavigationDrawerUseCase(); + + @override + String get name => 'NavigationDrawer'; + + @override + String get route => '/navigation-drawer'; + + @override + List get tags => [Tag.batch1, Tag.core]; + + @override + Widget build(BuildContext context) => const NavigationDrawerExample(); +} + +class NavigationDrawerExample extends StatefulWidget { + const NavigationDrawerExample({super.key}); + + @override + State createState() => _NavigationDrawerExampleState(); +} + +class _NavigationDrawerExampleState extends State { + final GlobalKey scaffoldKey = GlobalKey(); + + int screenIndex = 0; + late bool showNavigationDrawer; + + void handleScreenChanged(int selectedScreen) { + setState(() { + screenIndex = selectedScreen; + }); + } + + void openDrawer() { + scaffoldKey.currentState!.openEndDrawer(); + } + + String pageTitle = getUseCaseName(NavigationDrawerUseCase()); + + Widget buildDrawerScaffold(BuildContext context) { + return Scaffold( + key: scaffoldKey, + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: SafeArea( + bottom: false, + top: false, + child: Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.spaceEvenly, + children: [ + Text('Page Index = $screenIndex'), + ElevatedButton(onPressed: openDrawer, child: const Text('Open Drawer')), + ], + ), + ), + ), + endDrawer: NavigationDrawer( + onDestinationSelected: handleScreenChanged, + selectedIndex: screenIndex, + children: [ + Padding( + padding: const EdgeInsets.fromLTRB(28, 16, 16, 10), + child: Text('Header', style: Theme.of(context).textTheme.titleSmall), + ), + ...destinations.map((ExampleDestination destination) { + return NavigationDrawerDestination( + label: Text(destination.label), + icon: destination.icon, + selectedIcon: destination.selectedIcon, + ); + }), + const Padding(padding: EdgeInsets.fromLTRB(28, 16, 28, 10), child: Divider()), + ], + ), + ); + } + + @override + Widget build(BuildContext context) { + return buildDrawerScaffold(context); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/navigation_rail.dart b/packages/material_ui/a11y_assessments/lib/use_cases/navigation_rail.dart new file mode 100644 index 000000000000..b08884cdcdd0 --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/navigation_rail.dart @@ -0,0 +1,195 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class NavigationRailUseCase extends UseCase { + NavigationRailUseCase(); + + @override + String get name => 'NavigationRail'; + + @override + String get route => '/navigation-rail'; + + @override + List get tags => [Tag.batch1, Tag.core]; + + @override + Widget build(BuildContext context) => const NavRailExample(); +} + +class NavRailExample extends StatefulWidget { + const NavRailExample({super.key}); + + @override + State createState() => _NavRailExampleState(); +} + +class _NavRailExampleState extends State { + int _selectedIndex = 0; + NavigationRailLabelType labelType = NavigationRailLabelType.all; + bool showLeading = false; + bool showTrailing = false; + double groupAlignment = -1.0; + + String pageTitle = getUseCaseName(NavigationRailUseCase()); + + @override + Widget build(BuildContext context) { + return Scaffold( + body: Row( + children: [ + NavigationRail( + selectedIndex: _selectedIndex, + groupAlignment: groupAlignment, + onDestinationSelected: (int index) { + setState(() { + _selectedIndex = index; + }); + }, + labelType: labelType, + leading: showLeading + ? FloatingActionButton( + tooltip: 'Add', + elevation: 0, + onPressed: () { + // Add your onPressed code here! + }, + child: const Icon(Icons.add), + ) + : const SizedBox(), + trailing: showTrailing + ? IconButton( + tooltip: 'More', + onPressed: () { + // Add your onPressed code here! + }, + icon: const Icon(Icons.more_horiz_rounded), + ) + : const SizedBox(), + destinations: const [ + NavigationRailDestination( + icon: Icon(Icons.favorite_border), + selectedIcon: Icon(Icons.favorite), + padding: EdgeInsets.all(4), + label: Text('First'), + ), + NavigationRailDestination( + icon: Icon(Icons.bookmark_border), + selectedIcon: Icon(Icons.book), + padding: EdgeInsets.all(4), + label: Text('Second'), + ), + NavigationRailDestination( + icon: Icon(Icons.star_border), + selectedIcon: Icon(Icons.star), + padding: EdgeInsets.all(4), + label: Text('Third'), + ), + ], + ), + const VerticalDivider(thickness: 1, width: 1), + // This is the main content. + Expanded( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Text('selectedIndex: $_selectedIndex'), + const SizedBox(height: 20), + Text('Label type: ${labelType.name}'), + const SizedBox(height: 10), + OverflowBar( + spacing: 10.0, + children: [ + ElevatedButton( + onPressed: () { + setState(() { + labelType = NavigationRailLabelType.none; + }); + }, + child: const Text('None'), + ), + ElevatedButton( + onPressed: () { + setState(() { + labelType = NavigationRailLabelType.selected; + }); + }, + child: const Text('Selected'), + ), + ElevatedButton( + onPressed: () { + setState(() { + labelType = NavigationRailLabelType.all; + }); + }, + child: const Text('All'), + ), + ], + ), + const SizedBox(height: 20), + Text('Group alignment: $groupAlignment'), + const SizedBox(height: 10), + OverflowBar( + spacing: 10.0, + children: [ + ElevatedButton( + onPressed: () { + setState(() { + groupAlignment = -1.0; + }); + }, + child: const Text('Top'), + ), + ElevatedButton( + onPressed: () { + setState(() { + groupAlignment = 0.0; + }); + }, + child: const Text('Center'), + ), + ElevatedButton( + onPressed: () { + setState(() { + groupAlignment = 1.0; + }); + }, + child: const Text('Bottom'), + ), + ], + ), + const SizedBox(height: 20), + OverflowBar( + spacing: 10.0, + children: [ + ElevatedButton( + onPressed: () { + setState(() { + showLeading = !showLeading; + }); + }, + child: Text(showLeading ? 'Hide Leading' : 'Show Leading'), + ), + ElevatedButton( + onPressed: () { + setState(() { + showTrailing = !showTrailing; + }); + }, + child: Text(showTrailing ? 'Hide Trailing' : 'Show Trailing'), + ), + ], + ), + ], + ), + ), + ], + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/outlined_button.dart b/packages/material_ui/a11y_assessments/lib/use_cases/outlined_button.dart new file mode 100644 index 000000000000..5954d5ea0f29 --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/outlined_button.dart @@ -0,0 +1,53 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class OutlinedButtonUseCase extends UseCase { + OutlinedButtonUseCase(); + + @override + String get name => 'OutlinedButton'; + + @override + String get route => '/outlined-button'; + + @override + List get tags => [Tag.batch2, Tag.core]; + + @override + Widget build(BuildContext context) => const MainWidget(); +} + +class MainWidget extends StatefulWidget { + const MainWidget({super.key}); + + @override + State createState() => MainWidgetState(); +} + +class MainWidgetState extends State { + String pageTitle = getUseCaseName(OutlinedButtonUseCase()); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + OutlinedButton(onPressed: () {}, child: const Text('Outlined Button')), + const OutlinedButton( + onPressed: null, // Disabled + child: Text('Disabled OutlinedButton'), + ), + ], + ), + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/popup_menu_button.dart b/packages/material_ui/a11y_assessments/lib/use_cases/popup_menu_button.dart new file mode 100644 index 000000000000..eb5a4ece93b7 --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/popup_menu_button.dart @@ -0,0 +1,62 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class PopupMenuButtonUseCase extends UseCase { + PopupMenuButtonUseCase(); + + @override + String get name => 'PopupMenuButton'; + + @override + String get route => '/popup-menu-button'; + + @override + List get tags => [Tag.batch2, Tag.core]; + + @override + Widget build(BuildContext context) => const MainWidget(); +} + +class MainWidget extends StatefulWidget { + const MainWidget({super.key}); + + @override + State createState() => MainWidgetState(); +} + +class MainWidgetState extends State { + String pageTitle = getUseCaseName(PopupMenuButtonUseCase()); + String _selectedItem = 'None'; + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: Center( + child: Column( + mainAxisAlignment: MainAxisAlignment.center, + children: [ + Text('Selected: $_selectedItem'), + PopupMenuButton( + tooltip: 'Show menu', + onSelected: (String item) { + setState(() { + _selectedItem = item; + }); + }, + itemBuilder: (BuildContext context) => >[ + const PopupMenuItem(value: 'Item 1', child: Text('Item 1')), + const PopupMenuItem(value: 'Item 2', child: Text('Item 2')), + ], + ), + ], + ), + ), + ); + } +} diff --git a/packages/material_ui/a11y_assessments/lib/use_cases/radio.dart b/packages/material_ui/a11y_assessments/lib/use_cases/radio.dart new file mode 100644 index 000000000000..d20e4d998ddf --- /dev/null +++ b/packages/material_ui/a11y_assessments/lib/use_cases/radio.dart @@ -0,0 +1,88 @@ +// 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:material_ui/material_ui.dart'; +import '../utils.dart'; +import 'use_cases.dart'; + +class RadioUseCase extends UseCase { + RadioUseCase(); + + @override + String get name => 'Radio'; + + @override + String get route => '/radio'; + + @override + List get tags => [Tag.batch3, Tag.core]; + + @override + Widget build(BuildContext context) => _MainWidget(); +} + +enum Option { option1, option2, option3 } + +class _MainWidget extends StatefulWidget { + @override + State<_MainWidget> createState() => _MainWidgetState(); +} + +class _MainWidgetState extends State<_MainWidget> { + Option? _value = Option.option1; + + String pageTitle = getUseCaseName(RadioUseCase()); + + @override + Widget build(BuildContext context) { + return Scaffold( + appBar: AppBar(title: Semantics(headingLevel: 1, child: Text('$pageTitle Demo'))), + body: Center( + child: RadioGroup