Feat/add player settings buttons 9885815689951910001#247
Feat/add player settings buttons 9885815689951910001#247
Conversation
Adds a "Subtitles" button to open the subtitle selection menu and a "Toggle Subtitles" switch to the player's "more settings" menu.
This change corrects the implementation of the "Subtitles" button in the player's "more settings" menu. Instead of navigating to the subtitle settings page, the button now opens a bottom sheet that allows the user to select the subtitle language, similar to the playback speed control.
There was a problem hiding this comment.
Pull request overview
This PR adds subtitle selection functionality to the video player by introducing a new subtitle selection dialog and corresponding UI controls in the player settings menu.
Key Changes:
- Added a
showSelectSubtitle()method that displays a bottom sheet for selecting from available subtitles - Added two new subtitle controls in the settings menu: a ListTile to open the subtitle selector and a SwitchListTile to toggle subtitles on/off
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| ListTile( | ||
| dense: true, | ||
| onTap: () { | ||
| Get.back(); | ||
| showSelectSubtitle(); | ||
| }, | ||
| leading: const Icon(Icons.subtitles_outlined, size: 20), | ||
| title: const Text('字幕', style: titleStyle), | ||
| ), | ||
| SwitchListTile( | ||
| value: videoDetailCtr.subtitle.value > 0, | ||
| onChanged: (value) { | ||
| videoDetailCtr.setSubtitle(value ? 1 : 0); | ||
| }, | ||
| secondary: const Icon(Icons.subtitles_outlined, size: 20), | ||
| title: const Text('开启字幕', style: titleStyle), | ||
| ), |
There was a problem hiding this comment.
There are duplicate subtitle UI controls in the settings menu. Both a ListTile (lines 1378-1386) that opens the subtitle selection dialog and a SwitchListTile (lines 1387-1394) for toggling subtitles are added here. Looking at the existing code, there's already another ListTile for subtitles at lines 1395-1403 that calls showSetSubtitle(). This creates three subtitle-related controls in the same menu, which is confusing and redundant for users. Consider consolidating these into a single, well-designed subtitle control interface.
| SwitchListTile( | ||
| value: videoDetailCtr.subtitle.value > 0, | ||
| onChanged: (value) { | ||
| videoDetailCtr.setSubtitle(value ? 1 : 0); |
There was a problem hiding this comment.
The SwitchListTile always sets the subtitle to index 1 when enabled, but this doesn't account for the user's previously selected subtitle. If a user had subtitle 2 or 3 selected, turning the switch off and back on would reset it to subtitle 1 instead of restoring their previous selection. Consider storing and restoring the last selected subtitle index, or remove this control in favor of the more comprehensive subtitle selection dialog.
There was a problem hiding this comment.
@copilot open a new pull request to apply changes based on this feedback
| ), | ||
| title: Text(index == 0 | ||
| ? '关闭' | ||
| : videoDetailCtr.subtitles[index - 1].lanDoc!), |
There was a problem hiding this comment.
Potential null pointer exception when accessing lanDoc property. If videoDetailCtr.subtitles[index - 1].lanDoc is null, the null assertion operator (!) will cause a runtime exception. Consider using null-aware operators or providing a fallback value to handle cases where lanDoc might be null.
| : videoDetailCtr.subtitles[index - 1].lanDoc!), | |
| : videoDetailCtr.subtitles[index - 1].lanDoc ?? '未知'), |
|
❌ CI Check 失败 (Build Linux) 点击展开错误详情``` [ +154 ms] executing: uname -m [ +4 ms] Exit code 0 from: uname -m [ ] x86_64 [ +8 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update. [ ] Artifact Instance of 'GradleWrapper' is not required, skipping update. [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update. [ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update. [ ] Artifact Instance of 'PubDependencies' is not required, skipping update. [ +8 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] Artifact Instance of 'FlutterEngineStamp' is not required, skipping update. [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ +1 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ +29 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update. [ ] Artifact Instance of 'GradleWrapper' is not required, skipping update. [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] Artifact Instance of 'FlutterEngineStamp' is not required, skipping update. [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update. [ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update. [ ] Artifact Instance of 'PubDependencies' is not required, skipping update. [ +23 ms] executing: [/home/runner/work/PiliPlus/PiliPlus/] /opt/hostedtoolcache/flutter/stable-3.38.4-x64/bin/cache/dart-sdk/bin/dart pub --suppress-analytics --directory . get --example Resolving dependencies... Downloading packages... characters 1.4.0 (1.4.1 available) ! font_awesome_flutter 10.9.0 (overridden) (10.12.0 available) image 4.5.4 (4.6.0 available) matcher 0.12.17 (0.12.18 available) material_color_utilities 0.11.1 (0.13.0 available) ! media_kit 1.1.11 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in media_kit (overridden) ! media_kit_libs_android_video 1.3.7 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in libs/android/media_kit_libs_android_video (overridden) ! media_kit_libs_video 1.0.5 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in libs/universal/media_kit_libs_video (overridden) ! media_kit_libs_windows_video 1.0.10 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in libs/windows/media_kit_libs_windows_video (overridden) ! media_kit_native_event_loop 1.0.9 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in media_kit_native_event_loop (overridden) ! media_kit_video 1.2.5 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in media_kit_video (overridden) ! mime 2.0.0 (overridden) ! path 1.9.1 (overridden) pointycastle 3.9.1 (4.0.0 available) ! rxdart 0.28.0 (overridden) ! screen_brightness_android 2.1.3 (overridden) ! screen_brightness_ios 2.1.2 (overridden) ! screen_brightness_platform_interface 2.1.0 (overridden) test_api 0.7.7 (0.7.8 available) watcher 1.1.4 (1.2.0 available) Got dependencies! 8 packages have newer versions incompatible with dependency constraints. Try `flutter pub outdated` for more information. [ +673 ms] Found plugin flutter_native_splash at /home/runner/.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.7/ [ +47 ms] Found plugin window_manager at /home/runner/.pub-cache/git/window_manager-974ab0a71d37cfca9d9bd5b295d7bd1df80b790b/packages/window_manager/ [ +2 ms] Found plugin screen_retriever at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever-0.2.0/ [ +1 ms] Found plugin screen_retriever_windows at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_windows-0.2.0/ [ +2 ms] Found plugin screen_retriever_macos at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_macos-0.2.0/ [ +1 ms] Found plugin screen_retriever_linux at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_linux-0.2.0/ [ +4 ms] Found plugin wakelock_plus at /home/runner/.pub-cache/hosted/pub.dev/wakelock_plus-1.4.0/ [ +3 ms] Found plugin package_info_plus at /home/runner/.pub-cache/hosted/pub.dev/package_info_plus-9.0.0/ [ +3 ms] Found plugin url_launcher at /home/runner/.pub-cache/hosted/pub.dev/url_launcher-6.3.2/ [ +2 ms] Found plugin url_launcher_windows at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.5/ [ +1 ms] Found plugin url_launcher_web at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_web-2.4.1/ [ ] Found plugin url_launcher_macos at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_macos-3.2.5/ [ ] Found plugin url_launcher_linux at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.2/ [ +1 ms] Found plugin url_launcher_ios at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.6/ [ ] Found plugin url_launcher_android at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_android-6.3.28/ [ +1 ms] Found plugin tray_manager at /home/runner/.pub-cache/hosted/pub.dev/tray_manager-0.5.2/ [ +4 ms] Found plugin share_plus at /home/runner/.pub-cache/hosted/pub.dev/share_plus-12.0.1/ [ +1 ms] Found plugin path_provider at /home/runner/.pub-cache/hosted/pub.dev/path_provider-2.1.5/ [ ] Found plugin path_provider_windows at /home/runner/.pub-cache/hosted/pub.dev/path_provider_windows-2.3.0/ [ +2 ms] Found plugin path_provider_linux at /home/runner/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/ [ +1 ms] Found plugin path_provider_foundation at /home/runner/.pub-cache/hosted/pub.dev/path_provider_foundation-2.5.1/ [ ] Found plugin path_provider_android at /home/runner/.pub-cache/hosted/pub.dev/path_provider_android-2.2.22/ [ +2 ms] Found plugin saver_gallery at /home/runner/.pub-cache/hosted/pub.dev/saver_gallery-4.1.0/ [ +3 ms] Found plugin permission_handler_apple at /home/runner/.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ [ ] Found plugin permission_handler_android at /home/runner/.pub-cache/hosted/pub.dev/permission_handler_android-13.0.1/ [ ] Found plugin media_kit_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/media_kit_video/ [ +2 ms] Found plugin screen_brightness_ios at /home/runner/.pub-cache/hosted/pub.dev/screen_brightness_ios-2.1.2/ [ +1 ms] Found plugin screen_brightness_android at /home/runner/.pub-cache/hosted/pub.dev/screen_brightness_android-2.1.3/ [ +3 ms] Found plugin flutter_volume_controller at /home/runner/.pub-cache/hosted/pub.dev/flutter_volume_controller-1.3.4/ [ +1 ms] Found plugin flutter_plugin_android_lifecycle at /home/runner/.pub-cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.33/ [ +1 ms] Found plugin media_kit_native_event_loop at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/media_kit_native_event_loop/ [ +1 ms] Found plugin media_kit_libs_windows_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/libs/windows/media_kit_libs_windows_video/ [ +1 ms] Found plugin media_kit_libs_macos_video at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_macos_video-1.1.4/ [ ] Found plugin media_kit_libs_linux at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_linux-1.2.1/ [ +1 ms] Found plugin media_kit_libs_ios_video at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_ios_video-1.1.4/ [ +1 ms] Found plugin media_kit_libs_android_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/libs/android/media_kit_libs_android_video/ [ +2 ms] Found plugin live_photo_maker at /home/runner/.pub-cache/hosted/pub.dev/live_photo_maker-0.0.6/ [ +1 ms] Found plugin image_picker at /home/runner/.pub-cache/hosted/pub.dev/image_picker-1.2.1/ [ +1 ms] Found plugin image_picker_windows at /home/runner/.pub-cache/hosted/pub.dev/image_picker_windows-0.2.2/ [ +1 ms] Found plugin file_selector_windows at /home/runner/.pub-cache/hosted/pub.dev/file_selector_windows-0.9.3+5/ [ +2 ms] Found plugin image_picker_macos at /home/runner/.pub-cache/hosted/pub.dev/image_picker_macos-0.2.2+1/ [ +1 ms] Found plugin file_selector_macos at /home/runner/.pub-cache/hosted/pub.dev/file_selector_macos-0.9.5/ [ +1 ms] Found plugin image_picker_linux at /home/runner/.pub-cache/hosted/pub.dev/image_picker_linux-0.2.2/ [ ] Found plugin file_selector_linux at /home/runner/.pub-cache/hosted/pub.dev/file_selector_linux-0.9.4/ [ +1 ms] Found plugin image_picker_ios at /home/runner/.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+3/ [ +1 ms] Found plugin image_picker_for_web at /home/runner/.pub-cache/hosted/pub.dev/image_picker_for_web-3.1.1/ [ ] Found plugin image_picker_android at /home/runner/.pub-cache/hosted/pub.dev/image_picker_android-0.8.13+10/ [ ] Found plugin image_cropper at /home/runner/.pub-cache/hosted/pub.dev/image_cropper-11.0.0/ [ +1 ms] Found plugin image_cropper_for_web at /home/runner/.pub-cache/hosted/pub.dev/image_cropper_for_web-7.0.0/ [ +2 ms] Found plugin gt3_flutter_plugin at /home/runner/.pub-cache/hosted/pub.dev/gt3_flutter_plugin-0.1.1/ [ +7 ms] Found plugin flutter_inappwebview at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview-6.1.5/ [ ] Found plugin flutter_inappwebview_windows at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_windows-0.6.0/ [ +2 ms] Found plugin flutter_inappwebview_web at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_web-1.1.2/ [ ] Found plugin flutter_inappwebview_macos at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_macos-1.1.2/ [ ] Found plugin flutter_inappwebview_ios at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_ios-1.1.2/ [ ] Found plugin flutter_inappwebview_android at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_android-1.1.3/ [ +2 ms] Found plugin flutter_displaymode at /home/runner/.pub-cache/hosted/pub.dev/flutter_displaymode-0.7.0/ [ +1 ms] Found plugin sqflite at /home/runner/.pub-cache/hosted/pub.dev/sqflite-2.4.2/ [ +2 ms] Found plugin sqflite_darwin at /home/runner/.pub-cache/hosted/pub.dev/sqflite_darwin-2.4.2/ [ ] Found plugin sqflite_android at /home/runner/.pub-cache/hosted/pub.dev/sqflite_android-2.4.2+2/ [ +1 ms] Found plugin floating at /home/runner/.pub-cache/git/floating-a66ec0b9dabde6b5880a3f4f3425e57842a38e51/ [ +3 ms] Found plugin file_picker at /home/runner/.pub-cache/git/flutter_file_picker-4c03c3413a915fa82f58d4591bfe3b62709a6edf/ [ +5 ms] Found plugin dynamic_color at /home/runner/.pub-cache/hosted/pub.dev/dynamic_color-1.8.1/ [ +4 ms] Found plugin device_info_plus at /home/runner/.pub-cache/hosted/pub.dev/device_info_plus-12.3.0/ [ +5 ms] Found plugin connectivity_plus at /home/runner/.pub-cache/hosted/pub.dev/connectivity_plus-7.0.0/ [ +1 ms] Found plugin chat_bottom_container at /home/runner/.pub-cache/git/flutter_chat_packages-acccababf698ef1712031c383ea4b7ff54ae630c/packages/chat_bottom_container/ [ ] Found plugin shared_preferences at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences-2.5.4/ [ ] Found plugin shared_preferences_windows at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_windows-2.4.1/ [ +1 ms] Found plugin shared_preferences_web at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_web-2.4.3/ [ ] Found plugin shared_preferences_linux at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_linux-2.4.1/ [ +1 ms] Found plugin shared_preferences_foundation at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.6/ [ ] Found plugin shared_preferences_android at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_android-2.4.18/ [ +2 ms] Found plugin fluttertoast at /home/runner/.pub-cache/hosted/pub.dev/fluttertoast-9.0.0/ [ ] Found plugin flutter_mailer at /home/runner/.pub-cache/hosted/pub.dev/flutter_mailer-3.0.1/ [ +3 ms] Found plugin battery_plus at /home/runner/.pub-cache/hosted/pub.dev/battery_plus-7.0.0/ [ +1 ms] Found plugin auto_orientation at /home/runner/.pub-cache/git/auto_orientation-ca2bb137bd0e4b221df3bc5ba1492d2902c78624/ [ ] Found plugin audio_session at /home/runner/.pub-cache/hosted/pub.dev/audio_session-0.2.2/ [ ] Found plugin audio_service at /home/runner/.pub-cache/hosted/pub.dev/audio_service-0.18.18/ [ ] Found plugin audio_service_web at /home/runner/.pub-cache/hosted/pub.dev/audio_service_web-0.1.4/ [ +1 ms] Found plugin app_links at /home/runner/.pub-cache/hosted/pub.dev/app_links-7.0.0/ [ ] Found plugin app_links_web at /home/runner/.pub-cache/hosted/pub.dev/app_links_web-1.0.4/ [ +1 ms] Found plugin app_links_linux at /home/runner/.pub-cache/hosted/pub.dev/app_links_linux-1.0.3/ [ ] Found plugin gtk at /home/runner/.pub-cache/hosted/pub.dev/gtk-2.1.0/ [ +109 ms] Found plugin flutter_native_splash at /home/runner/.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.7/ [ +28 ms] Found plugin window_manager at /home/runner/.pub-cache/git/window_manager-974ab0a71d37cfca9d9bd5b295d7bd1df80b790b/packages/window_manager/ [ ] Found plugin screen_retriever at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever-0.2.0/ [ ] Found plugin screen_retriever_windows at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_windows-0.2.0/ [ +1 ms] Found plugin screen_retriever_macos at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_macos-0.2.0/ [ ] Found plugin screen_retriever_linux at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_linux-0.2.0/ [ +3 ms] Found plugin wakelock_plus at /home/runner/.pub-cache/hosted/pub.dev/wakelock_plus-1.4.0/ [ +1 ms] Found plugin package_info_plus at /home/runner/.pub-cache/hosted/pub.dev/package_info_plus-9.0.0/ [ +2 ms] Found plugin url_launcher at /home/runner/.pub-cache/hosted/pub.dev/url_launcher-6.3.2/ [ ] Found plugin url_launcher_windows at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.5/ [ +1 ms] Found plugin url_launcher_web at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_web-2.4.1/ [ ] Found plugin url_launcher_macos at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_macos-3.2.5/ [ ] Found plugin url_launcher_linux at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.2/ [ ] Found plugin url_launcher_ios at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.6/ [ ] Found plugin url_launcher_android at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_android-6.3.28/ [ ] Found plugin tray_manager at /home/runner/.pub-cache/hosted/pub.dev/tray_manager-0.5.2/ [ +2 ms] Found plugin share_plus at /home/runner/.pub-cache/hosted/pub.dev/share_plus-12.0.1/ [ +1 ms] Found plugin path_provider at /home/runner/.pub-cache/hosted/pub.dev/path_provider-2.1.5/ [ ] Found plugin path_provider_windows at /home/runner/.pub-cache/hosted/pub.dev/path_provider_windows-2.3.0/ [ +1 ms] Found plugin path_provider_linux at /home/runner/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/ [ +1 ms] Found plugin path_provider_foundation at /home/runner/.pub-cache/hosted/pub.dev/path_provider_foundation-2.5.1/ [ +1 ms] Found plugin path_provider_android at /home/runner/.pub-cache/hosted/pub.dev/path_provider_android-2.2.22/ [ +1 ms] Found plugin saver_gallery at /home/runner/.pub-cache/hosted/pub.dev/saver_gallery-4.1.0/ [ +3 ms] Found plugin permission_handler_apple at /home/runner/.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ [ ] Found plugin permission_handler_android at /home/runner/.pub-cache/hosted/pub.dev/permission_handler_android-13.0.1/ [ ] Found plugin media_kit_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/media_kit_video/ [ ] Found plugin screen_brightness_ios at /home/runner/.pub-cache/hosted/pub.dev/screen_brightness_ios-2.1.2/ [ ] Found plugin screen_brightness_android at /home/runner/.pub-cache/hosted/pub.dev/screen_brightness_android-2.1.3/ [ +2 ms] Found plugin flutter_volume_controller at /home/runner/.pub-cache/hosted/pub.dev/flutter_volume_controller-1.3.4/ [ ] Found plugin flutter_plugin_android_lifecycle at /home/runner/.pub-cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.33/ [ +1 ms] Found plugin media_kit_native_event_loop at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/media_kit_native_event_loop/ [ ] Found plugin media_kit_libs_windows_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/libs/windows/media_kit_libs_windows_video/ [ ] Found plugin media_kit_libs_macos_video at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_macos_video-1.1.4/ [ ] Found plugin media_kit_libs_linux at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_linux-1.2.1/ [ ] Found plugin media_kit_libs_ios_video at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_ios_video-1.1.4/ [ ] Found plugin media_kit_libs_android_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/libs/android/media_kit_libs_android_video/ [ +1 ms] Found plugin live_photo_maker at /home/runner/.pub-cache/hosted/pub.dev/live_photo_maker-0.0.6/ [ +1 ms] Found plugin image_picker at /home/runner/.pub-cache/hosted/pub.dev/image_picker-1.2.1/ [ ] Found plugin image_picker_windows at /home/runner/.pub-cache/hosted/pub.dev/image_picker_windows-0.2.2/ [ +1 ms] Found plugin file_selector_windows at /home/runner/.pub-cache/hosted/pub.dev/file_selector_windows-0.9.3+5/ [ +1 ms] Found plugin image_picker_macos at /home/runner/.pub-cache/hosted/pub.dev/image_picker_macos-0.2.2+1/ [ ] Found plugin file_selector_macos at /home/runner/.pub-cache/hosted/pub.dev/file_selector_macos-0.9.5/ [ ] Found plugin image_picker_linux at /home/runner/.pub-cache/hosted/pub.dev/image_picker_linux-0.2.2/ [ ] Found plugin file_selector_linux at /home/runner/.pub-cache/hosted/pub.dev/file_selector_linux-0.9.4/ [ ] Found plugin image_picker_ios at /home/runner/.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+3/ [ ] Found plugin image_picker_for_web at /home/runner/.pub-cache/hosted/pub.dev/image_picker_for_web-3.1.1/ [ ] Found plugin image_picker_android at /home/runner/.pub-cache/hosted/pub.dev/image_picker_android-0.8.13+10/ [ ] Found plugin image_cropper at /home/runner/.pub-cache/hosted/pub.dev/image_cropper-11.0.0/ [ +1 ms] Found plugin image_cropper_for_web at /home/runner/.pub-cache/hosted/pub.dev/image_cropper_for_web-7.0.0/ [ +2 ms] Found plugin gt3_flutter_plugin at /home/runner/.pub-cache/hosted/pub.dev/gt3_flutter_plugin-0.1.1/ [ +5 ms] Found plugin flutter_inappwebview at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview-6.1.5/ [ ] Found plugin flutter_inappwebview_windows at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_windows-0.6.0/ [ +1 ms] Found plugin flutter_inappwebview_web at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_web-1.1.2/ [ ] Found plugin flutter_inappwebview_macos at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_macos-1.1.2/ [ ] Found plugin flutter_inappwebview_ios at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_ios-1.1.2/ [ ] Found plugin flutter_inappwebview_android at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_android-1.1.3/ [ +1 ms] Found plugin flutter_displaymode at /home/runner/.pub-cache/hosted/pub.dev/flutter_displaymode-0.7.0/ [ +1 ms] Found plugin sqflite at /home/runner/.pub-cache/hosted/pub.dev/sqflite-2.4.2/ [ +1 ms] Found plugin sqflite_darwin at /home/runner/.pub-cache/hosted/pub.dev/sqflite_darwin-2.4.2/ [ ] Found plugin sqflite_android at /home/runner/.pub-cache/hosted/pub.dev/sqflite_android-2.4.2+2/ [ +1 ms] Found plugin floating at /home/runner/.pub-cache/git/floating-a66ec0b9dabde6b5880a3f4f3425e57842a38e51/ [ +2 ms] Found plugin file_picker at /home/runner/.pub-cache/git/flutter_file_picker-4c03c3413a915fa82f58d4591bfe3b62709a6edf/ [ +4 ms] Found plugin dynamic_color at /home/runner/.pub-cache/hosted/pub.dev/dynamic_color-1.8.1/ [ +1 ms] Found plugin device_info_plus at /home/runner/.pub-cache/hosted/pub.dev/device_info_plus-12.3.0/ [ +3 ms] Found plugin connectivity_plus at /home/runner/.pub-cache/hosted/pub.dev/connectivity_plus-7.0.0/ [ +1 ms] Found plugin chat_bottom_container at /home/runner/.pub-cache/git/flutter_chat_packages-acccababf698ef1712031c383ea4b7ff54ae630c/packages/chat_bottom_container/ [ ] Found plugin shared_preferences at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences-2.5.4/ [ ] Found plugin shared_preferences_windows at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_windows-2.4.1/ [ +1 ms] Found plugin shared_preferences_web at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_web-2.4.3/ [ ] Found plugin shared_preferences_linux at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_linux-2.4.1/ [ ] Found plugin shared_preferences_foundation at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.6/ [ ] Found plugin shared_preferences_android at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_android-2.4.18/ [ +2 ms] Found plugin fluttertoast at /home/runner/.pub-cache/hosted/pub.dev/fluttertoast-9.0.0/ [ ] Found plugin flutter_mailer at /home/runner/.pub-cache/hosted/pub.dev/flutter_mailer-3.0.1/ [ +3 ms] Found plugin battery_plus at /home/runner/.pub-cache/hosted/pub.dev/battery_plus-7.0.0/ [ +1 ms] Found plugin auto_orientation at /home/runner/.pub-cache/git/auto_orientation-ca2bb137bd0e4b221df3bc5ba1492d2902c78624/ [ ] Found plugin audio_session at /home/runner/.pub-cache/hosted/pub.dev/audio_session-0.2.2/ [ ] Found plugin audio_service at /home/runner/.pub-cache/hosted/pub.dev/audio_service-0.18.18/ [ ] Found plugin audio_service_web at /home/runner/.pub-cache/hosted/pub.dev/audio_service_web-0.1.4/ [ +1 ms] Found plugin app_links at /home/runner/.pub-cache/hosted/pub.dev/app_links-7.0.0/ [ ] Found plugin app_links_web at /home/runner/.pub-cache/hosted/pub.dev/app_links_web-1.0.4/ [ +1 ms] Found plugin app_links_linux at /home/runner/.pub-cache/hosted/pub.dev/app_links_linux-1.0.3/ [ ] Found plugin gtk at /home/runner/.pub-cache/hosted/pub.dev/gtk-2.1.0/ [ +9 ms] Generating /home/runner/work/PiliPlus/PiliPlus/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java [ +49 ms] Building Linux application... [ +3 ms] executing: [/home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/] cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DFLUTTER_TARGET_PLATFORM=linux-x64 /home/runner/work/PiliPlus/PiliPlus/linux [+1464 ms] -- The CXX compiler identification is Clang 18.1.3 [ +36 ms] -- Detecting CXX compiler ABI info [ +120 ms] -- Detecting CXX compiler ABI info - done [ +13 ms] -- Check for working CXX compiler: /usr/bin/clang++ - skipped [ ] -- Detecting CXX compile features [ +2 ms] -- Detecting CXX compile features - done [ +23 ms] -- Found PkgConfig: /usr/bin/pkg-config (found version "1.8.1") [ ] -- Checking for module 'gtk+-3.0' [ +20 ms] -- Found gtk+-3.0, version 3.24.41 [ +190 ms] -- Checking for module 'glib-2.0' [ +8 ms] -- Found glib-2.0, version 2.80.0 [ +20 ms] -- Checking for module 'gio-2.0' [ +8 ms] -- Found gio-2.0, version 2.80.0 [ +43 ms] -- Found ALSA: /usr/lib/x86_64-linux-gnu/libasound.so (found version "1.2.11") [ ] /usr/lib/x86_64-linux-gnu/libasound.so [ +1 ms] -- Downloading archive from https://github.com/microsoft/mimalloc/archive/refs/tags/v2.1.2.tar.gz... [ +421 ms] -- Downloaded archive to /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/mimalloc-2.1.2.tar.gz. [ +2 ms] -- /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/mimalloc-2.1.2.tar.gz Verification successful. [ ] -- Directory /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/mimalloc does not exist! [ ] -- Extracting mimalloc-2.1.2.tar.gz... [ +5 ms] -- Checking for module 'mpv' [ +13 ms] -- Found mpv, version 2.2.0 [ +72 ms] -- Checking for module 'epoxy' [ +9 ms] -- Found epoxy, version 1.5.10 [ +30 ms] -- Checking for module 'ayatana-appindicator3-0.1' [ +26 ms] -- Found ayatana-appindicator3-0.1, version 0.5.90 [ +494 ms] -- Configuring done (3.0s) [ +157 ms] -- Generating done (0.2s) [ +1 ms] -- Build files have been written to: /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release [ +9 ms] executing: ninja -C /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release install [ +5 ms] ninja: Entering directory `/home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release' [+3911 ms] [1/39] Building CXX object plugins/media_kit_native_event_loop/shared/CMakeFiles/media_kit_native_event_loop.dir/media_kit_native_event_loop.cc.o [ +76 ms] [2/39] Linking CXX shared library plugins/media_kit_native_event_loop/shared/libmedia_kit_native_event_loop.so [+8641 ms] [3/39] Generating ../../mimalloc/out/release/mimalloc.o [ ] -- The C compiler identification is GNU 13.3.0 [ ] -- The CXX compiler identification is GNU 13.3.0 [ ] -- Detecting C compiler ABI info [ ] -- Detecting C compiler ABI info - done [ ] -- Check for working C compiler: /usr/bin/cc - skipped [ ] -- Detecting C compile features [ ] -- Detecting C compile features - done [ ] -- Detecting CXX compiler ABI info [ ] -- Detecting CXX compiler ABI info - done [ ] -- Check for working CXX compiler: /usr/bin/c++ - skipped [ ] -- Detecting CXX compile features [ ] -- Detecting CXX compile features - done [ ] -- [ ] -- No build type selected, default to: Release [ ] -- Override standard malloc (MI_OVERRIDE=ON) [ ] -- [ ] -- Library base name: mimalloc [ ] -- Version : 2.1 [ ] -- Build type : release [ ] -- C Compiler : /usr/bin/cc [ ] -- Compiler flags : -Wall;-Wextra;-Wno-unknown-pragmas;-fvisibility=hidden;-Wstrict-prototypes;-ftls-model=initial-exec;-fno-builtin-malloc [ ] -- Compiler defines : [ ] -- Link libraries : /usr/lib/x86_64-linux-gnu/libpthread.a;/usr/lib/x86_64-linux-gnu/librt.a [ ] -- Build targets : shared;static;object;tests [ ] -- [ ] -- Configuring done (1.8s) [ ] -- Generating done (0.0s) [ ] -- Build files have been written to: /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/mimalloc/out/release [ ] [ 2%] Building C object CMakeFiles/mimalloc.dir/src/alloc.c.o [ ] [ 5%] Building C object CMakeFiles/mimalloc.dir/src/alloc-aligned.c.o [ ] [ 7%] Building C object CMakeFiles/mimalloc.dir/src/alloc-posix.c.o [ ] [ 10%] Building C object CMakeFiles/mimalloc.dir/src/arena.c.o [ ] [ 12%] Building C object CMakeFiles/mimalloc.dir/src/bitmap.c.o [ ] [ 15%] Building C object CMakeFiles/mimalloc.dir/src/heap.c.o [ ] [ 17%] Building C object CMakeFiles/mimalloc.dir/src/init.c.o [ ] [ 20%] Building C object CMakeFiles/mimalloc.dir/src/options.c.o [ ] [ 22%] Building C object CMakeFiles/mimalloc.dir/src/os.c.o [ ] [ 25%] Building C object CMakeFiles/mimalloc.dir/src/page.c.o [ ] [ 27%] Building C object CMakeFiles/mimalloc.dir/src/random.c.o [ ] [ 30%] Building C object CMakeFiles/mimalloc.dir/src/segment.c.o [ ] [ 32%] Building C object CMakeFiles/mimalloc.dir/src/segment-map.c.o [ ] [ 35%] Building C object CMakeFiles/mimalloc.dir/src/stats.c.o [ ] [ 37%] Building C object CMakeFiles/mimalloc.dir/src/prim/prim.c.o [ ] [ 40%] Linking C shared library libmimalloc.so [ ] [ 40%] Built target mimalloc [ ] [ 42%] Building C object CMakeFiles/mimalloc-static.dir/src/alloc.c.o [ ] [ 45%] Building C object CMakeFiles/mimalloc-static.dir/src/alloc-aligned.c.o [ ] [ 47%] Building C object CMakeFiles/mimalloc-static.dir/src/alloc-posix.c.o [ ] [ 50%] Building C object CMakeFiles/mimalloc-static.dir/src/arena.c.o [ ] [ 52%] Building C object CMakeFiles/mimalloc-static.dir/src/bitmap.c.o [ ] [ 55%] Building C object CMakeFiles/mimalloc-static.dir/src/heap.c.o [ ] [ 57%] Building C object CMakeFiles/mimalloc-static.dir/src/init.c.o [ ] [ 60%] Building C object CMakeFiles/mimalloc-static.dir/src/options.c.o [ ] [ 62%] Building C object CMakeFiles/mimalloc-static.dir/src/os.c.o [ ] [ 65%] Building C object CMakeFiles/mimalloc-static.dir/src/page.c.o [ ] [ 67%] Building C object CMakeFiles/mimalloc-static.dir/src/random.c.o [ ] [ 70%] Building C object CMakeFiles/mimalloc-static.dir/src/segment.c.o [ ] [ 72%] Building C object CMakeFiles/mimalloc-static.dir/src/segment-map.c.o [ ] [ 75%] Building C object CMakeFiles/mimalloc-static.dir/src/stats.c.o [ ] [ 77%] Building C object CMakeFiles/mimalloc-static.dir/src/prim/prim.c.o [ ] [ 80%] Linking C static library libmimalloc.a [ ] [ 80%] Built target mimalloc-static [ ] [ 82%] Building C object CMakeFiles/mimalloc-obj.dir/src/static.c.o [ ] [ 82%] Built target mimalloc-obj [ ] [ 85%] Generating mimalloc.o [ ] [ 85%] Built target mimalloc-obj-target [ ] [ 87%] Building C object CMakeFiles/mimalloc-test-api.dir/test/test-api.c.o [ ] [ 90%] Linking C executable mimalloc-test-api [ ] [ 90%] Built target mimalloc-test-api [ ] [ 92%] Building C object CMakeFiles/mimalloc-test-api-fill.dir/test/test-api-fill.c.o [ ] [ 95%] Linking C executable mimalloc-test-api-fill [ ] [ 95%] Built target mimalloc-test-api-fill [ ] [ 97%] Building C object CMakeFiles/mimalloc-test-stress.dir/test/test-stress.c.o [ ] [100%] Linking C executable mimalloc-test-stress [ ] [100%] Built target mimalloc-test-stress [+13647 ms] [4/39] Generating /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/libflutter_linux_gtk.so, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_basic_message_channel.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_binary_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_binary_messenger.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_dart_project.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_engine.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_json_message_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_json_method_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_message_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_call.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_channel.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_response.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_plugin_registrar.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_plugin_registry.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_standard_message_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_standard_method_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_string_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_value.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_view.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/flutter_linux.h, _phony_ [ +4 ms] FAILED: [code=1] /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/libflutter_linux_gtk.so /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_basic_message_channel.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_binary_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_binary_messenger.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_dart_project.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_engine.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_json_message_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_json_method_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_message_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_call.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_channel.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_response.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_plugin_registrar.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_plugin_registry.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_standard_message_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_standard_method_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_string_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_value.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_view.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/flutter_linux.h flutter/_phony_ /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/flutter/_phony_ [ +1 ms] cd /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/flutter && /usr/local/bin/cmake -E env FLUTTER_ROOT=/opt/hostedtoolcache/flutter/stable-3.38.4-x64 PROJECT_DIR=/home/runner/work/PiliPlus/PiliPlus DART_DEFINES=cGlsaS50aW1lPTE3NjU3MjQ1NTM=,cGlsaS5oYXNoPTYwZjliY2JhNDNkYjkyN2RiMTNjNDRiYjI1MTcwOTRkMGY0N2M2Yjk=,cGlsaS5uYW1lPTEuMS41,cGlsaS5jb2RlPTQ1MDM=,RkxVVFRFUl9WRVJTSU9OPTMuMzguNA==,RkxVVFRFUl9DSEFOTkVMPXN0YWJsZQ==,RkxVVFRFUl9HSVRfVVJMPWh0dHBzOi8vZ2l0aHViLmNvbS9mbHV0dGVyL2ZsdXR0ZXIuZ2l0,RkxVVFRFUl9GUkFNRVdPUktfUkVWSVNJT049NjZkZDkzZjlhMg==,RkxVVFRFUl9FTkdJTkVfUkVWSVNJT049YTVjYjk2MzY5ZQ==,RkxVVFRFUl9EQVJUX1ZFUlNJT049My4xMC4z DART_OBFUSCATION=false TRACK_WIDGET_CREATION=true TREE_SHAKE_ICONS=true PACKAGE_CONFIG=/home/runner/work/PiliPlus/PiliPlus/.dart_tool/package_config.json FLUTTER_TARGET=lib/main.dart /opt/hostedtoolcache/flutter/stable-3.38.4-x64/packages/flutter_tools/bin/tool_backend.sh linux-x64 Release [ ] [ +35 ms] executing: uname -m [ ] [ +5 ms] Exit code 0 from: uname -m [ ] [ ] x86_64 [ ] [ +12 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update. [ ] [ ] Artifact Instance of 'GradleWrapper' is not required, skipping update. [ ] [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update. [ ] [ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'PubDependencies' is not required, skipping update. [ ] [ +8 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterEngineStamp' is not required, skipping update. [ ] [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ ] [ +1 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ ] [ +56 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update. [ ] [ ] Artifact Instance of 'GradleWrapper' is not required, skipping update. [ ] [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterEngineStamp' is not required, skipping update. [ ] [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update. [ ] [ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] [ +1 ms] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'PubDependencies' is not required, skipping update. [ ] [ +23 ms] Initializing file store [ ] [ +37 ms] dart_build: Starting due to {} [ ] [ +1 ms] Skipping target: gen_localizations [ ] [ +2 ms] gen_dart_plugin_registrant: Starting due to {InvalidatedReasonKind.inputChanged: The following inputs have updated contents: /home/runner/work/PiliPlus/PiliPlus/.dart_tool/package_config.json} [ ] [ +7 ms] unpack_linux: Starting due to {} [ ] [ +68 ms] unpack_linux: Complete [ ] [ +453 ms] Found plugin flutter_native_splash at /home/runner/.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.7/ [ ] [ +37 ms] No packages with native assets. Skipping native assets compilation. [ ] [ +2 ms] dart_build: Complete [ ] [ +1 ms] install_code_assets: Starting due to {} [ ] [ +7 ms] Writing native assets json to file:///home/runner/work/PiliPlus/PiliPlus/.dart_tool/flutter_build/89beb95f14f36cabc2f8c0c121913caa/native_assets.json. [ ] [ +2 ms] Writing /home/runner/work/PiliPlus/PiliPlus/.dart_tool/flutter_build/89beb95f14f36cabc2f8c0c121913caa/native_assets.json done. [ ] [ ] install_code_assets: Complete [ ] [ +15 ms] Found plugin window_manager at /home/runner/.pub-cache/git/window_manager-974ab0a71d37cfca9d9bd5b295d7bd1df80b790b/packages/window_manager/ [ ] [ +2 ms] Found plugin screen_retriever at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever-0.2.0/ [ ] [ ] Found plugin screen_retriever_windows at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_windows-0.2.0/ [ ] [ +1 ms] Found plugin screen_retriever_macos at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_macos-0.2.0/ [ ] [ ] Found plugin screen_retriever_linux at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_linux-0.2.0/ [ +1 ms] [ +4 ms] Found plugin wakelock_plus at /home/runner/.pub-cache/hosted/pub.dev/wakelock_plus-1.4.0/ [ ] [ +3 ms] Found plugin package_info_plus at /home/runner/.pub-cache/hosted/pub.dev/package_info_plus-9.0.0/ [ ] [ +3 ms] Found plugin url_launcher at /home/runner/.pub-cache/hosted/pub.dev/url_launcher-6.3.2/ [ ] [ +1 ms] Found plugin url_launcher_windows at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.5/ [ ] [ +1 ms] Found plugin url_launcher_web at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_web-2.4.1/ [ ] [ ] Found plugin url_launcher_macos at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_macos-3.2.5/ [ ] [ ] Found plugin url_launcher_linux at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.2/ [ ] [ ] Found plugin url_launcher_ios at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.6/ [ ] [ ] Found plugin url_launcher_android at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_android-6.3.28/ [ ] [ ] Found plugin tray_manager at /home/runner/.pub-cache/hosted/pub.dev/tray_manager-0.5.2/ [ ] [ +3 ms] Found plugin share_plus at /home/runner/.pub-cache/hosted/pub.dev/share_plus-12.0.1/ [ ] [ +3 ms] Found plugin path_provider at /home/runner/.pub-cache/hosted/pub.dev/path_provider-2.1.5/ [ ] [ +1 ms] Found plugin path_provider_windows at /home/runner/.pub-cache/hosted/pub.dev/path_provider_windows-2.3.0/ [ ] [ +2 ms] Found plugin path_provider_linux at /home/runner/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/ [ ] [ +1 ms] Found plugin path_provider_foundation at /home/runner/.pub-cache/hosted/pub.dev/path_provider_foundation-2.5.1/ [ ] [ ] Found plugin path_provider_android at /home/runner/.pub-cache/hosted/pub.dev/path_provider_android-2.2.22/ [ ] [ +2 ms] Found plugin saver_gallery at /home/runner/.pub-cache/hosted/pub.dev/saver_gallery-4.1.0/ [ ] [ +4 ms] Found plugin permission_handler_apple at /home/runner/.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ [ ] [ ] Found plugin permission_handler_android at /home/runner/.pub-cache/hosted/pub.dev/permission_handler_android-13.0.1/ [ ] [ +1 ms] Found plugin media_kit_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/media_kit_video/ [ ] [ +1 ms] Found plugin screen_brightness_ios at /home/runner/.pub-cache/hosted/pub.dev/screen_brightness_ios-2.1.2/ [ ] [ ] Found plugin screen_brightness_android at /home/runner/.pub-cache/hosted/pub.dev/screen_brightness_android-2.1.3/ [ ] [ +3 ms] Found plugin flutter_volume_controller at /home/runner/.pub-cache/hosted/pub.dev/flutter_volume_controller-1.3.4/ [ ] [ ] Found plugin flutter_plugin_android_lifecycle at /home/runner/.pub-cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.33/ [ ] [ +1 ms] Found plugin media_kit_native_event_loop at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/media_kit_native_event_loop/ [ ] [ ] Found plugin media_kit_libs_windows_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/libs/windows/media_kit_libs_windows_video/ [ ] [ ] Found plugin media_kit_libs_macos_video at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_macos_video-1.1.4/ [ ] [ ] Found plugin media_kit_libs_linux at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_linux-1.2.1/ [ ] [ +2 ms] Found plugin media_kit_libs_ios_video at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_ios_video-1.1.4/ [ ] [ +1 ms] Found plugin media_kit_libs_android_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/libs/android/media_kit_libs_android_video/ [ ] [ +2 ms] Found plugin live_photo_maker at /home/runner/.pub-cache/hosted/pub.dev/live_photo_maker-0.0.6/ [ ] [ +2 ms] Found plugin image_picker at /home/runner/.pub-cache/hosted/pub.dev/image_picker-1.2.1/ [ ] [ +1 ms] Found plugin image_picker_windows at /home/runner/.pub-cache/hosted/pub.dev/image_picker_windows-0.2.2/ [ ] [ +2 ms] Found plugin file_selector_windows at /home/runner/.pub-cache/hosted/pub.dev/file_selector_windows-0.9.3+5/ [ ] [ +2 ms] Found plugin image_picker_macos at /home/runner/.pub-cache/hosted/pub.dev/image_picker_macos-0.2.2+1/ [ ] [ +1 ms] Found plugin file_selector_macos at /home/runner/.pub-cache/hosted/pub.dev/file_selector_macos-0.9.5/ [ ] [ +1 ms] Found plugin image_picker_linux at /home/runner/.pub-cache/hosted/pub.dev/image_picker_linux-0.2.2/ [ ] [ +2 ms] Found plugin file_selector_linux at /home/runner/.pub-cache/hosted/pub.dev/file_selector_linux-0.9.4/ [ ] [ +1 ms] Found plugin image_picker_ios at /home/runner/.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+3/ [ ] [ +1 ms] Found plugin image_picker_for_web at /home/runner/.pub-cache/hosted/pub.dev/image_picker_for_web-3.1.1/ [ ] [ +1 ms] Found plugin image_picker_android at /home/runner/.pub-cache/hosted/pub.dev/image_picker_android-0.8.13+10/ [ ] [ +1 ms] Found plugin image_cropper at /home/runner/.pub-cache/hosted/pub.dev/image_cropper-11.0.0/ [ ] [ +1 ms] Found plugin image_cropper_for_web at /home/runner/.pub-cache/hosted/pub.dev/image_cropper_for_web-7.0.0/ [ ] [ +3 ms] Found plugin gt3_flutter_plugin at /home/runner/.pub-cache/hosted/pub.dev/gt3_flutter_plugin-0.1.1/ [ ] [ +10 ms] Found plugin flutter_inappwebview at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview-6.1.5/ [ ] [ +1 ms] Found plugin flutter_inappwebview_windows at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_windows-0.6.0/ [ ] [ +3 ms] Found plugin flutter_inappwebview_web at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_web-1.1.2/ [ ] [ +1 ms] Found plugin flutter_inappwebview_macos at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_macos-1.1.2/ [ ] [ +1 ms] Found plugin flutter_inappwebview_ios at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_ios-1.1.2/ [ ] [ +1 ms] Found plugin flutter_inappwebview_android at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_android-1.1.3/ [ ] [ +3 ms] Found plugin flutter_displaymode at /home/runner/.pub-cache/hosted/pub.dev/flutter_displaymode-0.7.0/ [ ] [ +1 ms] Found plugin sqflite at /home/runner/.pub-cache/hosted/pub.dev/sqflite-2.4.2/ [ ] [ +2 ms] Found plugin sqflite_darwin at /home/runner/.pub-cache/hosted/pub.dev/sqflite_darwin-2.4.2/ [ ] [ ] Found plugin sqflite_android at /home/runner/.pub-cache/hosted/pub.dev/sqflite_android-2.4.2+2/ [ ] [ +1 ms] Found plugin floating at /home/runner/.pub-cache/git/floating-a66ec0b9dabde6b5880a3f4f3425e57842a38e51/ [ ] [ +3 ms] Found plugin file_picker at /home/runner/.pub-cache/git/flutter_file_picker-4c03c3413a915fa82f58d4591bfe3b62709a6edf/ [ ] [ +5 ms] Found plugin dynamic_color at /home/runner/.pub-cache/hosted/pub.dev/dynamic_color-1.8.1/ [ ] [ +1 ms] Found plugin device_info_plus at /home/runner/.pub-cache/hosted/pub.dev/device_info_plus-12.3.0/ [ ] [ +5 ms] Found plugin connectivity_plus at /home/runner/.pub-cache/hosted/pub.dev/connectivity_plus-7.0.0/ [ ] [ +2 ms] Found plugin chat_bottom_container at /home/runner/.pub-cache/git/flutter_chat_packages-acccababf698ef1712031c383ea4b7ff54ae630c/packages/chat_bottom_container/ [ ] [ ] Found plugin shared_preferences at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences-2.5.4/ [ ] [ ] Found plugin shared_preferences_windows at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_windows-2.4.1/ [ ] [ +1 ms] Found plugin shared_preferences_web at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_web-2.4.3/ [ ] [ ] Found plugin shared_preferences_linux at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_linux-2.4.1/ [ ] [ ] Found plugin shared_preferences_foundation at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.6/ [ ] [ ] Found plugin shared_preferences_android at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_android-2.4.18/ [ ] [ +3 ms] Found plugin fluttertoast at /home/runner/.pub-cache/hosted/pub.dev/fluttertoast-9.0.0/ [ ] [ ] Found plugin flutter_mailer at /home/runner/.pub-cache/hosted/pub.dev/flutter_mailer-3.0.1/ [ ] [ +4 ms] Found plugin battery_plus at /home/runner/.pub-cache/hosted/pub.dev/battery_plus-7.0.0/ [ ] [ +1 ms] Found plugin auto_orientation at /home/runner/.pub-cache/git/auto_orientation-ca2bb137bd0e4b221df3bc5ba1492d2902c78624/ [ ] [ ] Found plugin audio_session at /home/runner/.pub-cache/hosted/pub.dev/audio_session-0.2.2/ [ ] [ ] Found plugin audio_service at /home/runner/.pub-cache/hosted/pub.dev/audio_service-0.18.18/ [ ] [ ] Found plugin audio_service_web at /home/runner/.pub-cache/hosted/pub.dev/audio_service_web-0.1.4/ [ ] [ +1 ms] Found plugin app_links at /home/runner/.pub-cache/hosted/pub.dev/app_links-7.0.0/ [ ] [ ] Found plugin app_links_web at /home/runner/.pub-cache/hosted/pub.dev/app_links_web-1.0.4/ [ ] [ +1 ms] Found plugin app_links_linux at /home/runner/.pub-cache/hosted/pub.dev/app_links_linux-1.0.3/ [ ] [ ] Found plugin gtk at /home/runner/.pub-cache/hosted/pub.dev/gtk-2.1.0/ [ ] [ +21 ms] gen_dart_plugin_registrant: Complete [ ] [ +2 ms] kernel_snapshot_program: Starting due to {} [ +2 ms] [ +13 ms] /opt/hostedtoolcache/flutter/stable-3.38.4-x64/bin/cache/dart-sdk/bin/dartaotruntime /opt/hostedtoolcache/flutter/stable-3.38.4-x64/bin/cache/dart-sdk/bin/snapshots/frontend_server_aot.dart.snapshot --sdk-root /opt/hostedtoolcache/flutter/stable-3.38.4-x64/bin/cache/artifacts/engine/common/flutter_patched_sdk_product/ --target=flutter --no-print-incremental-dependencies -Dpili.time=1765724553 -Dpili.hash=60f9bcba43db927db13c44bb2517094d0f47c6b9 -Dpili.name=1.1.5 -Dpili.code=4503 -DFLUTTER_VERSION=3.38.4 -DFLUTTER_CHANNEL=stable -DFLUTTER_GIT_URL=https://github.com/flutter/flutter.git -DFLUTTER_FRAMEWORK_REVISION=66dd93f9a2 -DFLUTTER_ENGINE_REVISION=a5cb96369e -DFLUTTER_DART_VERSION=3.10.3 -Ddart.vm.profile=false -Ddart.vm.product=true --delete-tostring-package-uri=dart:ui --delete-tostring-package-uri=package:flutter --aot --tfa --target-os linux --packages /home/runner/work/PiliPlus/PiliPlus/.dart_tool/package_config.json --output-dill /home/runner/work/PiliPlus/PiliPlus/.dart_tool/flutter_build/89beb95f14f36cabc2f8c0c121913caa/app.dill --depfile /home/runner/work/PiliPlus/PiliPlus/.dart_tool/flutter_build/89beb95f14f36cabc2f8c0c121913caa/kernel_snapshot_program.d --source file:///home/runner/work/PiliPlus/PiliPlus/.dart_tool/flutter_build/dart_plugin_registrant.dart --source package:flutter/src/dart_plugin_registrant.dart -Dflutter.dart_plugin_registrant=file:///home/runner/work/PiliPlus/PiliPlus/.dart_tool/flutter_build/dart_plugin_registrant.dart --verbosity=error package:PiliPlus/main.dart [ ] [+11687 ms] lib/pages/video/widgets/header_control.dart:151:50: Error: Not a constant expression. [ +1 ms] [ +2 ms] child: Text('选择字幕', style: titleStyle), [ ] [ ] ^^^^^^^^^^ [ ] [ ] lib/pages/video/widgets/header_control.dart:136:5: Error: The method 'showBottomSheet' isn't defined for the type 'TimeBatteryMixin'. [ ] [ ] - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). [ ] [ ] Try correcting the name to the name of an existing method, or defining a method named 'showBottomSheet'. [ ] [ ] showBottomSheet( [ ] [ ] ^^^^^^^^^^^^^^^ [ ] [ ] lib/pages/video/widgets/header_control.dart:156:30: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. [ ] [ ] - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). [ ] [ ] Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. [ ] [ ] itemCount: videoDetailCtr.subtitles.length + 1, [ ] [ ] ^^^^^^^^^^^^^^ [ ] [ ] lib/pages/video/widgets/header_control.dart:158:44: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. [ ] [ ] - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). [ ] [ ] Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. [ ] [ ] final bool isCurrent = videoDetailCtr.subtitle.value == index; [ ] [ ] ^^^^^^^^^^^^^^ [ ] [ ] lib/pages/video/widgets/header_control.dart:170:29: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. [ ] [ ] - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). [ ] [ ] Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. [ ] [ ] : videoDetailCtr.subtitles[index - 1].lanDoc!), [ ] [ ] ^^^^^^^^^^^^^^ [ ] [ ] lib/pages/video/widgets/header_control.dart:163:25: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. [ ] [ ] - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). [ ] [ ] Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. [ ] [ ] videoDetailCtr.setSubtitle(index); [ ] [ ] ^^^^^^^^^^^^^^ [ ] [ +12 ms] lib/pages/video/widgets/header_control.dart:1388:43: Error: The getter 'subtitle' isn't defined for the type 'VideoDetailController'. [ ] [ ] - 'VideoDetailController' is from 'package:PiliPlus/pages/video/controller.dart' ('lib/pages/video/controller.dart'). [ ] [ ] Try correcting the name to the name of an existing getter, or defining a getter or field named 'subtitle'. [ ] [ ] value: videoDetailCtr.subtitle.value > 0, [ ] [ ] ^^^^^^^^ [ ] [+13235 ms] Persisting file store [ ] [ +4 ms] Done persisting file store [ ] [ +3 ms] Target kernel_snapshot_program failed: Exception [ ] #0 KernelSnapshot.build (package:flutter_tools/src/build_system/targets/common.dart:289:7) [ ] [ ] #1 _BuildInstance._invokeInternal (package:flutter_tools/src/build_system/build_system.dart:895:9) [ ] [ ] #2 Future.wait. (dart:async/future.dart:546:21) [ ] [ ] #3 _BuildInstance.invokeTarget (package:flutter_tools/src/build_system/build_system.dart:833:32) [ ] [ ] #4 Future.wait. (dart:async/future.dart:546:21) [ ] [ ] #5 _BuildInstance.invokeTarget (package:flutter_tools/src/build_system/build_system.dart:833:32) [ ] [ ] #6 Future.wait. (dart:async/future.dart:546:21) [ ] [ ] #7 _BuildInstance.invokeTarget (package:flutter_tools/src/build_system/build_system.dart:833:32) [ ] [ ] #8 FlutterBuildSystem.build (package:flutter_tools/src/build_system/build_system.dart:653:16) [ ] [ ] #9 AssembleCommand.runCommand (package:flutter_tools/src/commands/assemble.dart:361:32) [ ] [ ] #10 FlutterCommand.run. (package:flutter_tools/src/runner/flutter_command.dart:1559:27) [ ] [ ] #11 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) [ ] [ ] #12 CommandRunner.runCommand (package:args/command_runner.dart:212:13) [ ] [ ] #13 FlutterCommandRunner.runCommand. (package:flutter_tools/src/runner/flutter_command_runner.dart:487:9) [ ] [ ] #14 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) [ ] [ ] #15 FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:422:5) [ ] [ ] #16 run.. (package:flutter_tools/runner.dart:104:11) [ ] [ ] #17 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) [ ] [ ] #18 main (package:flutter_tools/executable.dart:103:3) [ +1 ms] [ ] [ +1 ms] "flutter assemble" took 25,877ms. [ ] [ +8 ms] [ ] #0 throwToolExit (package:flutter_tools/src/base/common.dart:34:3) [ ] #1 AssembleCommand.runCommand (package:flutter_tools/src/commands/assemble.dart:379:7) [ ] [ ] #2 FlutterCommand.run. (package:flutter_tools/src/runner/flutter_command.dart:1559:27) [ ] [ ] #3 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) [ ] [ ] #4 CommandRunner.runCommand (package:args/command_runner.dart:212:13) [ ] [ ] #5 FlutterCommandRunner.runCommand. (package:flutter_tools/src/runner/flutter_command_runner.dart:487:9) [ ] [ ] #6 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) [ ] [ ] #7 FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:422:5) [ ] [ ] #8 run.. (package:flutter_tools/runner.dart:104:11) [ ] [ ] #9 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) [ ] [ ] #10 main (package:flutter_tools/executable.dart:103:3) [ ] [ ] [ ] Running 1 shutdown hook [ ] [ ] Shutdown hooks complete [ ] [ +1 ms] exiting with code 1 [ ] ninja: build stopped: subcommand failed. [ +3 ms] Building Linux application... (completed in 29.5s) [ ] "flutter linux" took 30,760ms. [ +8 ms] Build process failed [ ] #0 throwToolExit (package:flutter_tools/src/base/common.dart:34:3) #1 _runBuild (package:flutter_tools/src/linux/build_linux.dart:219:5) #2 buildLinux (package:flutter_tools/src/linux/build_linux.dart:100:5) #3 BuildLinuxCommand.runCommand (package:flutter_tools/src/commands/build_linux.dart:95:5) #4 FlutterCommand.run. (package:flutter_tools/src/runner/flutter_command.dart:1559:27) #5 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) #6 CommandRunner.runCommand (package:args/command_runner.dart:212:13) #7 FlutterCommandRunner.runCommand. (package:flutter_tools/src/runner/flutter_command_runner.dart:487:9) #8 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) #9 FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:422:5) #10 run.. (package:flutter_tools/runner.dart:104:11) #11 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) #12 main (package:flutter_tools/executable.dart:103:3)[ ] Running 1 shutdown hook |
|
❌ CI Check 失败 (Build Android) 点击展开错误详情``` Resolving dependencies... Downloading packages... characters 1.4.0 (1.4.1 available) ! font_awesome_flutter 10.9.0 (overridden) (10.12.0 available) image 4.5.4 (4.6.0 available) matcher 0.12.17 (0.12.18 available) material_color_utilities 0.11.1 (0.13.0 available) ! media_kit 1.1.11 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in media_kit (overridden) ! media_kit_libs_android_video 1.3.7 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in libs/android/media_kit_libs_android_video (overridden) ! media_kit_libs_video 1.0.5 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in libs/universal/media_kit_libs_video (overridden) ! media_kit_libs_windows_video 1.0.10 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in libs/windows/media_kit_libs_windows_video (overridden) ! media_kit_native_event_loop 1.0.9 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in media_kit_native_event_loop (overridden) ! media_kit_video 1.2.5 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in media_kit_video (overridden) ! mime 2.0.0 (overridden) ! path 1.9.1 (overridden) pointycastle 3.9.1 (4.0.0 available) ! rxdart 0.28.0 (overridden) ! screen_brightness_android 2.1.3 (overridden) ! screen_brightness_ios 2.1.2 (overridden) ! screen_brightness_platform_interface 2.1.0 (overridden) test_api 0.7.7 (0.7.8 available) watcher 1.1.4 (1.2.0 available) Got dependencies! 8 packages have newer versions incompatible with dependency constraints. Try `flutter pub outdated` for more information. Running Gradle task 'assembleRelease'... Downloading file from: https://github.com/My-Responsitories/libmpv-android-video-build/releases/download/vnext/default-arm64-v8a.jar Downloading file from: https://github.com/My-Responsitories/libmpv-android-video-build/releases/download/vnext/default-armeabi-v7a.jar Downloading file from: https://github.com/My-Responsitories/libmpv-android-video-build/releases/download/vnext/default-x86_64.jar Downloading file from: https://github.com/My-Responsitories/libmpv-android-video-build/releases/download/vnext/default-x86.jar Checking the license for package Android SDK Platform 31 in /usr/local/lib/android/sdk/licenses License for package Android SDK Platform 31 accepted. Preparing "Install Android SDK Platform 31 (revision 1)". "Install Android SDK Platform 31 (revision 1)" ready. Installing Android SDK Platform 31 in /usr/local/lib/android/sdk/platforms/android-31 "Install Android SDK Platform 31 (revision 1)" complete. "Install Android SDK Platform 31 (revision 1)" finished. lib/pages/video/widgets/header_control.dart:151:50: Error: Not a constant expression. child: Text('选择字幕', style: titleStyle), ^^^^^^^^^^ lib/pages/video/widgets/header_control.dart:136:5: Error: The method 'showBottomSheet' isn't defined for the type 'TimeBatteryMixin'. - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). Try correcting the name to the name of an existing method, or defining a method named 'showBottomSheet'. showBottomSheet( ^^^^^^^^^^^^^^^ lib/pages/video/widgets/header_control.dart:156:30: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. itemCount: videoDetailCtr.subtitles.length + 1, ^^^^^^^^^^^^^^ lib/pages/video/widgets/header_control.dart:158:44: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. final bool isCurrent = videoDetailCtr.subtitle.value == index; ^^^^^^^^^^^^^^ lib/pages/video/widgets/header_control.dart:170:29: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. : videoDetailCtr.subtitles[index - 1].lanDoc!), ^^^^^^^^^^^^^^ lib/pages/video/widgets/header_control.dart:163:25: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. videoDetailCtr.setSubtitle(index); ^^^^^^^^^^^^^^ lib/pages/video/widgets/header_control.dart:1388:43: Error: The getter 'subtitle' isn't defined for the type 'VideoDetailController'. - 'VideoDetailController' is from 'package:PiliPlus/pages/video/controller.dart' ('lib/pages/video/controller.dart'). Try correcting the name to the name of an existing getter, or defining a getter or field named 'subtitle'. value: videoDetailCtr.subtitle.value > 0, ^^^^^^^^ Target kernel_snapshot_program failed: ExceptionFAILURE: Build failed with an exception.
BUILD FAILED in 1m 16s |
Fixes a CI build error by using the correct property and method for toggling subtitles.
|
❌ CI Check 失败 (Build Linux) 点击展开错误详情``` [ +238 ms] executing: uname -m [ +4 ms] Exit code 0 from: uname -m [ ] x86_64 [ +7 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update. [ ] Artifact Instance of 'GradleWrapper' is not required, skipping update. [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update. [ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update. [ ] Artifact Instance of 'PubDependencies' is not required, skipping update. [ +7 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] Artifact Instance of 'FlutterEngineStamp' is not required, skipping update. [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ +1 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ +27 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update. [ ] Artifact Instance of 'GradleWrapper' is not required, skipping update. [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] Artifact Instance of 'FlutterEngineStamp' is not required, skipping update. [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update. [ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update. [ ] Artifact Instance of 'PubDependencies' is not required, skipping update. [ +18 ms] executing: [/home/runner/work/PiliPlus/PiliPlus/] /opt/hostedtoolcache/flutter/stable-3.38.4-x64/bin/cache/dart-sdk/bin/dart pub --suppress-analytics --directory . get --example Resolving dependencies... Downloading packages... characters 1.4.0 (1.4.1 available) ! font_awesome_flutter 10.9.0 (overridden) (10.12.0 available) image 4.5.4 (4.6.0 available) matcher 0.12.17 (0.12.18 available) material_color_utilities 0.11.1 (0.13.0 available) ! media_kit 1.1.11 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in media_kit (overridden) ! media_kit_libs_android_video 1.3.7 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in libs/android/media_kit_libs_android_video (overridden) ! media_kit_libs_video 1.0.5 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in libs/universal/media_kit_libs_video (overridden) ! media_kit_libs_windows_video 1.0.10 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in libs/windows/media_kit_libs_windows_video (overridden) ! media_kit_native_event_loop 1.0.9 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in media_kit_native_event_loop (overridden) ! media_kit_video 1.2.5 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in media_kit_video (overridden) ! mime 2.0.0 (overridden) ! path 1.9.1 (overridden) pointycastle 3.9.1 (4.0.0 available) ! rxdart 0.28.0 (overridden) ! screen_brightness_android 2.1.3 (overridden) ! screen_brightness_ios 2.1.2 (overridden) ! screen_brightness_platform_interface 2.1.0 (overridden) test_api 0.7.7 (0.7.8 available) watcher 1.1.4 (1.2.0 available) Got dependencies! 8 packages have newer versions incompatible with dependency constraints. Try `flutter pub outdated` for more information. [ +649 ms] Found plugin flutter_native_splash at /home/runner/.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.7/ [ +45 ms] Found plugin window_manager at /home/runner/.pub-cache/git/window_manager-974ab0a71d37cfca9d9bd5b295d7bd1df80b790b/packages/window_manager/ [ +2 ms] Found plugin screen_retriever at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever-0.2.0/ [ ] Found plugin screen_retriever_windows at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_windows-0.2.0/ [ +2 ms] Found plugin screen_retriever_macos at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_macos-0.2.0/ [ ] Found plugin screen_retriever_linux at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_linux-0.2.0/ [ +4 ms] Found plugin wakelock_plus at /home/runner/.pub-cache/hosted/pub.dev/wakelock_plus-1.4.0/ [ +2 ms] Found plugin package_info_plus at /home/runner/.pub-cache/hosted/pub.dev/package_info_plus-9.0.0/ [ +4 ms] Found plugin url_launcher at /home/runner/.pub-cache/hosted/pub.dev/url_launcher-6.3.2/ [ ] Found plugin url_launcher_windows at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.5/ [ +1 ms] Found plugin url_launcher_web at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_web-2.4.1/ [ ] Found plugin url_launcher_macos at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_macos-3.2.5/ [ ] Found plugin url_launcher_linux at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.2/ [ ] Found plugin url_launcher_ios at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.6/ [ ] Found plugin url_launcher_android at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_android-6.3.28/ [ ] Found plugin tray_manager at /home/runner/.pub-cache/hosted/pub.dev/tray_manager-0.5.2/ [ +4 ms] Found plugin share_plus at /home/runner/.pub-cache/hosted/pub.dev/share_plus-12.0.1/ [ +1 ms] Found plugin path_provider at /home/runner/.pub-cache/hosted/pub.dev/path_provider-2.1.5/ [ ] Found plugin path_provider_windows at /home/runner/.pub-cache/hosted/pub.dev/path_provider_windows-2.3.0/ [ +2 ms] Found plugin path_provider_linux at /home/runner/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/ [ +1 ms] Found plugin path_provider_foundation at /home/runner/.pub-cache/hosted/pub.dev/path_provider_foundation-2.5.1/ [ ] Found plugin path_provider_android at /home/runner/.pub-cache/hosted/pub.dev/path_provider_android-2.2.22/ [ +2 ms] Found plugin saver_gallery at /home/runner/.pub-cache/hosted/pub.dev/saver_gallery-4.1.0/ [ +4 ms] Found plugin permission_handler_apple at /home/runner/.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ [ ] Found plugin permission_handler_android at /home/runner/.pub-cache/hosted/pub.dev/permission_handler_android-13.0.1/ [ +1 ms] Found plugin media_kit_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/media_kit_video/ [ +2 ms] Found plugin screen_brightness_ios at /home/runner/.pub-cache/hosted/pub.dev/screen_brightness_ios-2.1.2/ [ +1 ms] Found plugin screen_brightness_android at /home/runner/.pub-cache/hosted/pub.dev/screen_brightness_android-2.1.3/ [ +3 ms] Found plugin flutter_volume_controller at /home/runner/.pub-cache/hosted/pub.dev/flutter_volume_controller-1.3.4/ [ +1 ms] Found plugin flutter_plugin_android_lifecycle at /home/runner/.pub-cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.33/ [ +1 ms] Found plugin media_kit_native_event_loop at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/media_kit_native_event_loop/ [ +1 ms] Found plugin media_kit_libs_windows_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/libs/windows/media_kit_libs_windows_video/ [ ] Found plugin media_kit_libs_macos_video at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_macos_video-1.1.4/ [ ] Found plugin media_kit_libs_linux at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_linux-1.2.1/ [ ] Found plugin media_kit_libs_ios_video at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_ios_video-1.1.4/ [ ] Found plugin media_kit_libs_android_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/libs/android/media_kit_libs_android_video/ [ +2 ms] Found plugin live_photo_maker at /home/runner/.pub-cache/hosted/pub.dev/live_photo_maker-0.0.6/ [ +1 ms] Found plugin image_picker at /home/runner/.pub-cache/hosted/pub.dev/image_picker-1.2.1/ [ ] Found plugin image_picker_windows at /home/runner/.pub-cache/hosted/pub.dev/image_picker_windows-0.2.2/ [ +1 ms] Found plugin file_selector_windows at /home/runner/.pub-cache/hosted/pub.dev/file_selector_windows-0.9.3+5/ [ +1 ms] Found plugin image_picker_macos at /home/runner/.pub-cache/hosted/pub.dev/image_picker_macos-0.2.2+1/ [ +1 ms] Found plugin file_selector_macos at /home/runner/.pub-cache/hosted/pub.dev/file_selector_macos-0.9.5/ [ ] Found plugin image_picker_linux at /home/runner/.pub-cache/hosted/pub.dev/image_picker_linux-0.2.2/ [ ] Found plugin file_selector_linux at /home/runner/.pub-cache/hosted/pub.dev/file_selector_linux-0.9.4/ [ +1 ms] Found plugin image_picker_ios at /home/runner/.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+3/ [ ] Found plugin image_picker_for_web at /home/runner/.pub-cache/hosted/pub.dev/image_picker_for_web-3.1.1/ [ ] Found plugin image_picker_android at /home/runner/.pub-cache/hosted/pub.dev/image_picker_android-0.8.13+10/ [ +1 ms] Found plugin image_cropper at /home/runner/.pub-cache/hosted/pub.dev/image_cropper-11.0.0/ [ +1 ms] Found plugin image_cropper_for_web at /home/runner/.pub-cache/hosted/pub.dev/image_cropper_for_web-7.0.0/ [ +2 ms] Found plugin gt3_flutter_plugin at /home/runner/.pub-cache/hosted/pub.dev/gt3_flutter_plugin-0.1.1/ [ +7 ms] Found plugin flutter_inappwebview at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview-6.1.5/ [ +1 ms] Found plugin flutter_inappwebview_windows at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_windows-0.6.0/ [ +1 ms] Found plugin flutter_inappwebview_web at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_web-1.1.2/ [ ] Found plugin flutter_inappwebview_macos at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_macos-1.1.2/ [ ] Found plugin flutter_inappwebview_ios at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_ios-1.1.2/ [ ] Found plugin flutter_inappwebview_android at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_android-1.1.3/ [ +2 ms] Found plugin flutter_displaymode at /home/runner/.pub-cache/hosted/pub.dev/flutter_displaymode-0.7.0/ [ +1 ms] Found plugin sqflite at /home/runner/.pub-cache/hosted/pub.dev/sqflite-2.4.2/ [ +1 ms] Found plugin sqflite_darwin at /home/runner/.pub-cache/hosted/pub.dev/sqflite_darwin-2.4.2/ [ ] Found plugin sqflite_android at /home/runner/.pub-cache/hosted/pub.dev/sqflite_android-2.4.2+2/ [ +1 ms] Found plugin floating at /home/runner/.pub-cache/git/floating-a66ec0b9dabde6b5880a3f4f3425e57842a38e51/ [ +3 ms] Found plugin file_picker at /home/runner/.pub-cache/git/flutter_file_picker-4c03c3413a915fa82f58d4591bfe3b62709a6edf/ [ +4 ms] Found plugin dynamic_color at /home/runner/.pub-cache/hosted/pub.dev/dynamic_color-1.8.1/ [ +4 ms] Found plugin device_info_plus at /home/runner/.pub-cache/hosted/pub.dev/device_info_plus-12.3.0/ [ +3 ms] Found plugin connectivity_plus at /home/runner/.pub-cache/hosted/pub.dev/connectivity_plus-7.0.0/ [ +1 ms] Found plugin chat_bottom_container at /home/runner/.pub-cache/git/flutter_chat_packages-acccababf698ef1712031c383ea4b7ff54ae630c/packages/chat_bottom_container/ [ ] Found plugin shared_preferences at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences-2.5.4/ [ ] Found plugin shared_preferences_windows at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_windows-2.4.1/ [ +1 ms] Found plugin shared_preferences_web at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_web-2.4.3/ [ ] Found plugin shared_preferences_linux at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_linux-2.4.1/ [ ] Found plugin shared_preferences_foundation at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.6/ [ ] Found plugin shared_preferences_android at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_android-2.4.18/ [ +2 ms] Found plugin fluttertoast at /home/runner/.pub-cache/hosted/pub.dev/fluttertoast-9.0.0/ [ ] Found plugin flutter_mailer at /home/runner/.pub-cache/hosted/pub.dev/flutter_mailer-3.0.1/ [ +4 ms] Found plugin battery_plus at /home/runner/.pub-cache/hosted/pub.dev/battery_plus-7.0.0/ [ +1 ms] Found plugin auto_orientation at /home/runner/.pub-cache/git/auto_orientation-ca2bb137bd0e4b221df3bc5ba1492d2902c78624/ [ ] Found plugin audio_session at /home/runner/.pub-cache/hosted/pub.dev/audio_session-0.2.2/ [ ] Found plugin audio_service at /home/runner/.pub-cache/hosted/pub.dev/audio_service-0.18.18/ [ ] Found plugin audio_service_web at /home/runner/.pub-cache/hosted/pub.dev/audio_service_web-0.1.4/ [ +1 ms] Found plugin app_links at /home/runner/.pub-cache/hosted/pub.dev/app_links-7.0.0/ [ ] Found plugin app_links_web at /home/runner/.pub-cache/hosted/pub.dev/app_links_web-1.0.4/ [ +1 ms] Found plugin app_links_linux at /home/runner/.pub-cache/hosted/pub.dev/app_links_linux-1.0.3/ [ ] Found plugin gtk at /home/runner/.pub-cache/hosted/pub.dev/gtk-2.1.0/ [ +76 ms] Found plugin flutter_native_splash at /home/runner/.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.7/ [ +26 ms] Found plugin window_manager at /home/runner/.pub-cache/git/window_manager-974ab0a71d37cfca9d9bd5b295d7bd1df80b790b/packages/window_manager/ [ ] Found plugin screen_retriever at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever-0.2.0/ [ ] Found plugin screen_retriever_windows at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_windows-0.2.0/ [ +1 ms] Found plugin screen_retriever_macos at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_macos-0.2.0/ [ ] Found plugin screen_retriever_linux at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_linux-0.2.0/ [ +3 ms] Found plugin wakelock_plus at /home/runner/.pub-cache/hosted/pub.dev/wakelock_plus-1.4.0/ [ +1 ms] Found plugin package_info_plus at /home/runner/.pub-cache/hosted/pub.dev/package_info_plus-9.0.0/ [ +2 ms] Found plugin url_launcher at /home/runner/.pub-cache/hosted/pub.dev/url_launcher-6.3.2/ [ ] Found plugin url_launcher_windows at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.5/ [ +1 ms] Found plugin url_launcher_web at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_web-2.4.1/ [ ] Found plugin url_launcher_macos at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_macos-3.2.5/ [ ] Found plugin url_launcher_linux at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.2/ [ ] Found plugin url_launcher_ios at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.6/ [ ] Found plugin url_launcher_android at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_android-6.3.28/ [ ] Found plugin tray_manager at /home/runner/.pub-cache/hosted/pub.dev/tray_manager-0.5.2/ [ +2 ms] Found plugin share_plus at /home/runner/.pub-cache/hosted/pub.dev/share_plus-12.0.1/ [ +1 ms] Found plugin path_provider at /home/runner/.pub-cache/hosted/pub.dev/path_provider-2.1.5/ [ ] Found plugin path_provider_windows at /home/runner/.pub-cache/hosted/pub.dev/path_provider_windows-2.3.0/ [ +1 ms] Found plugin path_provider_linux at /home/runner/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/ [ +1 ms] Found plugin path_provider_foundation at /home/runner/.pub-cache/hosted/pub.dev/path_provider_foundation-2.5.1/ [ ] Found plugin path_provider_android at /home/runner/.pub-cache/hosted/pub.dev/path_provider_android-2.2.22/ [ +1 ms] Found plugin saver_gallery at /home/runner/.pub-cache/hosted/pub.dev/saver_gallery-4.1.0/ [ +3 ms] Found plugin permission_handler_apple at /home/runner/.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ [ ] Found plugin permission_handler_android at /home/runner/.pub-cache/hosted/pub.dev/permission_handler_android-13.0.1/ [ ] Found plugin media_kit_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/media_kit_video/ [ ] Found plugin screen_brightness_ios at /home/runner/.pub-cache/hosted/pub.dev/screen_brightness_ios-2.1.2/ [ ] Found plugin screen_brightness_android at /home/runner/.pub-cache/hosted/pub.dev/screen_brightness_android-2.1.3/ [ +2 ms] Found plugin flutter_volume_controller at /home/runner/.pub-cache/hosted/pub.dev/flutter_volume_controller-1.3.4/ [ ] Found plugin flutter_plugin_android_lifecycle at /home/runner/.pub-cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.33/ [ +1 ms] Found plugin media_kit_native_event_loop at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/media_kit_native_event_loop/ [ ] Found plugin media_kit_libs_windows_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/libs/windows/media_kit_libs_windows_video/ [ ] Found plugin media_kit_libs_macos_video at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_macos_video-1.1.4/ [ ] Found plugin media_kit_libs_linux at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_linux-1.2.1/ [ ] Found plugin media_kit_libs_ios_video at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_ios_video-1.1.4/ [ ] Found plugin media_kit_libs_android_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/libs/android/media_kit_libs_android_video/ [ +1 ms] Found plugin live_photo_maker at /home/runner/.pub-cache/hosted/pub.dev/live_photo_maker-0.0.6/ [ +1 ms] Found plugin image_picker at /home/runner/.pub-cache/hosted/pub.dev/image_picker-1.2.1/ [ ] Found plugin image_picker_windows at /home/runner/.pub-cache/hosted/pub.dev/image_picker_windows-0.2.2/ [ +1 ms] Found plugin file_selector_windows at /home/runner/.pub-cache/hosted/pub.dev/file_selector_windows-0.9.3+5/ [ +1 ms] Found plugin image_picker_macos at /home/runner/.pub-cache/hosted/pub.dev/image_picker_macos-0.2.2+1/ [ ] Found plugin file_selector_macos at /home/runner/.pub-cache/hosted/pub.dev/file_selector_macos-0.9.5/ [ ] Found plugin image_picker_linux at /home/runner/.pub-cache/hosted/pub.dev/image_picker_linux-0.2.2/ [ ] Found plugin file_selector_linux at /home/runner/.pub-cache/hosted/pub.dev/file_selector_linux-0.9.4/ [ ] Found plugin image_picker_ios at /home/runner/.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+3/ [ ] Found plugin image_picker_for_web at /home/runner/.pub-cache/hosted/pub.dev/image_picker_for_web-3.1.1/ [ ] Found plugin image_picker_android at /home/runner/.pub-cache/hosted/pub.dev/image_picker_android-0.8.13+10/ [ ] Found plugin image_cropper at /home/runner/.pub-cache/hosted/pub.dev/image_cropper-11.0.0/ [ +1 ms] Found plugin image_cropper_for_web at /home/runner/.pub-cache/hosted/pub.dev/image_cropper_for_web-7.0.0/ [ +2 ms] Found plugin gt3_flutter_plugin at /home/runner/.pub-cache/hosted/pub.dev/gt3_flutter_plugin-0.1.1/ [ +5 ms] Found plugin flutter_inappwebview at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview-6.1.5/ [ ] Found plugin flutter_inappwebview_windows at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_windows-0.6.0/ [ +1 ms] Found plugin flutter_inappwebview_web at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_web-1.1.2/ [ ] Found plugin flutter_inappwebview_macos at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_macos-1.1.2/ [ ] Found plugin flutter_inappwebview_ios at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_ios-1.1.2/ [ ] Found plugin flutter_inappwebview_android at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_android-1.1.3/ [ +1 ms] Found plugin flutter_displaymode at /home/runner/.pub-cache/hosted/pub.dev/flutter_displaymode-0.7.0/ [ +1 ms] Found plugin sqflite at /home/runner/.pub-cache/hosted/pub.dev/sqflite-2.4.2/ [ +1 ms] Found plugin sqflite_darwin at /home/runner/.pub-cache/hosted/pub.dev/sqflite_darwin-2.4.2/ [ ] Found plugin sqflite_android at /home/runner/.pub-cache/hosted/pub.dev/sqflite_android-2.4.2+2/ [ +1 ms] Found plugin floating at /home/runner/.pub-cache/git/floating-a66ec0b9dabde6b5880a3f4f3425e57842a38e51/ [ +2 ms] Found plugin file_picker at /home/runner/.pub-cache/git/flutter_file_picker-4c03c3413a915fa82f58d4591bfe3b62709a6edf/ [ +4 ms] Found plugin dynamic_color at /home/runner/.pub-cache/hosted/pub.dev/dynamic_color-1.8.1/ [ +1 ms] Found plugin device_info_plus at /home/runner/.pub-cache/hosted/pub.dev/device_info_plus-12.3.0/ [ +3 ms] Found plugin connectivity_plus at /home/runner/.pub-cache/hosted/pub.dev/connectivity_plus-7.0.0/ [ +1 ms] Found plugin chat_bottom_container at /home/runner/.pub-cache/git/flutter_chat_packages-acccababf698ef1712031c383ea4b7ff54ae630c/packages/chat_bottom_container/ [ ] Found plugin shared_preferences at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences-2.5.4/ [ ] Found plugin shared_preferences_windows at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_windows-2.4.1/ [ +1 ms] Found plugin shared_preferences_web at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_web-2.4.3/ [ ] Found plugin shared_preferences_linux at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_linux-2.4.1/ [ ] Found plugin shared_preferences_foundation at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.6/ [ ] Found plugin shared_preferences_android at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_android-2.4.18/ [ +2 ms] Found plugin fluttertoast at /home/runner/.pub-cache/hosted/pub.dev/fluttertoast-9.0.0/ [ ] Found plugin flutter_mailer at /home/runner/.pub-cache/hosted/pub.dev/flutter_mailer-3.0.1/ [ +3 ms] Found plugin battery_plus at /home/runner/.pub-cache/hosted/pub.dev/battery_plus-7.0.0/ [ +1 ms] Found plugin auto_orientation at /home/runner/.pub-cache/git/auto_orientation-ca2bb137bd0e4b221df3bc5ba1492d2902c78624/ [ ] Found plugin audio_session at /home/runner/.pub-cache/hosted/pub.dev/audio_session-0.2.2/ [ ] Found plugin audio_service at /home/runner/.pub-cache/hosted/pub.dev/audio_service-0.18.18/ [ ] Found plugin audio_service_web at /home/runner/.pub-cache/hosted/pub.dev/audio_service_web-0.1.4/ [ +1 ms] Found plugin app_links at /home/runner/.pub-cache/hosted/pub.dev/app_links-7.0.0/ [ ] Found plugin app_links_web at /home/runner/.pub-cache/hosted/pub.dev/app_links_web-1.0.4/ [ ] Found plugin app_links_linux at /home/runner/.pub-cache/hosted/pub.dev/app_links_linux-1.0.3/ [ ] Found plugin gtk at /home/runner/.pub-cache/hosted/pub.dev/gtk-2.1.0/ [ +8 ms] Generating /home/runner/work/PiliPlus/PiliPlus/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java [ +45 ms] Building Linux application... [ +3 ms] executing: [/home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/] cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DFLUTTER_TARGET_PLATFORM=linux-x64 /home/runner/work/PiliPlus/PiliPlus/linux [+2121 ms] -- The CXX compiler identification is Clang 18.1.3 [ +99 ms] -- Detecting CXX compiler ABI info [ +169 ms] -- Detecting CXX compiler ABI info - done [ +13 ms] -- Check for working CXX compiler: /usr/bin/clang++ - skipped [ +4 ms] -- Detecting CXX compile features [ +1 ms] -- Detecting CXX compile features - done [ +21 ms] -- Found PkgConfig: /usr/bin/pkg-config (found version "1.8.1") [ ] -- Checking for module 'gtk+-3.0' [ +42 ms] -- Found gtk+-3.0, version 3.24.41 [ +189 ms] -- Checking for module 'glib-2.0' [ +8 ms] -- Found glib-2.0, version 2.80.0 [ +20 ms] -- Checking for module 'gio-2.0' [ +8 ms] -- Found gio-2.0, version 2.80.0 [ +45 ms] -- Found ALSA: /usr/lib/x86_64-linux-gnu/libasound.so (found version "1.2.11") [ ] /usr/lib/x86_64-linux-gnu/libasound.so [ +1 ms] -- Downloading archive from https://github.com/microsoft/mimalloc/archive/refs/tags/v2.1.2.tar.gz... [ +417 ms] -- Downloaded archive to /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/mimalloc-2.1.2.tar.gz. [ +2 ms] -- /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/mimalloc-2.1.2.tar.gz Verification successful. [ ] -- Directory /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/mimalloc does not exist! [ ] -- Extracting mimalloc-2.1.2.tar.gz... [ +5 ms] -- Checking for module 'mpv' [ +15 ms] -- Found mpv, version 2.2.0 [ +70 ms] -- Checking for module 'epoxy' [ +9 ms] -- Found epoxy, version 1.5.10 [ +29 ms] -- Checking for module 'ayatana-appindicator3-0.1' [ +26 ms] -- Found ayatana-appindicator3-0.1, version 0.5.90 [ +482 ms] -- Configuring done (3.5s) [ +61 ms] -- Generating done (0.1s) [ ] -- Build files have been written to: /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release [ +8 ms] executing: ninja -C /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release install [ +5 ms] ninja: Entering directory `/home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release' [+3372 ms] [1/39] Building CXX object plugins/media_kit_native_event_loop/shared/CMakeFiles/media_kit_native_event_loop.dir/media_kit_native_event_loop.cc.o [ +75 ms] [2/39] Linking CXX shared library plugins/media_kit_native_event_loop/shared/libmedia_kit_native_event_loop.so [+7422 ms] [3/39] Generating ../../mimalloc/out/release/mimalloc.o [ ] -- The C compiler identification is GNU 13.3.0 [ ] -- The CXX compiler identification is GNU 13.3.0 [ ] -- Detecting C compiler ABI info [ ] -- Detecting C compiler ABI info - done [ ] -- Check for working C compiler: /usr/bin/cc - skipped [ ] -- Detecting C compile features [ ] -- Detecting C compile features - done [ ] -- Detecting CXX compiler ABI info [ ] -- Detecting CXX compiler ABI info - done [ ] -- Check for working CXX compiler: /usr/bin/c++ - skipped [ ] -- Detecting CXX compile features [ ] -- Detecting CXX compile features - done [ ] -- [ ] -- No build type selected, default to: Release [ ] -- Override standard malloc (MI_OVERRIDE=ON) [ ] -- [ ] -- Library base name: mimalloc [ ] -- Version : 2.1 [ ] -- Build type : release [ ] -- C Compiler : /usr/bin/cc [ ] -- Compiler flags : -Wall;-Wextra;-Wno-unknown-pragmas;-fvisibility=hidden;-Wstrict-prototypes;-ftls-model=initial-exec;-fno-builtin-malloc [ ] -- Compiler defines : [ ] -- Link libraries : /usr/lib/x86_64-linux-gnu/libpthread.a;/usr/lib/x86_64-linux-gnu/librt.a [ ] -- Build targets : shared;static;object;tests [ ] -- [ ] -- Configuring done (0.6s) [ ] -- Generating done (0.0s) [ ] -- Build files have been written to: /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/mimalloc/out/release [ ] [ 2%] Building C object CMakeFiles/mimalloc.dir/src/alloc.c.o [ ] [ 5%] Building C object CMakeFiles/mimalloc.dir/src/alloc-aligned.c.o [ ] [ 7%] Building C object CMakeFiles/mimalloc.dir/src/alloc-posix.c.o [ ] [ 10%] Building C object CMakeFiles/mimalloc.dir/src/arena.c.o [ ] [ 12%] Building C object CMakeFiles/mimalloc.dir/src/bitmap.c.o [ ] [ 15%] Building C object CMakeFiles/mimalloc.dir/src/heap.c.o [ ] [ 17%] Building C object CMakeFiles/mimalloc.dir/src/init.c.o [ ] [ 20%] Building C object CMakeFiles/mimalloc.dir/src/options.c.o [ ] [ 22%] Building C object CMakeFiles/mimalloc.dir/src/os.c.o [ ] [ 25%] Building C object CMakeFiles/mimalloc.dir/src/page.c.o [ ] [ 27%] Building C object CMakeFiles/mimalloc.dir/src/random.c.o [ ] [ 30%] Building C object CMakeFiles/mimalloc.dir/src/segment.c.o [ ] [ 32%] Building C object CMakeFiles/mimalloc.dir/src/segment-map.c.o [ ] [ 35%] Building C object CMakeFiles/mimalloc.dir/src/stats.c.o [ ] [ 37%] Building C object CMakeFiles/mimalloc.dir/src/prim/prim.c.o [ ] [ 40%] Linking C shared library libmimalloc.so [ ] [ 40%] Built target mimalloc [ ] [ 42%] Building C object CMakeFiles/mimalloc-static.dir/src/alloc.c.o [ ] [ 45%] Building C object CMakeFiles/mimalloc-static.dir/src/alloc-aligned.c.o [ ] [ 47%] Building C object CMakeFiles/mimalloc-static.dir/src/alloc-posix.c.o [ ] [ 50%] Building C object CMakeFiles/mimalloc-static.dir/src/arena.c.o [ ] [ 52%] Building C object CMakeFiles/mimalloc-static.dir/src/bitmap.c.o [ ] [ 55%] Building C object CMakeFiles/mimalloc-static.dir/src/heap.c.o [ ] [ 57%] Building C object CMakeFiles/mimalloc-static.dir/src/init.c.o [ ] [ 60%] Building C object CMakeFiles/mimalloc-static.dir/src/options.c.o [ ] [ 62%] Building C object CMakeFiles/mimalloc-static.dir/src/os.c.o [ ] [ 65%] Building C object CMakeFiles/mimalloc-static.dir/src/page.c.o [ ] [ 67%] Building C object CMakeFiles/mimalloc-static.dir/src/random.c.o [ ] [ 70%] Building C object CMakeFiles/mimalloc-static.dir/src/segment.c.o [ ] [ 72%] Building C object CMakeFiles/mimalloc-static.dir/src/segment-map.c.o [ ] [ 75%] Building C object CMakeFiles/mimalloc-static.dir/src/stats.c.o [ ] [ 77%] Building C object CMakeFiles/mimalloc-static.dir/src/prim/prim.c.o [ ] [ 80%] Linking C static library libmimalloc.a [ ] [ 80%] Built target mimalloc-static [ ] [ 82%] Building C object CMakeFiles/mimalloc-obj.dir/src/static.c.o [ ] [ 82%] Built target mimalloc-obj [ ] [ 85%] Generating mimalloc.o [ ] [ 85%] Built target mimalloc-obj-target [ ] [ 87%] Building C object CMakeFiles/mimalloc-test-api.dir/test/test-api.c.o [ ] [ 90%] Linking C executable mimalloc-test-api [ ] [ 90%] Built target mimalloc-test-api [ ] [ 92%] Building C object CMakeFiles/mimalloc-test-api-fill.dir/test/test-api-fill.c.o [ ] [ 95%] Linking C executable mimalloc-test-api-fill [ ] [ 95%] Built target mimalloc-test-api-fill [ ] [ 97%] Building C object CMakeFiles/mimalloc-test-stress.dir/test/test-stress.c.o [ ] [100%] Linking C executable mimalloc-test-stress [ ] [100%] Built target mimalloc-test-stress [+14508 ms] [4/39] Generating /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/libflutter_linux_gtk.so, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_basic_message_channel.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_binary_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_binary_messenger.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_dart_project.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_engine.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_json_message_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_json_method_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_message_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_call.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_channel.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_response.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_plugin_registrar.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_plugin_registry.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_standard_message_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_standard_method_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_string_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_value.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_view.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/flutter_linux.h, _phony_ [ +4 ms] FAILED: [code=1] /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/libflutter_linux_gtk.so /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_basic_message_channel.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_binary_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_binary_messenger.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_dart_project.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_engine.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_json_message_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_json_method_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_message_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_call.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_channel.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_response.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_plugin_registrar.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_plugin_registry.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_standard_message_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_standard_method_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_string_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_value.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_view.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/flutter_linux.h flutter/_phony_ /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/flutter/_phony_ [ +1 ms] cd /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/flutter && /usr/local/bin/cmake -E env FLUTTER_ROOT=/opt/hostedtoolcache/flutter/stable-3.38.4-x64 PROJECT_DIR=/home/runner/work/PiliPlus/PiliPlus DART_DEFINES=cGlsaS50aW1lPTE3NjU3MjUzNDY=,cGlsaS5uYW1lPTEuMS41,cGlsaS5oYXNoPTcyMjY4MmFlZjFhYjAwYWY3ODZiZjgyZWJhOWZkNWZjZWI4NmNjNDE=,cGlsaS5jb2RlPTQ1MDQ=,RkxVVFRFUl9WRVJTSU9OPTMuMzguNA==,RkxVVFRFUl9DSEFOTkVMPXN0YWJsZQ==,RkxVVFRFUl9HSVRfVVJMPWh0dHBzOi8vZ2l0aHViLmNvbS9mbHV0dGVyL2ZsdXR0ZXIuZ2l0,RkxVVFRFUl9GUkFNRVdPUktfUkVWSVNJT049NjZkZDkzZjlhMg==,RkxVVFRFUl9FTkdJTkVfUkVWSVNJT049YTVjYjk2MzY5ZQ==,RkxVVFRFUl9EQVJUX1ZFUlNJT049My4xMC4z DART_OBFUSCATION=false TRACK_WIDGET_CREATION=true TREE_SHAKE_ICONS=true PACKAGE_CONFIG=/home/runner/work/PiliPlus/PiliPlus/.dart_tool/package_config.json FLUTTER_TARGET=lib/main.dart /opt/hostedtoolcache/flutter/stable-3.38.4-x64/packages/flutter_tools/bin/tool_backend.sh linux-x64 Release [ ] [ +41 ms] executing: uname -m [ ] [ +8 ms] Exit code 0 from: uname -m [ ] [ ] x86_64 [ ] [ +12 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update. [ ] [ ] Artifact Instance of 'GradleWrapper' is not required, skipping update. [ ] [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update. [ ] [ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'PubDependencies' is not required, skipping update. [ ] [ +9 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterEngineStamp' is not required, skipping update. [ ] [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ ] [ +1 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ ] [ +70 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update. [ ] [ ] Artifact Instance of 'GradleWrapper' is not required, skipping update. [ ] [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterEngineStamp' is not required, skipping update. [ ] [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update. [ ] [ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] [ +1 ms] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'PubDependencies' is not required, skipping update. [ ] [ +29 ms] Initializing file store [ ] [ +38 ms] dart_build: Starting due to {} [ ] [ +1 ms] Skipping target: gen_localizations [ ] [ +2 ms] gen_dart_plugin_registrant: Starting due to {InvalidatedReasonKind.inputChanged: The following inputs have updated contents: /home/runner/work/PiliPlus/PiliPlus/.dart_tool/package_config.json} [ ] [ +6 ms] unpack_linux: Starting due to {} [ ] [ +83 ms] unpack_linux: Complete [ ] [ +530 ms] Found plugin flutter_native_splash at /home/runner/.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.7/ [ ] [ +43 ms] No packages with native assets. Skipping native assets compilation. [ ] [ +1 ms] dart_build: Complete [ ] [ +1 ms] install_code_assets: Starting due to {} [ ] [ +7 ms] Writing native assets json to file:///home/runner/work/PiliPlus/PiliPlus/.dart_tool/flutter_build/46c9eef68f2c930f2c9d0b2de18858fa/native_assets.json. [ ] [ +2 ms] Writing /home/runner/work/PiliPlus/PiliPlus/.dart_tool/flutter_build/46c9eef68f2c930f2c9d0b2de18858fa/native_assets.json done. [ ] [ ] install_code_assets: Complete [ ] [ +16 ms] Found plugin window_manager at /home/runner/.pub-cache/git/window_manager-974ab0a71d37cfca9d9bd5b295d7bd1df80b790b/packages/window_manager/ [ ] [ +2 ms] Found plugin screen_retriever at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever-0.2.0/ [ ] [ ] Found plugin screen_retriever_windows at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_windows-0.2.0/ [ ] [ +1 ms] Found plugin screen_retriever_macos at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_macos-0.2.0/ [ ] [ +1 ms] Found plugin screen_retriever_linux at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_linux-0.2.0/ [ +1 ms] [ +5 ms] Found plugin wakelock_plus at /home/runner/.pub-cache/hosted/pub.dev/wakelock_plus-1.4.0/ [ ] [ +3 ms] Found plugin package_info_plus at /home/runner/.pub-cache/hosted/pub.dev/package_info_plus-9.0.0/ [ ] [ +4 ms] Found plugin url_launcher at /home/runner/.pub-cache/hosted/pub.dev/url_launcher-6.3.2/ [ ] [ +1 ms] Found plugin url_launcher_windows at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.5/ [ ] [ +1 ms] Found plugin url_launcher_web at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_web-2.4.1/ [ ] [ +1 ms] Found plugin url_launcher_macos at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_macos-3.2.5/ [ ] [ +1 ms] Found plugin url_launcher_linux at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.2/ [ ] [ +1 ms] Found plugin url_launcher_ios at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.6/ [ ] [ +1 ms] Found plugin url_launcher_android at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_android-6.3.28/ [ ] [ +1 ms] Found plugin tray_manager at /home/runner/.pub-cache/hosted/pub.dev/tray_manager-0.5.2/ [ ] [ +6 ms] Found plugin share_plus at /home/runner/.pub-cache/hosted/pub.dev/share_plus-12.0.1/ [ ] [ +3 ms] Found plugin path_provider at /home/runner/.pub-cache/hosted/pub.dev/path_provider-2.1.5/ [ ] [ +1 ms] Found plugin path_provider_windows at /home/runner/.pub-cache/hosted/pub.dev/path_provider_windows-2.3.0/ [ ] [ +2 ms] Found plugin path_provider_linux at /home/runner/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/ [ ] [ +1 ms] Found plugin path_provider_foundation at /home/runner/.pub-cache/hosted/pub.dev/path_provider_foundation-2.5.1/ [ ] [ +1 ms] Found plugin path_provider_android at /home/runner/.pub-cache/hosted/pub.dev/path_provider_android-2.2.22/ [ ] [ +2 ms] Found plugin saver_gallery at /home/runner/.pub-cache/hosted/pub.dev/saver_gallery-4.1.0/ [ ] [ +4 ms] Found plugin permission_handler_apple at /home/runner/.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ [ ] [ +1 ms] Found plugin permission_handler_android at /home/runner/.pub-cache/hosted/pub.dev/permission_handler_android-13.0.1/ [ ] [ +1 ms] Found plugin media_kit_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/media_kit_video/ [ ] [ +1 ms] Found plugin screen_brightness_ios at /home/runner/.pub-cache/hosted/pub.dev/screen_brightness_ios-2.1.2/ [ ] [ +2 ms] Found plugin screen_brightness_android at /home/runner/.pub-cache/hosted/pub.dev/screen_brightness_android-2.1.3/ [ ] [ +5 ms] Found plugin flutter_volume_controller at /home/runner/.pub-cache/hosted/pub.dev/flutter_volume_controller-1.3.4/ [ ] [ +1 ms] Found plugin flutter_plugin_android_lifecycle at /home/runner/.pub-cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.33/ [ ] [ +2 ms] Found plugin media_kit_native_event_loop at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/media_kit_native_event_loop/ [ ] [ +1 ms] Found plugin media_kit_libs_windows_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/libs/windows/media_kit_libs_windows_video/ [ ] [ +1 ms] Found plugin media_kit_libs_macos_video at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_macos_video-1.1.4/ [ ] [ +1 ms] Found plugin media_kit_libs_linux at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_linux-1.2.1/ [ ] [ +1 ms] Found plugin media_kit_libs_ios_video at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_ios_video-1.1.4/ [ ] [ +1 ms] Found plugin media_kit_libs_android_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/libs/android/media_kit_libs_android_video/ [ ] [ +3 ms] Found plugin live_photo_maker at /home/runner/.pub-cache/hosted/pub.dev/live_photo_maker-0.0.6/ [ ] [ +2 ms] Found plugin image_picker at /home/runner/.pub-cache/hosted/pub.dev/image_picker-1.2.1/ [ ] [ +1 ms] Found plugin image_picker_windows at /home/runner/.pub-cache/hosted/pub.dev/image_picker_windows-0.2.2/ [ ] [ +2 ms] Found plugin file_selector_windows at /home/runner/.pub-cache/hosted/pub.dev/file_selector_windows-0.9.3+5/ [ ] [ +2 ms] Found plugin image_picker_macos at /home/runner/.pub-cache/hosted/pub.dev/image_picker_macos-0.2.2+1/ [ ] [ +1 ms] Found plugin file_selector_macos at /home/runner/.pub-cache/hosted/pub.dev/file_selector_macos-0.9.5/ [ ] [ +1 ms] Found plugin image_picker_linux at /home/runner/.pub-cache/hosted/pub.dev/image_picker_linux-0.2.2/ [ ] [ +1 ms] Found plugin file_selector_linux at /home/runner/.pub-cache/hosted/pub.dev/file_selector_linux-0.9.4/ [ ] [ +1 ms] Found plugin image_picker_ios at /home/runner/.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+3/ [ ] [ +1 ms] Found plugin image_picker_for_web at /home/runner/.pub-cache/hosted/pub.dev/image_picker_for_web-3.1.1/ [ ] [ +1 ms] Found plugin image_picker_android at /home/runner/.pub-cache/hosted/pub.dev/image_picker_android-0.8.13+10/ [ ] [ +2 ms] Found plugin image_cropper at /home/runner/.pub-cache/hosted/pub.dev/image_cropper-11.0.0/ [ ] [ +2 ms] Found plugin image_cropper_for_web at /home/runner/.pub-cache/hosted/pub.dev/image_cropper_for_web-7.0.0/ [ ] [ +4 ms] Found plugin gt3_flutter_plugin at /home/runner/.pub-cache/hosted/pub.dev/gt3_flutter_plugin-0.1.1/ [ ] [ +7 ms] Found plugin flutter_inappwebview at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview-6.1.5/ [ ] [ +1 ms] Found plugin flutter_inappwebview_windows at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_windows-0.6.0/ [ ] [ +2 ms] Found plugin flutter_inappwebview_web at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_web-1.1.2/ [ ] [ +1 ms] Found plugin flutter_inappwebview_macos at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_macos-1.1.2/ [ ] [ ] Found plugin flutter_inappwebview_ios at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_ios-1.1.2/ [ ] [ ] Found plugin flutter_inappwebview_android at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_android-1.1.3/ [ ] [ +1 ms] Found plugin flutter_displaymode at /home/runner/.pub-cache/hosted/pub.dev/flutter_displaymode-0.7.0/ [ ] [ +1 ms] Found plugin sqflite at /home/runner/.pub-cache/hosted/pub.dev/sqflite-2.4.2/ [ ] [ +1 ms] Found plugin sqflite_darwin at /home/runner/.pub-cache/hosted/pub.dev/sqflite_darwin-2.4.2/ [ ] [ ] Found plugin sqflite_android at /home/runner/.pub-cache/hosted/pub.dev/sqflite_android-2.4.2+2/ [ ] [ +1 ms] Found plugin floating at /home/runner/.pub-cache/git/floating-a66ec0b9dabde6b5880a3f4f3425e57842a38e51/ [ ] [ +4 ms] Found plugin file_picker at /home/runner/.pub-cache/git/flutter_file_picker-4c03c3413a915fa82f58d4591bfe3b62709a6edf/ [ ] [ +6 ms] Found plugin dynamic_color at /home/runner/.pub-cache/hosted/pub.dev/dynamic_color-1.8.1/ [ ] [ +2 ms] Found plugin device_info_plus at /home/runner/.pub-cache/hosted/pub.dev/device_info_plus-12.3.0/ [ ] [ +5 ms] Found plugin connectivity_plus at /home/runner/.pub-cache/hosted/pub.dev/connectivity_plus-7.0.0/ [ ] [ +1 ms] Found plugin chat_bottom_container at /home/runner/.pub-cache/git/flutter_chat_packages-acccababf698ef1712031c383ea4b7ff54ae630c/packages/chat_bottom_container/ [ ] [ ] Found plugin shared_preferences at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences-2.5.4/ [ ] [ ] Found plugin shared_preferences_windows at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_windows-2.4.1/ [ ] [ +1 ms] Found plugin shared_preferences_web at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_web-2.4.3/ [ ] [ ] Found plugin shared_preferences_linux at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_linux-2.4.1/ [ ] [ ] Found plugin shared_preferences_foundation at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.6/ [ ] [ +1 ms] Found plugin shared_preferences_android at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_android-2.4.18/ [ ] [ +3 ms] Found plugin fluttertoast at /home/runner/.pub-cache/hosted/pub.dev/fluttertoast-9.0.0/ [ ] [ +1 ms] Found plugin flutter_mailer at /home/runner/.pub-cache/hosted/pub.dev/flutter_mailer-3.0.1/ [ ] [ +4 ms] Found plugin battery_plus at /home/runner/.pub-cache/hosted/pub.dev/battery_plus-7.0.0/ [ ] [ +2 ms] Found plugin auto_orientation at /home/runner/.pub-cache/git/auto_orientation-ca2bb137bd0e4b221df3bc5ba1492d2902c78624/ [ ] [ ] Found plugin audio_session at /home/runner/.pub-cache/hosted/pub.dev/audio_session-0.2.2/ [ ] [ +1 ms] Found plugin audio_service at /home/runner/.pub-cache/hosted/pub.dev/audio_service-0.18.18/ [ ] [ ] Found plugin audio_service_web at /home/runner/.pub-cache/hosted/pub.dev/audio_service_web-0.1.4/ [ ] [ +1 ms] Found plugin app_links at /home/runner/.pub-cache/hosted/pub.dev/app_links-7.0.0/ [ ] [ +1 ms] Found plugin app_links_web at /home/runner/.pub-cache/hosted/pub.dev/app_links_web-1.0.4/ [ ] [ +1 ms] Found plugin app_links_linux at /home/runner/.pub-cache/hosted/pub.dev/app_links_linux-1.0.3/ [ ] [ +1 ms] Found plugin gtk at /home/runner/.pub-cache/hosted/pub.dev/gtk-2.1.0/ [ ] [ +23 ms] gen_dart_plugin_registrant: Complete [ ] [ +2 ms] kernel_snapshot_program: Starting due to {} [ +2 ms] [ +12 ms] /opt/hostedtoolcache/flutter/stable-3.38.4-x64/bin/cache/dart-sdk/bin/dartaotruntime /opt/hostedtoolcache/flutter/stable-3.38.4-x64/bin/cache/dart-sdk/bin/snapshots/frontend_server_aot.dart.snapshot --sdk-root /opt/hostedtoolcache/flutter/stable-3.38.4-x64/bin/cache/artifacts/engine/common/flutter_patched_sdk_product/ --target=flutter --no-print-incremental-dependencies -Dpili.time=1765725346 -Dpili.name=1.1.5 -Dpili.hash=722682aef1ab00af786bf82eba9fd5fceb86cc41 -Dpili.code=4504 -DFLUTTER_VERSION=3.38.4 -DFLUTTER_CHANNEL=stable -DFLUTTER_GIT_URL=https://github.com/flutter/flutter.git -DFLUTTER_FRAMEWORK_REVISION=66dd93f9a2 -DFLUTTER_ENGINE_REVISION=a5cb96369e -DFLUTTER_DART_VERSION=3.10.3 -Ddart.vm.profile=false -Ddart.vm.product=true --delete-tostring-package-uri=dart:ui --delete-tostring-package-uri=package:flutter --aot --tfa --target-os linux --packages /home/runner/work/PiliPlus/PiliPlus/.dart_tool/package_config.json --output-dill /home/runner/work/PiliPlus/PiliPlus/.dart_tool/flutter_build/46c9eef68f2c930f2c9d0b2de18858fa/app.dill --depfile /home/runner/work/PiliPlus/PiliPlus/.dart_tool/flutter_build/46c9eef68f2c930f2c9d0b2de18858fa/kernel_snapshot_program.d --source file:///home/runner/work/PiliPlus/PiliPlus/.dart_tool/flutter_build/dart_plugin_registrant.dart --source package:flutter/src/dart_plugin_registrant.dart -Dflutter.dart_plugin_registrant=file:///home/runner/work/PiliPlus/PiliPlus/.dart_tool/flutter_build/dart_plugin_registrant.dart --verbosity=error package:PiliPlus/main.dart [ ] [+11464 ms] lib/pages/video/widgets/header_control.dart:151:50: Error: Not a constant expression. [ +1 ms] [ +1 ms] child: Text('选择字幕', style: titleStyle), [ ] [ ] ^^^^^^^^^^ [ ] [ ] lib/pages/video/widgets/header_control.dart:136:5: Error: The method 'showBottomSheet' isn't defined for the type 'TimeBatteryMixin'. [ ] [ ] - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). [ ] [ ] Try correcting the name to the name of an existing method, or defining a method named 'showBottomSheet'. [ ] [ ] showBottomSheet( [ ] [ ] ^^^^^^^^^^^^^^^ [ ] [ ] lib/pages/video/widgets/header_control.dart:156:30: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. [ ] [ ] - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). [ ] [ ] Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. [ ] [ ] itemCount: videoDetailCtr.subtitles.length + 1, [ ] [ ] ^^^^^^^^^^^^^^ [ ] [ ] lib/pages/video/widgets/header_control.dart:158:44: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. [ ] [ ] - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). [ ] [ ] Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. [ ] [ ] final bool isCurrent = videoDetailCtr.subtitle.value == index; [ ] [ ] ^^^^^^^^^^^^^^ [ ] [ ] lib/pages/video/widgets/header_control.dart:170:29: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. [ ] [ ] - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). [ ] [ ] Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. [ ] [ ] : videoDetailCtr.subtitles[index - 1].lanDoc!), [ ] [ ] ^^^^^^^^^^^^^^ [ ] [ ] lib/pages/video/widgets/header_control.dart:163:25: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. [ ] [ ] - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). [ ] [ ] Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. [ ] [ ] videoDetailCtr.setSubtitle(index); [ ] [ ] ^^^^^^^^^^^^^^ [ ] [+12439 ms] Persisting file store [ ] [ +4 ms] Done persisting file store [ ] [ +3 ms] Target kernel_snapshot_program failed: Exception [ ] #0 KernelSnapshot.build (package:flutter_tools/src/build_system/targets/common.dart:289:7) [ ] [ ] #1 _BuildInstance._invokeInternal (package:flutter_tools/src/build_system/build_system.dart:895:9) [ ] [ ] #2 Future.wait. (dart:async/future.dart:546:21) [ ] [ ] #3 _BuildInstance.invokeTarget (package:flutter_tools/src/build_system/build_system.dart:833:32) [ ] [ ] #4 Future.wait. (dart:async/future.dart:546:21) [ ] [ ] #5 _BuildInstance.invokeTarget (package:flutter_tools/src/build_system/build_system.dart:833:32) [ ] [ ] #6 Future.wait. (dart:async/future.dart:546:21) [ ] [ ] #7 _BuildInstance.invokeTarget (package:flutter_tools/src/build_system/build_system.dart:833:32) [ ] [ ] #8 FlutterBuildSystem.build (package:flutter_tools/src/build_system/build_system.dart:653:16) [ ] [ ] #9 AssembleCommand.runCommand (package:flutter_tools/src/commands/assemble.dart:361:32) [ ] [ ] #10 FlutterCommand.run. (package:flutter_tools/src/runner/flutter_command.dart:1559:27) [ ] [ ] #11 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) [ ] [ ] #12 CommandRunner.runCommand (package:args/command_runner.dart:212:13) [ ] [ ] #13 FlutterCommandRunner.runCommand. (package:flutter_tools/src/runner/flutter_command_runner.dart:487:9) [ ] [ ] #14 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) [ ] [ ] #15 FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:422:5) [ ] [ ] #16 run.. (package:flutter_tools/runner.dart:104:11) [ ] [ ] #17 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) [ ] [ ] #18 main (package:flutter_tools/executable.dart:103:3) [ ] [ ] [ +1 ms] "flutter assemble" took 24,978ms. [ ] [ +8 ms] [ ] #0 throwToolExit (package:flutter_tools/src/base/common.dart:34:3) [ ] #1 AssembleCommand.runCommand (package:flutter_tools/src/commands/assemble.dart:379:7) [ ] [ ] #2 FlutterCommand.run. (package:flutter_tools/src/runner/flutter_command.dart:1559:27) [ ] [ ] #3 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) [ ] [ ] #4 CommandRunner.runCommand (package:args/command_runner.dart:212:13) [ ] [ ] #5 FlutterCommandRunner.runCommand. (package:flutter_tools/src/runner/flutter_command_runner.dart:487:9) [ ] [ ] #6 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) [ ] [ ] #7 FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:422:5) [ ] [ ] #8 run.. (package:flutter_tools/runner.dart:104:11) [ ] [ ] #9 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) [ ] [ ] #10 main (package:flutter_tools/executable.dart:103:3) [ ] [ ] [ ] Running 1 shutdown hook [ ] [ ] Shutdown hooks complete [ ] [ ] exiting with code 1 [ ] ninja: build stopped: subcommand failed. [ +4 ms] Building Linux application... (completed in 29.3s) [ ] "flutter linux" took 30,445ms. [ +8 ms] Build process failed [ ] #0 throwToolExit (package:flutter_tools/src/base/common.dart:34:3) #1 _runBuild (package:flutter_tools/src/linux/build_linux.dart:219:5) #2 buildLinux (package:flutter_tools/src/linux/build_linux.dart:100:5) #3 BuildLinuxCommand.runCommand (package:flutter_tools/src/commands/build_linux.dart:95:5) #4 FlutterCommand.run. (package:flutter_tools/src/runner/flutter_command.dart:1559:27) #5 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) #6 CommandRunner.runCommand (package:args/command_runner.dart:212:13) #7 FlutterCommandRunner.runCommand. (package:flutter_tools/src/runner/flutter_command_runner.dart:487:9) #8 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) #9 FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:422:5) #10 run.. (package:flutter_tools/runner.dart:104:11) #11 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) #12 main (package:flutter_tools/executable.dart:103:3)[ ] Running 1 shutdown hook |
|
❌ CI Check 失败 (Build Android) 点击展开错误详情``` Resolving dependencies... Downloading packages... characters 1.4.0 (1.4.1 available) ! font_awesome_flutter 10.9.0 (overridden) (10.12.0 available) image 4.5.4 (4.6.0 available) matcher 0.12.17 (0.12.18 available) material_color_utilities 0.11.1 (0.13.0 available) ! media_kit 1.1.11 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in media_kit (overridden) ! media_kit_libs_android_video 1.3.7 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in libs/android/media_kit_libs_android_video (overridden) ! media_kit_libs_video 1.0.5 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in libs/universal/media_kit_libs_video (overridden) ! media_kit_libs_windows_video 1.0.10 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in libs/windows/media_kit_libs_windows_video (overridden) ! media_kit_native_event_loop 1.0.9 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in media_kit_native_event_loop (overridden) ! media_kit_video 1.2.5 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in media_kit_video (overridden) ! mime 2.0.0 (overridden) ! path 1.9.1 (overridden) pointycastle 3.9.1 (4.0.0 available) ! rxdart 0.28.0 (overridden) ! screen_brightness_android 2.1.3 (overridden) ! screen_brightness_ios 2.1.2 (overridden) ! screen_brightness_platform_interface 2.1.0 (overridden) test_api 0.7.7 (0.7.8 available) watcher 1.1.4 (1.2.0 available) Got dependencies! 8 packages have newer versions incompatible with dependency constraints. Try `flutter pub outdated` for more information. Running Gradle task 'assembleRelease'... Downloading file from: https://github.com/My-Responsitories/libmpv-android-video-build/releases/download/vnext/default-arm64-v8a.jar Downloading file from: https://github.com/My-Responsitories/libmpv-android-video-build/releases/download/vnext/default-armeabi-v7a.jar Downloading file from: https://github.com/My-Responsitories/libmpv-android-video-build/releases/download/vnext/default-x86_64.jar Downloading file from: https://github.com/My-Responsitories/libmpv-android-video-build/releases/download/vnext/default-x86.jar Checking the license for package Android SDK Platform 31 in /usr/local/lib/android/sdk/licenses License for package Android SDK Platform 31 accepted. Preparing "Install Android SDK Platform 31 (revision 1)". "Install Android SDK Platform 31 (revision 1)" ready. Installing Android SDK Platform 31 in /usr/local/lib/android/sdk/platforms/android-31 "Install Android SDK Platform 31 (revision 1)" complete. "Install Android SDK Platform 31 (revision 1)" finished. lib/pages/video/widgets/header_control.dart:151:50: Error: Not a constant expression. child: Text('选择字幕', style: titleStyle), ^^^^^^^^^^ lib/pages/video/widgets/header_control.dart:136:5: Error: The method 'showBottomSheet' isn't defined for the type 'TimeBatteryMixin'. - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). Try correcting the name to the name of an existing method, or defining a method named 'showBottomSheet'. showBottomSheet( ^^^^^^^^^^^^^^^ lib/pages/video/widgets/header_control.dart:156:30: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. itemCount: videoDetailCtr.subtitles.length + 1, ^^^^^^^^^^^^^^ lib/pages/video/widgets/header_control.dart:158:44: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. final bool isCurrent = videoDetailCtr.subtitle.value == index; ^^^^^^^^^^^^^^ lib/pages/video/widgets/header_control.dart:170:29: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. : videoDetailCtr.subtitles[index - 1].lanDoc!), ^^^^^^^^^^^^^^ lib/pages/video/widgets/header_control.dart:163:25: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. videoDetailCtr.setSubtitle(index); ^^^^^^^^^^^^^^ Target kernel_snapshot_program failed: ExceptionFAILURE: Build failed with an exception.
BUILD FAILED in 1m 19s |
This change adds several new buttons and controls to the player's "more settings" menu to provide users with more control over the video playback experience. The following features have been added: - Playback Speed selection - Aspect Ratio selection - Picture-in-Picture button - Episode Selection button - High-Energy Progress Bar toggle - Toggle Danmaku switch - Subtitle language selection - Toggle Subtitles switch - Back and Back to Home navigation buttons This also includes fixes for several CI build errors encountered during development.
|
❌ CI Check 失败 (Build Android) 点击展开错误详情``` Resolving dependencies... Downloading packages... characters 1.4.0 (1.4.1 available) ! font_awesome_flutter 10.9.0 (overridden) (10.12.0 available) image 4.5.4 (4.6.0 available) matcher 0.12.17 (0.12.18 available) material_color_utilities 0.11.1 (0.13.0 available) ! media_kit 1.1.11 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in media_kit (overridden) ! media_kit_libs_android_video 1.3.7 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in libs/android/media_kit_libs_android_video (overridden) ! media_kit_libs_video 1.0.5 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in libs/universal/media_kit_libs_video (overridden) ! media_kit_libs_windows_video 1.0.10 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in libs/windows/media_kit_libs_windows_video (overridden) ! media_kit_native_event_loop 1.0.9 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in media_kit_native_event_loop (overridden) ! media_kit_video 1.2.5 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in media_kit_video (overridden) ! mime 2.0.0 (overridden) ! path 1.9.1 (overridden) pointycastle 3.9.1 (4.0.0 available) ! rxdart 0.28.0 (overridden) ! screen_brightness_android 2.1.3 (overridden) ! screen_brightness_ios 2.1.2 (overridden) ! screen_brightness_platform_interface 2.1.0 (overridden) test_api 0.7.7 (0.7.8 available) watcher 1.1.4 (1.2.0 available) Got dependencies! 8 packages have newer versions incompatible with dependency constraints. Try `flutter pub outdated` for more information. Running Gradle task 'assembleRelease'... Downloading file from: https://github.com/My-Responsitories/libmpv-android-video-build/releases/download/vnext/default-arm64-v8a.jar Downloading file from: https://github.com/My-Responsitories/libmpv-android-video-build/releases/download/vnext/default-armeabi-v7a.jar Downloading file from: https://github.com/My-Responsitories/libmpv-android-video-build/releases/download/vnext/default-x86_64.jar Downloading file from: https://github.com/My-Responsitories/libmpv-android-video-build/releases/download/vnext/default-x86.jar Checking the license for package Android SDK Platform 31 in /usr/local/lib/android/sdk/licenses License for package Android SDK Platform 31 accepted. Preparing "Install Android SDK Platform 31 (revision 1)". "Install Android SDK Platform 31 (revision 1)" ready. Installing Android SDK Platform 31 in /usr/local/lib/android/sdk/platforms/android-31 "Install Android SDK Platform 31 (revision 1)" complete. "Install Android SDK Platform 31 (revision 1)" finished. lib/pages/video/widgets/header_control.dart:151:50: Error: Not a constant expression. child: Text('选择字幕', style: titleStyle), ^^^^^^^^^^ lib/pages/video/widgets/header_control.dart:136:5: Error: The method 'showBottomSheet' isn't defined for the type 'TimeBatteryMixin'. - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). Try correcting the name to the name of an existing method, or defining a method named 'showBottomSheet'. showBottomSheet( ^^^^^^^^^^^^^^^ lib/pages/video/widgets/header_control.dart:156:30: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. itemCount: videoDetailCtr.subtitles.length + 1, ^^^^^^^^^^^^^^ lib/pages/video/widgets/header_control.dart:158:44: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. final bool isCurrent = videoDetailCtr.subtitle.value == index; ^^^^^^^^^^^^^^ lib/pages/video/widgets/header_control.dart:170:29: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. : videoDetailCtr.subtitles[index - 1].lanDoc!), ^^^^^^^^^^^^^^ lib/pages/video/widgets/header_control.dart:163:25: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. videoDetailCtr.setSubtitle(index); ^^^^^^^^^^^^^^ Target kernel_snapshot_program failed: ExceptionFAILURE: Build failed with an exception.
BUILD FAILED in 1m 17s |
|
❌ CI Check 失败 (Build Linux) 点击展开错误详情``` [ +347 ms] executing: uname -m [ +4 ms] Exit code 0 from: uname -m [ ] x86_64 [ +8 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update. [ ] Artifact Instance of 'GradleWrapper' is not required, skipping update. [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update. [ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update. [ ] Artifact Instance of 'PubDependencies' is not required, skipping update. [ +8 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] Artifact Instance of 'FlutterEngineStamp' is not required, skipping update. [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ +1 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ +33 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update. [ ] Artifact Instance of 'GradleWrapper' is not required, skipping update. [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] Artifact Instance of 'FlutterEngineStamp' is not required, skipping update. [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update. [ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update. [ ] Artifact Instance of 'PubDependencies' is not required, skipping update. [ +17 ms] executing: [/home/runner/work/PiliPlus/PiliPlus/] /opt/hostedtoolcache/flutter/stable-3.38.4-x64/bin/cache/dart-sdk/bin/dart pub --suppress-analytics --directory . get --example Resolving dependencies... Downloading packages... characters 1.4.0 (1.4.1 available) ! font_awesome_flutter 10.9.0 (overridden) (10.12.0 available) image 4.5.4 (4.6.0 available) matcher 0.12.17 (0.12.18 available) material_color_utilities 0.11.1 (0.13.0 available) ! media_kit 1.1.11 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in media_kit (overridden) ! media_kit_libs_android_video 1.3.7 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in libs/android/media_kit_libs_android_video (overridden) ! media_kit_libs_video 1.0.5 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in libs/universal/media_kit_libs_video (overridden) ! media_kit_libs_windows_video 1.0.10 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in libs/windows/media_kit_libs_windows_video (overridden) ! media_kit_native_event_loop 1.0.9 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in media_kit_native_event_loop (overridden) ! media_kit_video 1.2.5 from git https://github.com/bggRGjQaUbCoE/media-kit.git at bc999b in media_kit_video (overridden) ! mime 2.0.0 (overridden) ! path 1.9.1 (overridden) pointycastle 3.9.1 (4.0.0 available) ! rxdart 0.28.0 (overridden) ! screen_brightness_android 2.1.3 (overridden) ! screen_brightness_ios 2.1.2 (overridden) ! screen_brightness_platform_interface 2.1.0 (overridden) test_api 0.7.7 (0.7.8 available) watcher 1.1.4 (1.2.0 available) Got dependencies! 8 packages have newer versions incompatible with dependency constraints. Try `flutter pub outdated` for more information. [ +696 ms] Found plugin flutter_native_splash at /home/runner/.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.7/ [ +48 ms] Found plugin window_manager at /home/runner/.pub-cache/git/window_manager-974ab0a71d37cfca9d9bd5b295d7bd1df80b790b/packages/window_manager/ [ +2 ms] Found plugin screen_retriever at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever-0.2.0/ [ ] Found plugin screen_retriever_windows at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_windows-0.2.0/ [ +1 ms] Found plugin screen_retriever_macos at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_macos-0.2.0/ [ +1 ms] Found plugin screen_retriever_linux at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_linux-0.2.0/ [ +4 ms] Found plugin wakelock_plus at /home/runner/.pub-cache/hosted/pub.dev/wakelock_plus-1.4.0/ [ +3 ms] Found plugin package_info_plus at /home/runner/.pub-cache/hosted/pub.dev/package_info_plus-9.0.0/ [ +4 ms] Found plugin url_launcher at /home/runner/.pub-cache/hosted/pub.dev/url_launcher-6.3.2/ [ +1 ms] Found plugin url_launcher_windows at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.5/ [ +1 ms] Found plugin url_launcher_web at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_web-2.4.1/ [ ] Found plugin url_launcher_macos at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_macos-3.2.5/ [ ] Found plugin url_launcher_linux at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.2/ [ ] Found plugin url_launcher_ios at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.6/ [ ] Found plugin url_launcher_android at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_android-6.3.28/ [ ] Found plugin tray_manager at /home/runner/.pub-cache/hosted/pub.dev/tray_manager-0.5.2/ [ +4 ms] Found plugin share_plus at /home/runner/.pub-cache/hosted/pub.dev/share_plus-12.0.1/ [ +2 ms] Found plugin path_provider at /home/runner/.pub-cache/hosted/pub.dev/path_provider-2.1.5/ [ ] Found plugin path_provider_windows at /home/runner/.pub-cache/hosted/pub.dev/path_provider_windows-2.3.0/ [ +2 ms] Found plugin path_provider_linux at /home/runner/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/ [ +1 ms] Found plugin path_provider_foundation at /home/runner/.pub-cache/hosted/pub.dev/path_provider_foundation-2.5.1/ [ ] Found plugin path_provider_android at /home/runner/.pub-cache/hosted/pub.dev/path_provider_android-2.2.22/ [ +2 ms] Found plugin saver_gallery at /home/runner/.pub-cache/hosted/pub.dev/saver_gallery-4.1.0/ [ +3 ms] Found plugin permission_handler_apple at /home/runner/.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ [ ] Found plugin permission_handler_android at /home/runner/.pub-cache/hosted/pub.dev/permission_handler_android-13.0.1/ [ +1 ms] Found plugin media_kit_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/media_kit_video/ [ ] Found plugin screen_brightness_ios at /home/runner/.pub-cache/hosted/pub.dev/screen_brightness_ios-2.1.2/ [ ] Found plugin screen_brightness_android at /home/runner/.pub-cache/hosted/pub.dev/screen_brightness_android-2.1.3/ [ +4 ms] Found plugin flutter_volume_controller at /home/runner/.pub-cache/hosted/pub.dev/flutter_volume_controller-1.3.4/ [ +1 ms] Found plugin flutter_plugin_android_lifecycle at /home/runner/.pub-cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.33/ [ +1 ms] Found plugin media_kit_native_event_loop at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/media_kit_native_event_loop/ [ ] Found plugin media_kit_libs_windows_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/libs/windows/media_kit_libs_windows_video/ [ +1 ms] Found plugin media_kit_libs_macos_video at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_macos_video-1.1.4/ [ ] Found plugin media_kit_libs_linux at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_linux-1.2.1/ [ +1 ms] Found plugin media_kit_libs_ios_video at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_ios_video-1.1.4/ [ ] Found plugin media_kit_libs_android_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/libs/android/media_kit_libs_android_video/ [ +2 ms] Found plugin live_photo_maker at /home/runner/.pub-cache/hosted/pub.dev/live_photo_maker-0.0.6/ [ +2 ms] Found plugin image_picker at /home/runner/.pub-cache/hosted/pub.dev/image_picker-1.2.1/ [ ] Found plugin image_picker_windows at /home/runner/.pub-cache/hosted/pub.dev/image_picker_windows-0.2.2/ [ +1 ms] Found plugin file_selector_windows at /home/runner/.pub-cache/hosted/pub.dev/file_selector_windows-0.9.3+5/ [ +1 ms] Found plugin image_picker_macos at /home/runner/.pub-cache/hosted/pub.dev/image_picker_macos-0.2.2+1/ [ +1 ms] Found plugin file_selector_macos at /home/runner/.pub-cache/hosted/pub.dev/file_selector_macos-0.9.5/ [ +1 ms] Found plugin image_picker_linux at /home/runner/.pub-cache/hosted/pub.dev/image_picker_linux-0.2.2/ [ ] Found plugin file_selector_linux at /home/runner/.pub-cache/hosted/pub.dev/file_selector_linux-0.9.4/ [ +1 ms] Found plugin image_picker_ios at /home/runner/.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+3/ [ +1 ms] Found plugin image_picker_for_web at /home/runner/.pub-cache/hosted/pub.dev/image_picker_for_web-3.1.1/ [ ] Found plugin image_picker_android at /home/runner/.pub-cache/hosted/pub.dev/image_picker_android-0.8.13+10/ [ ] Found plugin image_cropper at /home/runner/.pub-cache/hosted/pub.dev/image_cropper-11.0.0/ [ +1 ms] Found plugin image_cropper_for_web at /home/runner/.pub-cache/hosted/pub.dev/image_cropper_for_web-7.0.0/ [ +2 ms] Found plugin gt3_flutter_plugin at /home/runner/.pub-cache/hosted/pub.dev/gt3_flutter_plugin-0.1.1/ [ +6 ms] Found plugin flutter_inappwebview at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview-6.1.5/ [ ] Found plugin flutter_inappwebview_windows at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_windows-0.6.0/ [ +3 ms] Found plugin flutter_inappwebview_web at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_web-1.1.2/ [ ] Found plugin flutter_inappwebview_macos at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_macos-1.1.2/ [ ] Found plugin flutter_inappwebview_ios at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_ios-1.1.2/ [ ] Found plugin flutter_inappwebview_android at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_android-1.1.3/ [ +2 ms] Found plugin flutter_displaymode at /home/runner/.pub-cache/hosted/pub.dev/flutter_displaymode-0.7.0/ [ +1 ms] Found plugin sqflite at /home/runner/.pub-cache/hosted/pub.dev/sqflite-2.4.2/ [ +2 ms] Found plugin sqflite_darwin at /home/runner/.pub-cache/hosted/pub.dev/sqflite_darwin-2.4.2/ [ +1 ms] Found plugin sqflite_android at /home/runner/.pub-cache/hosted/pub.dev/sqflite_android-2.4.2+2/ [ +1 ms] Found plugin floating at /home/runner/.pub-cache/git/floating-a66ec0b9dabde6b5880a3f4f3425e57842a38e51/ [ +4 ms] Found plugin file_picker at /home/runner/.pub-cache/git/flutter_file_picker-4c03c3413a915fa82f58d4591bfe3b62709a6edf/ [ +4 ms] Found plugin dynamic_color at /home/runner/.pub-cache/hosted/pub.dev/dynamic_color-1.8.1/ [ +1 ms] Found plugin device_info_plus at /home/runner/.pub-cache/hosted/pub.dev/device_info_plus-12.3.0/ [ +5 ms] Found plugin connectivity_plus at /home/runner/.pub-cache/hosted/pub.dev/connectivity_plus-7.0.0/ [ +2 ms] Found plugin chat_bottom_container at /home/runner/.pub-cache/git/flutter_chat_packages-acccababf698ef1712031c383ea4b7ff54ae630c/packages/chat_bottom_container/ [ ] Found plugin shared_preferences at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences-2.5.4/ [ ] Found plugin shared_preferences_windows at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_windows-2.4.1/ [ +1 ms] Found plugin shared_preferences_web at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_web-2.4.3/ [ ] Found plugin shared_preferences_linux at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_linux-2.4.1/ [ ] Found plugin shared_preferences_foundation at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.6/ [ ] Found plugin shared_preferences_android at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_android-2.4.18/ [ +2 ms] Found plugin fluttertoast at /home/runner/.pub-cache/hosted/pub.dev/fluttertoast-9.0.0/ [ ] Found plugin flutter_mailer at /home/runner/.pub-cache/hosted/pub.dev/flutter_mailer-3.0.1/ [ +4 ms] Found plugin battery_plus at /home/runner/.pub-cache/hosted/pub.dev/battery_plus-7.0.0/ [ +1 ms] Found plugin auto_orientation at /home/runner/.pub-cache/git/auto_orientation-ca2bb137bd0e4b221df3bc5ba1492d2902c78624/ [ ] Found plugin audio_session at /home/runner/.pub-cache/hosted/pub.dev/audio_session-0.2.2/ [ ] Found plugin audio_service at /home/runner/.pub-cache/hosted/pub.dev/audio_service-0.18.18/ [ ] Found plugin audio_service_web at /home/runner/.pub-cache/hosted/pub.dev/audio_service_web-0.1.4/ [ +1 ms] Found plugin app_links at /home/runner/.pub-cache/hosted/pub.dev/app_links-7.0.0/ [ ] Found plugin app_links_web at /home/runner/.pub-cache/hosted/pub.dev/app_links_web-1.0.4/ [ +1 ms] Found plugin app_links_linux at /home/runner/.pub-cache/hosted/pub.dev/app_links_linux-1.0.3/ [ ] Found plugin gtk at /home/runner/.pub-cache/hosted/pub.dev/gtk-2.1.0/ [ +76 ms] Found plugin flutter_native_splash at /home/runner/.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.7/ [ +23 ms] Found plugin window_manager at /home/runner/.pub-cache/git/window_manager-974ab0a71d37cfca9d9bd5b295d7bd1df80b790b/packages/window_manager/ [ ] Found plugin screen_retriever at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever-0.2.0/ [ ] Found plugin screen_retriever_windows at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_windows-0.2.0/ [ +1 ms] Found plugin screen_retriever_macos at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_macos-0.2.0/ [ ] Found plugin screen_retriever_linux at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_linux-0.2.0/ [ +2 ms] Found plugin wakelock_plus at /home/runner/.pub-cache/hosted/pub.dev/wakelock_plus-1.4.0/ [ +1 ms] Found plugin package_info_plus at /home/runner/.pub-cache/hosted/pub.dev/package_info_plus-9.0.0/ [ +2 ms] Found plugin url_launcher at /home/runner/.pub-cache/hosted/pub.dev/url_launcher-6.3.2/ [ ] Found plugin url_launcher_windows at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.5/ [ ] Found plugin url_launcher_web at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_web-2.4.1/ [ ] Found plugin url_launcher_macos at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_macos-3.2.5/ [ ] Found plugin url_launcher_linux at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.2/ [ ] Found plugin url_launcher_ios at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.6/ [ ] Found plugin url_launcher_android at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_android-6.3.28/ [ ] Found plugin tray_manager at /home/runner/.pub-cache/hosted/pub.dev/tray_manager-0.5.2/ [ +2 ms] Found plugin share_plus at /home/runner/.pub-cache/hosted/pub.dev/share_plus-12.0.1/ [ +1 ms] Found plugin path_provider at /home/runner/.pub-cache/hosted/pub.dev/path_provider-2.1.5/ [ ] Found plugin path_provider_windows at /home/runner/.pub-cache/hosted/pub.dev/path_provider_windows-2.3.0/ [ +1 ms] Found plugin path_provider_linux at /home/runner/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/ [ ] Found plugin path_provider_foundation at /home/runner/.pub-cache/hosted/pub.dev/path_provider_foundation-2.5.1/ [ ] Found plugin path_provider_android at /home/runner/.pub-cache/hosted/pub.dev/path_provider_android-2.2.22/ [ +1 ms] Found plugin saver_gallery at /home/runner/.pub-cache/hosted/pub.dev/saver_gallery-4.1.0/ [ +2 ms] Found plugin permission_handler_apple at /home/runner/.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ [ ] Found plugin permission_handler_android at /home/runner/.pub-cache/hosted/pub.dev/permission_handler_android-13.0.1/ [ ] Found plugin media_kit_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/media_kit_video/ [ ] Found plugin screen_brightness_ios at /home/runner/.pub-cache/hosted/pub.dev/screen_brightness_ios-2.1.2/ [ ] Found plugin screen_brightness_android at /home/runner/.pub-cache/hosted/pub.dev/screen_brightness_android-2.1.3/ [ +1 ms] Found plugin flutter_volume_controller at /home/runner/.pub-cache/hosted/pub.dev/flutter_volume_controller-1.3.4/ [ ] Found plugin flutter_plugin_android_lifecycle at /home/runner/.pub-cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.33/ [ +1 ms] Found plugin media_kit_native_event_loop at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/media_kit_native_event_loop/ [ ] Found plugin media_kit_libs_windows_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/libs/windows/media_kit_libs_windows_video/ [ ] Found plugin media_kit_libs_macos_video at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_macos_video-1.1.4/ [ ] Found plugin media_kit_libs_linux at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_linux-1.2.1/ [ ] Found plugin media_kit_libs_ios_video at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_ios_video-1.1.4/ [ ] Found plugin media_kit_libs_android_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/libs/android/media_kit_libs_android_video/ [ +1 ms] Found plugin live_photo_maker at /home/runner/.pub-cache/hosted/pub.dev/live_photo_maker-0.0.6/ [ +1 ms] Found plugin image_picker at /home/runner/.pub-cache/hosted/pub.dev/image_picker-1.2.1/ [ ] Found plugin image_picker_windows at /home/runner/.pub-cache/hosted/pub.dev/image_picker_windows-0.2.2/ [ +1 ms] Found plugin file_selector_windows at /home/runner/.pub-cache/hosted/pub.dev/file_selector_windows-0.9.3+5/ [ ] Found plugin image_picker_macos at /home/runner/.pub-cache/hosted/pub.dev/image_picker_macos-0.2.2+1/ [ ] Found plugin file_selector_macos at /home/runner/.pub-cache/hosted/pub.dev/file_selector_macos-0.9.5/ [ ] Found plugin image_picker_linux at /home/runner/.pub-cache/hosted/pub.dev/image_picker_linux-0.2.2/ [ ] Found plugin file_selector_linux at /home/runner/.pub-cache/hosted/pub.dev/file_selector_linux-0.9.4/ [ ] Found plugin image_picker_ios at /home/runner/.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+3/ [ ] Found plugin image_picker_for_web at /home/runner/.pub-cache/hosted/pub.dev/image_picker_for_web-3.1.1/ [ ] Found plugin image_picker_android at /home/runner/.pub-cache/hosted/pub.dev/image_picker_android-0.8.13+10/ [ ] Found plugin image_cropper at /home/runner/.pub-cache/hosted/pub.dev/image_cropper-11.0.0/ [ ] Found plugin image_cropper_for_web at /home/runner/.pub-cache/hosted/pub.dev/image_cropper_for_web-7.0.0/ [ +1 ms] Found plugin gt3_flutter_plugin at /home/runner/.pub-cache/hosted/pub.dev/gt3_flutter_plugin-0.1.1/ [ +4 ms] Found plugin flutter_inappwebview at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview-6.1.5/ [ ] Found plugin flutter_inappwebview_windows at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_windows-0.6.0/ [ +1 ms] Found plugin flutter_inappwebview_web at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_web-1.1.2/ [ ] Found plugin flutter_inappwebview_macos at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_macos-1.1.2/ [ ] Found plugin flutter_inappwebview_ios at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_ios-1.1.2/ [ ] Found plugin flutter_inappwebview_android at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_android-1.1.3/ [ +1 ms] Found plugin flutter_displaymode at /home/runner/.pub-cache/hosted/pub.dev/flutter_displaymode-0.7.0/ [ +1 ms] Found plugin sqflite at /home/runner/.pub-cache/hosted/pub.dev/sqflite-2.4.2/ [ +1 ms] Found plugin sqflite_darwin at /home/runner/.pub-cache/hosted/pub.dev/sqflite_darwin-2.4.2/ [ ] Found plugin sqflite_android at /home/runner/.pub-cache/hosted/pub.dev/sqflite_android-2.4.2+2/ [ ] Found plugin floating at /home/runner/.pub-cache/git/floating-a66ec0b9dabde6b5880a3f4f3425e57842a38e51/ [ +1 ms] Found plugin file_picker at /home/runner/.pub-cache/git/flutter_file_picker-4c03c3413a915fa82f58d4591bfe3b62709a6edf/ [ +3 ms] Found plugin dynamic_color at /home/runner/.pub-cache/hosted/pub.dev/dynamic_color-1.8.1/ [ +1 ms] Found plugin device_info_plus at /home/runner/.pub-cache/hosted/pub.dev/device_info_plus-12.3.0/ [ +3 ms] Found plugin connectivity_plus at /home/runner/.pub-cache/hosted/pub.dev/connectivity_plus-7.0.0/ [ +1 ms] Found plugin chat_bottom_container at /home/runner/.pub-cache/git/flutter_chat_packages-acccababf698ef1712031c383ea4b7ff54ae630c/packages/chat_bottom_container/ [ ] Found plugin shared_preferences at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences-2.5.4/ [ ] Found plugin shared_preferences_windows at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_windows-2.4.1/ [ +1 ms] Found plugin shared_preferences_web at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_web-2.4.3/ [ ] Found plugin shared_preferences_linux at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_linux-2.4.1/ [ ] Found plugin shared_preferences_foundation at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.6/ [ ] Found plugin shared_preferences_android at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_android-2.4.18/ [ +1 ms] Found plugin fluttertoast at /home/runner/.pub-cache/hosted/pub.dev/fluttertoast-9.0.0/ [ ] Found plugin flutter_mailer at /home/runner/.pub-cache/hosted/pub.dev/flutter_mailer-3.0.1/ [ +2 ms] Found plugin battery_plus at /home/runner/.pub-cache/hosted/pub.dev/battery_plus-7.0.0/ [ +1 ms] Found plugin auto_orientation at /home/runner/.pub-cache/git/auto_orientation-ca2bb137bd0e4b221df3bc5ba1492d2902c78624/ [ ] Found plugin audio_session at /home/runner/.pub-cache/hosted/pub.dev/audio_session-0.2.2/ [ ] Found plugin audio_service at /home/runner/.pub-cache/hosted/pub.dev/audio_service-0.18.18/ [ ] Found plugin audio_service_web at /home/runner/.pub-cache/hosted/pub.dev/audio_service_web-0.1.4/ [ +1 ms] Found plugin app_links at /home/runner/.pub-cache/hosted/pub.dev/app_links-7.0.0/ [ ] Found plugin app_links_web at /home/runner/.pub-cache/hosted/pub.dev/app_links_web-1.0.4/ [ ] Found plugin app_links_linux at /home/runner/.pub-cache/hosted/pub.dev/app_links_linux-1.0.3/ [ ] Found plugin gtk at /home/runner/.pub-cache/hosted/pub.dev/gtk-2.1.0/ [ +9 ms] Generating /home/runner/work/PiliPlus/PiliPlus/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java [ +46 ms] Building Linux application... [ +3 ms] executing: [/home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/] cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DFLUTTER_TARGET_PLATFORM=linux-x64 /home/runner/work/PiliPlus/PiliPlus/linux [+7282 ms] -- The CXX compiler identification is Clang 18.1.3 [ +208 ms] -- Detecting CXX compiler ABI info [ +200 ms] -- Detecting CXX compiler ABI info - done [ +13 ms] -- Check for working CXX compiler: /usr/bin/clang++ - skipped [ +7 ms] -- Detecting CXX compile features [ +7 ms] -- Detecting CXX compile features - done [ +58 ms] -- Found PkgConfig: /usr/bin/pkg-config (found version "1.8.1") [ ] -- Checking for module 'gtk+-3.0' [ +50 ms] -- Found gtk+-3.0, version 3.24.41 [ +189 ms] -- Checking for module 'glib-2.0' [ +8 ms] -- Found glib-2.0, version 2.80.0 [ +20 ms] -- Checking for module 'gio-2.0' [ +8 ms] -- Found gio-2.0, version 2.80.0 [ +50 ms] -- Found ALSA: /usr/lib/x86_64-linux-gnu/libasound.so (found version "1.2.11") [ ] /usr/lib/x86_64-linux-gnu/libasound.so [ +1 ms] -- Downloading archive from https://github.com/microsoft/mimalloc/archive/refs/tags/v2.1.2.tar.gz... [+1433 ms] -- Downloaded archive to /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/mimalloc-2.1.2.tar.gz. [ +1 ms] -- /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/mimalloc-2.1.2.tar.gz Verification successful. [ ] -- Directory /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/mimalloc does not exist! [ ] -- Extracting mimalloc-2.1.2.tar.gz... [ +5 ms] -- Checking for module 'mpv' [ +28 ms] -- Found mpv, version 2.2.0 [ +71 ms] -- Checking for module 'epoxy' [ +8 ms] -- Found epoxy, version 1.5.10 [ +29 ms] -- Checking for module 'ayatana-appindicator3-0.1' [ +26 ms] -- Found ayatana-appindicator3-0.1, version 0.5.90 [ +488 ms] -- Configuring done (9.6s) [ +197 ms] -- Generating done (0.2s) [ ] -- Build files have been written to: /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release [ +8 ms] executing: ninja -C /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release install [ +5 ms] ninja: Entering directory `/home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release' [+4708 ms] [1/39] Building CXX object plugins/media_kit_native_event_loop/shared/CMakeFiles/media_kit_native_event_loop.dir/media_kit_native_event_loop.cc.o [ +75 ms] [2/39] Linking CXX shared library plugins/media_kit_native_event_loop/shared/libmedia_kit_native_event_loop.so [+18670 ms] [3/39] Generating ../../mimalloc/out/release/mimalloc.o [ ] -- The C compiler identification is GNU 13.3.0 [ ] -- The CXX compiler identification is GNU 13.3.0 [ ] -- Detecting C compiler ABI info [ ] -- Detecting C compiler ABI info - done [ ] -- Check for working C compiler: /usr/bin/cc - skipped [ ] -- Detecting C compile features [ ] -- Detecting C compile features - done [ ] -- Detecting CXX compiler ABI info [ ] -- Detecting CXX compiler ABI info - done [ ] -- Check for working CXX compiler: /usr/bin/c++ - skipped [ ] -- Detecting CXX compile features [ ] -- Detecting CXX compile features - done [ ] -- [ ] -- No build type selected, default to: Release [ ] -- Override standard malloc (MI_OVERRIDE=ON) [ ] -- [ ] -- Library base name: mimalloc [ ] -- Version : 2.1 [ ] -- Build type : release [ ] -- C Compiler : /usr/bin/cc [ ] -- Compiler flags : -Wall;-Wextra;-Wno-unknown-pragmas;-fvisibility=hidden;-Wstrict-prototypes;-ftls-model=initial-exec;-fno-builtin-malloc [ ] -- Compiler defines : [ ] -- Link libraries : /usr/lib/x86_64-linux-gnu/libpthread.a;/usr/lib/x86_64-linux-gnu/librt.a [ ] -- Build targets : shared;static;object;tests [ ] -- [ ] -- Configuring done (3.9s) [ ] -- Generating done (0.0s) [ ] -- Build files have been written to: /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/mimalloc/out/release [ ] [ 2%] Building C object CMakeFiles/mimalloc.dir/src/alloc.c.o [ ] [ 5%] Building C object CMakeFiles/mimalloc.dir/src/alloc-aligned.c.o [ ] [ 7%] Building C object CMakeFiles/mimalloc.dir/src/alloc-posix.c.o [ ] [ 10%] Building C object CMakeFiles/mimalloc.dir/src/arena.c.o [ ] [ 12%] Building C object CMakeFiles/mimalloc.dir/src/bitmap.c.o [ ] [ 15%] Building C object CMakeFiles/mimalloc.dir/src/heap.c.o [ ] [ 17%] Building C object CMakeFiles/mimalloc.dir/src/init.c.o [ ] [ 20%] Building C object CMakeFiles/mimalloc.dir/src/options.c.o [ ] [ 22%] Building C object CMakeFiles/mimalloc.dir/src/os.c.o [ ] [ 25%] Building C object CMakeFiles/mimalloc.dir/src/page.c.o [ ] [ 27%] Building C object CMakeFiles/mimalloc.dir/src/random.c.o [ ] [ 30%] Building C object CMakeFiles/mimalloc.dir/src/segment.c.o [ ] [ 32%] Building C object CMakeFiles/mimalloc.dir/src/segment-map.c.o [ ] [ 35%] Building C object CMakeFiles/mimalloc.dir/src/stats.c.o [ ] [ 37%] Building C object CMakeFiles/mimalloc.dir/src/prim/prim.c.o [ ] [ 40%] Linking C shared library libmimalloc.so [ ] [ 40%] Built target mimalloc [ ] [ 42%] Building C object CMakeFiles/mimalloc-static.dir/src/alloc.c.o [ ] [ 45%] Building C object CMakeFiles/mimalloc-static.dir/src/alloc-aligned.c.o [ ] [ 47%] Building C object CMakeFiles/mimalloc-static.dir/src/alloc-posix.c.o [ ] [ 50%] Building C object CMakeFiles/mimalloc-static.dir/src/arena.c.o [ ] [ 52%] Building C object CMakeFiles/mimalloc-static.dir/src/bitmap.c.o [ ] [ 55%] Building C object CMakeFiles/mimalloc-static.dir/src/heap.c.o [ ] [ 57%] Building C object CMakeFiles/mimalloc-static.dir/src/init.c.o [ ] [ 60%] Building C object CMakeFiles/mimalloc-static.dir/src/options.c.o [ ] [ 62%] Building C object CMakeFiles/mimalloc-static.dir/src/os.c.o [ ] [ 65%] Building C object CMakeFiles/mimalloc-static.dir/src/page.c.o [ ] [ 67%] Building C object CMakeFiles/mimalloc-static.dir/src/random.c.o [ ] [ 70%] Building C object CMakeFiles/mimalloc-static.dir/src/segment.c.o [ ] [ 72%] Building C object CMakeFiles/mimalloc-static.dir/src/segment-map.c.o [ ] [ 75%] Building C object CMakeFiles/mimalloc-static.dir/src/stats.c.o [ ] [ 77%] Building C object CMakeFiles/mimalloc-static.dir/src/prim/prim.c.o [ ] [ 80%] Linking C static library libmimalloc.a [ ] [ 80%] Built target mimalloc-static [ ] [ 82%] Building C object CMakeFiles/mimalloc-obj.dir/src/static.c.o [ ] [ 82%] Built target mimalloc-obj [ ] [ 85%] Generating mimalloc.o [ ] [ 85%] Built target mimalloc-obj-target [ ] [ 87%] Building C object CMakeFiles/mimalloc-test-api.dir/test/test-api.c.o [ ] [ 90%] Linking C executable mimalloc-test-api [ ] [ 90%] Built target mimalloc-test-api [ ] [ 92%] Building C object CMakeFiles/mimalloc-test-api-fill.dir/test/test-api-fill.c.o [ ] [ 95%] Linking C executable mimalloc-test-api-fill [ ] [ 95%] Built target mimalloc-test-api-fill [ ] [ 97%] Building C object CMakeFiles/mimalloc-test-stress.dir/test/test-stress.c.o [ ] [100%] Linking C executable mimalloc-test-stress [ ] [100%] Built target mimalloc-test-stress [+1997 ms] [4/39] Generating /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/libflutter_linux_gtk.so, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_basic_message_channel.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_binary_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_binary_messenger.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_dart_project.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_engine.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_json_message_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_json_method_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_message_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_call.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_channel.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_response.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_plugin_registrar.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_plugin_registry.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_standard_message_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_standard_method_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_string_codec.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_value.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_view.h, /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/flutter_linux.h, _phony_ [ +5 ms] FAILED: [code=1] /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/libflutter_linux_gtk.so /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_basic_message_channel.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_binary_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_binary_messenger.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_dart_project.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_engine.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_json_message_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_json_method_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_message_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_call.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_channel.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_method_response.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_plugin_registrar.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_plugin_registry.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_standard_message_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_standard_method_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_string_codec.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_value.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/fl_view.h /home/runner/work/PiliPlus/PiliPlus/linux/flutter/ephemeral/flutter_linux/flutter_linux.h flutter/_phony_ /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/flutter/_phony_ [ +1 ms] cd /home/runner/work/PiliPlus/PiliPlus/build/linux/x64/release/flutter && /usr/local/bin/cmake -E env FLUTTER_ROOT=/opt/hostedtoolcache/flutter/stable-3.38.4-x64 PROJECT_DIR=/home/runner/work/PiliPlus/PiliPlus DART_DEFINES=cGlsaS5oYXNoPWVlYjdlOWYzNzg0ZTVmOTNhYTJjZjM2YTA1MmQzZjUzZjUzZDU2OWI=,cGlsaS50aW1lPTE3NjU3MjYwMzk=,cGlsaS5uYW1lPTEuMS41,cGlsaS5jb2RlPTQ1MDU=,RkxVVFRFUl9WRVJTSU9OPTMuMzguNA==,RkxVVFRFUl9DSEFOTkVMPXN0YWJsZQ==,RkxVVFRFUl9HSVRfVVJMPWh0dHBzOi8vZ2l0aHViLmNvbS9mbHV0dGVyL2ZsdXR0ZXIuZ2l0,RkxVVFRFUl9GUkFNRVdPUktfUkVWSVNJT049NjZkZDkzZjlhMg==,RkxVVFRFUl9FTkdJTkVfUkVWSVNJT049YTVjYjk2MzY5ZQ==,RkxVVFRFUl9EQVJUX1ZFUlNJT049My4xMC4z DART_OBFUSCATION=false TRACK_WIDGET_CREATION=true TREE_SHAKE_ICONS=true PACKAGE_CONFIG=/home/runner/work/PiliPlus/PiliPlus/.dart_tool/package_config.json FLUTTER_TARGET=lib/main.dart /opt/hostedtoolcache/flutter/stable-3.38.4-x64/packages/flutter_tools/bin/tool_backend.sh linux-x64 Release [ ] [ +43 ms] executing: uname -m [ ] [ +5 ms] Exit code 0 from: uname -m [ ] [ ] x86_64 [ ] [ +8 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update. [ ] [ ] Artifact Instance of 'GradleWrapper' is not required, skipping update. [ ] [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update. [ ] [ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'PubDependencies' is not required, skipping update. [ ] [ +8 ms] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterEngineStamp' is not required, skipping update. [ ] [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ ] [ +1 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ ] [ +53 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update. [ ] [ ] Artifact Instance of 'GradleWrapper' is not required, skipping update. [ ] [ ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterEngineStamp' is not required, skipping update. [ ] [ ] Artifact Instance of 'LegacyCanvasKitRemover' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterSdk' is not required, skipping update. [ ] [ ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update. [ ] [ +1 ms] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update. [ ] [ ] Artifact Instance of 'PubDependencies' is not required, skipping update. [ ] [ +21 ms] Initializing file store [ ] [ +33 ms] dart_build: Starting due to {} [ ] [ +1 ms] Skipping target: gen_localizations [ ] [ +2 ms] gen_dart_plugin_registrant: Starting due to {InvalidatedReasonKind.inputChanged: The following inputs have updated contents: /home/runner/work/PiliPlus/PiliPlus/.dart_tool/package_config.json} [ ] [ +6 ms] unpack_linux: Starting due to {} [ ] [ +64 ms] unpack_linux: Complete [ ] [ +429 ms] Found plugin flutter_native_splash at /home/runner/.pub-cache/hosted/pub.dev/flutter_native_splash-2.4.7/ [ ] [ +37 ms] No packages with native assets. Skipping native assets compilation. [ ] [ +1 ms] dart_build: Complete [ ] [ +1 ms] install_code_assets: Starting due to {} [ ] [ +7 ms] Writing native assets json to file:///home/runner/work/PiliPlus/PiliPlus/.dart_tool/flutter_build/11cac0a902f0126f8f1b29aea4d0eae3/native_assets.json. [ ] [ +2 ms] Writing /home/runner/work/PiliPlus/PiliPlus/.dart_tool/flutter_build/11cac0a902f0126f8f1b29aea4d0eae3/native_assets.json done. [ ] [ ] install_code_assets: Complete [ ] [ +15 ms] Found plugin window_manager at /home/runner/.pub-cache/git/window_manager-974ab0a71d37cfca9d9bd5b295d7bd1df80b790b/packages/window_manager/ [ ] [ +3 ms] Found plugin screen_retriever at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever-0.2.0/ [ ] [ ] Found plugin screen_retriever_windows at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_windows-0.2.0/ [ ] [ +1 ms] Found plugin screen_retriever_macos at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_macos-0.2.0/ [ ] [ ] Found plugin screen_retriever_linux at /home/runner/.pub-cache/hosted/pub.dev/screen_retriever_linux-0.2.0/ [ +1 ms] [ +4 ms] Found plugin wakelock_plus at /home/runner/.pub-cache/hosted/pub.dev/wakelock_plus-1.4.0/ [ ] [ +3 ms] Found plugin package_info_plus at /home/runner/.pub-cache/hosted/pub.dev/package_info_plus-9.0.0/ [ ] [ +3 ms] Found plugin url_launcher at /home/runner/.pub-cache/hosted/pub.dev/url_launcher-6.3.2/ [ ] [ ] Found plugin url_launcher_windows at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_windows-3.1.5/ [ ] [ +1 ms] Found plugin url_launcher_web at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_web-2.4.1/ [ ] [ ] Found plugin url_launcher_macos at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_macos-3.2.5/ [ ] [ ] Found plugin url_launcher_linux at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_linux-3.2.2/ [ ] [ ] Found plugin url_launcher_ios at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_ios-6.3.6/ [ ] [ ] Found plugin url_launcher_android at /home/runner/.pub-cache/hosted/pub.dev/url_launcher_android-6.3.28/ [ ] [ +2 ms] Found plugin tray_manager at /home/runner/.pub-cache/hosted/pub.dev/tray_manager-0.5.2/ [ ] [ +4 ms] Found plugin share_plus at /home/runner/.pub-cache/hosted/pub.dev/share_plus-12.0.1/ [ ] [ +1 ms] Found plugin path_provider at /home/runner/.pub-cache/hosted/pub.dev/path_provider-2.1.5/ [ ] [ ] Found plugin path_provider_windows at /home/runner/.pub-cache/hosted/pub.dev/path_provider_windows-2.3.0/ [ ] [ +2 ms] Found plugin path_provider_linux at /home/runner/.pub-cache/hosted/pub.dev/path_provider_linux-2.2.1/ [ ] [ +1 ms] Found plugin path_provider_foundation at /home/runner/.pub-cache/hosted/pub.dev/path_provider_foundation-2.5.1/ [ ] [ ] Found plugin path_provider_android at /home/runner/.pub-cache/hosted/pub.dev/path_provider_android-2.2.22/ [ ] [ +2 ms] Found plugin saver_gallery at /home/runner/.pub-cache/hosted/pub.dev/saver_gallery-4.1.0/ [ ] [ +3 ms] Found plugin permission_handler_apple at /home/runner/.pub-cache/hosted/pub.dev/permission_handler_apple-9.4.7/ [ ] [ +1 ms] Found plugin permission_handler_android at /home/runner/.pub-cache/hosted/pub.dev/permission_handler_android-13.0.1/ [ ] [ +1 ms] Found plugin media_kit_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/media_kit_video/ [ ] [ +1 ms] Found plugin screen_brightness_ios at /home/runner/.pub-cache/hosted/pub.dev/screen_brightness_ios-2.1.2/ [ ] [ +2 ms] Found plugin screen_brightness_android at /home/runner/.pub-cache/hosted/pub.dev/screen_brightness_android-2.1.3/ [ ] [ +3 ms] Found plugin flutter_volume_controller at /home/runner/.pub-cache/hosted/pub.dev/flutter_volume_controller-1.3.4/ [ ] [ +1 ms] Found plugin flutter_plugin_android_lifecycle at /home/runner/.pub-cache/hosted/pub.dev/flutter_plugin_android_lifecycle-2.0.33/ [ ] [ +1 ms] Found plugin media_kit_native_event_loop at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/media_kit_native_event_loop/ [ ] [ ] Found plugin media_kit_libs_windows_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/libs/windows/media_kit_libs_windows_video/ [ ] [ +1 ms] Found plugin media_kit_libs_macos_video at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_macos_video-1.1.4/ [ ] [ ] Found plugin media_kit_libs_linux at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_linux-1.2.1/ [ ] [ +1 ms] Found plugin media_kit_libs_ios_video at /home/runner/.pub-cache/hosted/pub.dev/media_kit_libs_ios_video-1.1.4/ [ ] [ ] Found plugin media_kit_libs_android_video at /home/runner/.pub-cache/git/media-kit-bc999bf181ddf12d60891f76e41359e4177b93a7/libs/android/media_kit_libs_android_video/ [ ] [ +2 ms] Found plugin live_photo_maker at /home/runner/.pub-cache/hosted/pub.dev/live_photo_maker-0.0.6/ [ ] [ +1 ms] Found plugin image_picker at /home/runner/.pub-cache/hosted/pub.dev/image_picker-1.2.1/ [ ] [ ] Found plugin image_picker_windows at /home/runner/.pub-cache/hosted/pub.dev/image_picker_windows-0.2.2/ [ ] [ +1 ms] Found plugin file_selector_windows at /home/runner/.pub-cache/hosted/pub.dev/file_selector_windows-0.9.3+5/ [ ] [ +1 ms] Found plugin image_picker_macos at /home/runner/.pub-cache/hosted/pub.dev/image_picker_macos-0.2.2+1/ [ ] [ ] Found plugin file_selector_macos at /home/runner/.pub-cache/hosted/pub.dev/file_selector_macos-0.9.5/ [ ] [ ] Found plugin image_picker_linux at /home/runner/.pub-cache/hosted/pub.dev/image_picker_linux-0.2.2/ [ ] [ ] Found plugin file_selector_linux at /home/runner/.pub-cache/hosted/pub.dev/file_selector_linux-0.9.4/ [ ] [ +2 ms] Found plugin image_picker_ios at /home/runner/.pub-cache/hosted/pub.dev/image_picker_ios-0.8.13+3/ [ ] [ +1 ms] Found plugin image_picker_for_web at /home/runner/.pub-cache/hosted/pub.dev/image_picker_for_web-3.1.1/ [ ] [ +1 ms] Found plugin image_picker_android at /home/runner/.pub-cache/hosted/pub.dev/image_picker_android-0.8.13+10/ [ ] [ ] Found plugin image_cropper at /home/runner/.pub-cache/hosted/pub.dev/image_cropper-11.0.0/ [ ] [ +1 ms] Found plugin image_cropper_for_web at /home/runner/.pub-cache/hosted/pub.dev/image_cropper_for_web-7.0.0/ [ ] [ +2 ms] Found plugin gt3_flutter_plugin at /home/runner/.pub-cache/hosted/pub.dev/gt3_flutter_plugin-0.1.1/ [ ] [ +5 ms] Found plugin flutter_inappwebview at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview-6.1.5/ [ ] [ ] Found plugin flutter_inappwebview_windows at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_windows-0.6.0/ [ ] [ +1 ms] Found plugin flutter_inappwebview_web at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_web-1.1.2/ [ ] [ ] Found plugin flutter_inappwebview_macos at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_macos-1.1.2/ [ ] [ ] Found plugin flutter_inappwebview_ios at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_ios-1.1.2/ [ ] [ ] Found plugin flutter_inappwebview_android at /home/runner/.pub-cache/hosted/pub.dev/flutter_inappwebview_android-1.1.3/ [ ] [ +1 ms] Found plugin flutter_displaymode at /home/runner/.pub-cache/hosted/pub.dev/flutter_displaymode-0.7.0/ [ ] [ +1 ms] Found plugin sqflite at /home/runner/.pub-cache/hosted/pub.dev/sqflite-2.4.2/ [ ] [ +1 ms] Found plugin sqflite_darwin at /home/runner/.pub-cache/hosted/pub.dev/sqflite_darwin-2.4.2/ [ ] [ ] Found plugin sqflite_android at /home/runner/.pub-cache/hosted/pub.dev/sqflite_android-2.4.2+2/ [ ] [ +1 ms] Found plugin floating at /home/runner/.pub-cache/git/floating-a66ec0b9dabde6b5880a3f4f3425e57842a38e51/ [ ] [ +3 ms] Found plugin file_picker at /home/runner/.pub-cache/git/flutter_file_picker-4c03c3413a915fa82f58d4591bfe3b62709a6edf/ [ ] [ +5 ms] Found plugin dynamic_color at /home/runner/.pub-cache/hosted/pub.dev/dynamic_color-1.8.1/ [ ] [ +2 ms] Found plugin device_info_plus at /home/runner/.pub-cache/hosted/pub.dev/device_info_plus-12.3.0/ [ ] [ +5 ms] Found plugin connectivity_plus at /home/runner/.pub-cache/hosted/pub.dev/connectivity_plus-7.0.0/ [ ] [ +1 ms] Found plugin chat_bottom_container at /home/runner/.pub-cache/git/flutter_chat_packages-acccababf698ef1712031c383ea4b7ff54ae630c/packages/chat_bottom_container/ [ ] [ ] Found plugin shared_preferences at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences-2.5.4/ [ ] [ ] Found plugin shared_preferences_windows at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_windows-2.4.1/ [ ] [ +1 ms] Found plugin shared_preferences_web at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_web-2.4.3/ [ ] [ ] Found plugin shared_preferences_linux at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_linux-2.4.1/ [ ] [ ] Found plugin shared_preferences_foundation at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_foundation-2.5.6/ [ ] [ ] Found plugin shared_preferences_android at /home/runner/.pub-cache/hosted/pub.dev/shared_preferences_android-2.4.18/ [ ] [ +2 ms] Found plugin fluttertoast at /home/runner/.pub-cache/hosted/pub.dev/fluttertoast-9.0.0/ [ ] [ ] Found plugin flutter_mailer at /home/runner/.pub-cache/hosted/pub.dev/flutter_mailer-3.0.1/ [ ] [ +3 ms] Found plugin battery_plus at /home/runner/.pub-cache/hosted/pub.dev/battery_plus-7.0.0/ [ ] [ +1 ms] Found plugin auto_orientation at /home/runner/.pub-cache/git/auto_orientation-ca2bb137bd0e4b221df3bc5ba1492d2902c78624/ [ ] [ ] Found plugin audio_session at /home/runner/.pub-cache/hosted/pub.dev/audio_session-0.2.2/ [ ] [ ] Found plugin audio_service at /home/runner/.pub-cache/hosted/pub.dev/audio_service-0.18.18/ [ ] [ ] Found plugin audio_service_web at /home/runner/.pub-cache/hosted/pub.dev/audio_service_web-0.1.4/ [ ] [ +1 ms] Found plugin app_links at /home/runner/.pub-cache/hosted/pub.dev/app_links-7.0.0/ [ ] [ ] Found plugin app_links_web at /home/runner/.pub-cache/hosted/pub.dev/app_links_web-1.0.4/ [ ] [ +1 ms] Found plugin app_links_linux at /home/runner/.pub-cache/hosted/pub.dev/app_links_linux-1.0.3/ [ ] [ ] Found plugin gtk at /home/runner/.pub-cache/hosted/pub.dev/gtk-2.1.0/ [ ] [ +27 ms] gen_dart_plugin_registrant: Complete [ ] [ +2 ms] kernel_snapshot_program: Starting due to {} [ +2 ms] [ +13 ms] /opt/hostedtoolcache/flutter/stable-3.38.4-x64/bin/cache/dart-sdk/bin/dartaotruntime /opt/hostedtoolcache/flutter/stable-3.38.4-x64/bin/cache/dart-sdk/bin/snapshots/frontend_server_aot.dart.snapshot --sdk-root /opt/hostedtoolcache/flutter/stable-3.38.4-x64/bin/cache/artifacts/engine/common/flutter_patched_sdk_product/ --target=flutter --no-print-incremental-dependencies -Dpili.hash=eeb7e9f3784e5f93aa2cf36a052d3f53f53d569b -Dpili.time=1765726039 -Dpili.name=1.1.5 -Dpili.code=4505 -DFLUTTER_VERSION=3.38.4 -DFLUTTER_CHANNEL=stable -DFLUTTER_GIT_URL=https://github.com/flutter/flutter.git -DFLUTTER_FRAMEWORK_REVISION=66dd93f9a2 -DFLUTTER_ENGINE_REVISION=a5cb96369e -DFLUTTER_DART_VERSION=3.10.3 -Ddart.vm.profile=false -Ddart.vm.product=true --delete-tostring-package-uri=dart:ui --delete-tostring-package-uri=package:flutter --aot --tfa --target-os linux --packages /home/runner/work/PiliPlus/PiliPlus/.dart_tool/package_config.json --output-dill /home/runner/work/PiliPlus/PiliPlus/.dart_tool/flutter_build/11cac0a902f0126f8f1b29aea4d0eae3/app.dill --depfile /home/runner/work/PiliPlus/PiliPlus/.dart_tool/flutter_build/11cac0a902f0126f8f1b29aea4d0eae3/kernel_snapshot_program.d --source file:///home/runner/work/PiliPlus/PiliPlus/.dart_tool/flutter_build/dart_plugin_registrant.dart --source package:flutter/src/dart_plugin_registrant.dart -Dflutter.dart_plugin_registrant=file:///home/runner/work/PiliPlus/PiliPlus/.dart_tool/flutter_build/dart_plugin_registrant.dart --verbosity=error package:PiliPlus/main.dart [ ] [+11038 ms] lib/pages/video/widgets/header_control.dart:151:50: Error: Not a constant expression. [ +1 ms] [ +2 ms] child: Text('选择字幕', style: titleStyle), [ ] [ ] ^^^^^^^^^^ [ ] [ ] lib/pages/video/widgets/header_control.dart:136:5: Error: The method 'showBottomSheet' isn't defined for the type 'TimeBatteryMixin'. [ ] [ ] - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). [ ] [ ] Try correcting the name to the name of an existing method, or defining a method named 'showBottomSheet'. [ ] [ ] showBottomSheet( [ ] [ ] ^^^^^^^^^^^^^^^ [ ] [ ] lib/pages/video/widgets/header_control.dart:156:30: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. [ ] [ ] - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). [ ] [ ] Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. [ ] [ ] itemCount: videoDetailCtr.subtitles.length + 1, [ ] [ ] ^^^^^^^^^^^^^^ [ ] [ ] lib/pages/video/widgets/header_control.dart:158:44: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. [ ] [ ] - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). [ ] [ ] Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. [ ] [ ] final bool isCurrent = videoDetailCtr.subtitle.value == index; [ ] [ ] ^^^^^^^^^^^^^^ [ ] [ ] lib/pages/video/widgets/header_control.dart:170:29: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. [ ] [ ] - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). [ ] [ ] Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. [ ] [ ] : videoDetailCtr.subtitles[index - 1].lanDoc!), [ ] [ ] ^^^^^^^^^^^^^^ [ ] [ ] lib/pages/video/widgets/header_control.dart:163:25: Error: The getter 'videoDetailCtr' isn't defined for the type 'TimeBatteryMixin'. [ ] [ ] - 'TimeBatteryMixin' is from 'package:PiliPlus/pages/video/widgets/header_control.dart' ('lib/pages/video/widgets/header_control.dart'). [ ] [ ] Try correcting the name to the name of an existing getter, or defining a getter or field named 'videoDetailCtr'. [ ] [ ] videoDetailCtr.setSubtitle(index); [ ] [ ] ^^^^^^^^^^^^^^ [ ] [+13120 ms] Persisting file store [ ] [ +4 ms] Done persisting file store [ ] [ +4 ms] Target kernel_snapshot_program failed: Exception [ ] #0 KernelSnapshot.build (package:flutter_tools/src/build_system/targets/common.dart:289:7) [ ] [ ] #1 _BuildInstance._invokeInternal (package:flutter_tools/src/build_system/build_system.dart:895:9) [ ] [ ] #2 Future.wait. (dart:async/future.dart:546:21) [ ] [ ] #3 _BuildInstance.invokeTarget (package:flutter_tools/src/build_system/build_system.dart:833:32) [ ] [ ] #4 Future.wait. (dart:async/future.dart:546:21) [ ] [ ] #5 _BuildInstance.invokeTarget (package:flutter_tools/src/build_system/build_system.dart:833:32) [ ] [ ] #6 Future.wait. (dart:async/future.dart:546:21) [ ] [ ] #7 _BuildInstance.invokeTarget (package:flutter_tools/src/build_system/build_system.dart:833:32) [ ] [ ] #8 FlutterBuildSystem.build (package:flutter_tools/src/build_system/build_system.dart:653:16) [ ] [ ] #9 AssembleCommand.runCommand (package:flutter_tools/src/commands/assemble.dart:361:32) [ ] [ ] #10 FlutterCommand.run. (package:flutter_tools/src/runner/flutter_command.dart:1559:27) [ ] [ ] #11 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) [ ] [ ] #12 CommandRunner.runCommand (package:args/command_runner.dart:212:13) [ ] [ ] #13 FlutterCommandRunner.runCommand. (package:flutter_tools/src/runner/flutter_command_runner.dart:487:9) [ ] [ ] #14 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) [ ] [ ] #15 FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:422:5) [ ] [ ] #16 run.. (package:flutter_tools/runner.dart:104:11) [ ] [ ] #17 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) [ ] [ ] #18 main (package:flutter_tools/executable.dart:103:3) [ ] [ ] [ +1 ms] "flutter assemble" took 25,052ms. [ ] [ +8 ms] [ ] #0 throwToolExit (package:flutter_tools/src/base/common.dart:34:3) [ ] #1 AssembleCommand.runCommand (package:flutter_tools/src/commands/assemble.dart:379:7) [ ] [ ] #2 FlutterCommand.run. (package:flutter_tools/src/runner/flutter_command.dart:1559:27) [ ] [ ] #3 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) [ ] [ ] #4 CommandRunner.runCommand (package:args/command_runner.dart:212:13) [ ] [ ] #5 FlutterCommandRunner.runCommand. (package:flutter_tools/src/runner/flutter_command_runner.dart:487:9) [ ] [ ] #6 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) [ ] [ ] #7 FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:422:5) [ ] [ ] #8 run.. (package:flutter_tools/runner.dart:104:11) [ ] [ ] #9 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) [ ] [ ] #10 main (package:flutter_tools/executable.dart:103:3) [ ] [ ] [ ] Running 1 shutdown hook [ ] [ ] Shutdown hooks complete [ ] [ ] exiting with code 1 [ ] ninja: build stopped: subcommand failed. [ +5 ms] Building Linux application... (completed in 35.9s) [ ] "flutter linux" took 37,108ms. [ +8 ms] Build process failed [ ] #0 throwToolExit (package:flutter_tools/src/base/common.dart:34:3) #1 _runBuild (package:flutter_tools/src/linux/build_linux.dart:219:5) #2 buildLinux (package:flutter_tools/src/linux/build_linux.dart:100:5) #3 BuildLinuxCommand.runCommand (package:flutter_tools/src/commands/build_linux.dart:95:5) #4 FlutterCommand.run. (package:flutter_tools/src/runner/flutter_command.dart:1559:27) #5 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) #6 CommandRunner.runCommand (package:args/command_runner.dart:212:13) #7 FlutterCommandRunner.runCommand. (package:flutter_tools/src/runner/flutter_command_runner.dart:487:9) #8 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) #9 FlutterCommandRunner.runCommand (package:flutter_tools/src/runner/flutter_command_runner.dart:422:5) #10 run.. (package:flutter_tools/runner.dart:104:11) #11 AppContext.run. (package:flutter_tools/src/base/context.dart:154:19) #12 main (package:flutter_tools/executable.dart:103:3)[ ] Running 1 shutdown hook |
No description provided.