mirror of
https://gitlab.com/foxixus/neomovies_mobile.git
synced 2025-10-28 01:58:50 +05:00
- Add test stage to GitLab CI with Flutter analyze and test commands - Add memory optimization flags for builds (split-debug-info, obfuscate) - Add pub-cache caching to improve build times - Fix broken tests by removing old torrent service tests and adding simple working test - Add missing Flutter imports to fix test compilation errors - Configure CI to run tests and builds efficiently while minimizing RAM usage
24 lines
911 B
C++
24 lines
911 B
C++
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
// clang-format off
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
#include <dynamic_color/dynamic_color_plugin_c_api.h>
|
|
#include <flutter_secure_storage_windows/flutter_secure_storage_windows_plugin.h>
|
|
#include <permission_handler_windows/permission_handler_windows_plugin.h>
|
|
#include <url_launcher_windows/url_launcher_windows.h>
|
|
|
|
void RegisterPlugins(flutter::PluginRegistry* registry) {
|
|
DynamicColorPluginCApiRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("DynamicColorPluginCApi"));
|
|
FlutterSecureStorageWindowsPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("FlutterSecureStorageWindowsPlugin"));
|
|
PermissionHandlerWindowsPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("PermissionHandlerWindowsPlugin"));
|
|
UrlLauncherWindowsRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("UrlLauncherWindows"));
|
|
}
|