1
This commit is contained in:
Zeus
2023-11-20 11:08:28 +08:00
parent 39a5f2fa92
commit f5f5f03537
31 changed files with 1337 additions and 21 deletions
@@ -0,0 +1 @@
{"version":2,"files":[{"path":"D:\\UUVPN\\flutter\\l10n.yaml","hash":"a84551d0b7dad37de8974f5ec96741f0"},{"path":"D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_en.dart","hash":"13b0f04cd30530772d65cdea1b71d355"},{"path":"D:\\UUVPN\\flutter\\lib/l10n\\app_zh.arb","hash":"d3c32a02aa6851b40e2d1ef441836ab7"},{"path":"D:\\UUVPN\\flutter\\.dart_tool\\package_config_subset","hash":"d6117fe62426e62c4976948d57e4457e"},{"path":"D:\\UUVPN\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart","hash":"c5e0dec6ad3ed06537232fefa5c3e897"},{"path":"D:\\UUVPN\\flutter\\lib/l10n\\app_en.arb","hash":"f613890cdd3ba4f067d0c40f077e9fb3"},{"path":"D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations.dart","hash":"a378ae66620a8312108b7531a6fd5a72"},{"path":"D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_zh.dart","hash":"1d5c329913a72e41fbfd4f51fb9c9438"},{"path":"E:\\Flutter\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\localizations.dart","hash":"44f6e61783695000b20d4e1ad3dcc100"}]}
@@ -0,0 +1 @@
{"inputs":["D:\\UUVPN\\flutter\\.dart_tool\\package_config_subset"],"outputs":["D:\\UUVPN\\flutter\\.dart_tool\\flutter_build\\dart_plugin_registrant.dart"]}
@@ -0,0 +1 @@
{"inputs":["D:\\UUVPN\\flutter\\lib/l10n\\app_en.arb","D:\\UUVPN\\flutter\\lib/l10n\\app_zh.arb"],"outputs":["D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_en.dart","D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_zh.dart","D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations.dart"]}
@@ -0,0 +1 @@
D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_en.dart D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_zh.dart D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations.dart: D:\\UUVPN\\flutter\\l10n.yaml D:\\UUVPN\\flutter\\lib/l10n\\app_en.arb D:\\UUVPN\\flutter\\lib/l10n\\app_zh.arb
@@ -0,0 +1 @@
{"inputs":["E:\\Flutter\\flutter\\packages\\flutter_tools\\lib\\src\\build_system\\targets\\localizations.dart","D:\\UUVPN\\flutter\\l10n.yaml","D:\\UUVPN\\flutter\\lib/l10n\\app_en.arb","D:\\UUVPN\\flutter\\lib/l10n\\app_zh.arb"],"outputs":["D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_en.dart","D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations_zh.dart","D:\\UUVPN\\flutter\\.dart_tool\\flutter_gen\\gen_l10n\\app_localizations.dart"]}
File diff suppressed because one or more lines are too long
@@ -0,0 +1,172 @@
//
// Generated file. Do not edit.
// This file is generated from template in file `flutter_tools/lib/src/flutter_plugins.dart`.
//
// @dart = 2.18
import 'dart:io'; // flutter_ignore: dart_io_import.
import 'package:path_provider_android/path_provider_android.dart';
import 'package:shared_preferences_android/shared_preferences_android.dart';
import 'package:url_launcher_android/url_launcher_android.dart';
import 'package:path_provider_ios/path_provider_ios.dart';
import 'package:shared_preferences_ios/shared_preferences_ios.dart';
import 'package:url_launcher_ios/url_launcher_ios.dart';
import 'package:path_provider_linux/path_provider_linux.dart';
import 'package:shared_preferences_linux/shared_preferences_linux.dart';
import 'package:url_launcher_linux/url_launcher_linux.dart';
import 'package:path_provider_macos/path_provider_macos.dart';
import 'package:shared_preferences_macos/shared_preferences_macos.dart';
import 'package:url_launcher_macos/url_launcher_macos.dart';
import 'package:path_provider_windows/path_provider_windows.dart';
import 'package:shared_preferences_windows/shared_preferences_windows.dart';
import 'package:url_launcher_windows/url_launcher_windows.dart';
@pragma('vm:entry-point')
class _PluginRegistrant {
@pragma('vm:entry-point')
static void register() {
if (Platform.isAndroid) {
try {
PathProviderAndroid.registerWith();
} catch (err) {
print(
'`path_provider_android` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try {
SharedPreferencesAndroid.registerWith();
} catch (err) {
print(
'`shared_preferences_android` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try {
UrlLauncherAndroid.registerWith();
} catch (err) {
print(
'`url_launcher_android` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
} else if (Platform.isIOS) {
try {
PathProviderIOS.registerWith();
} catch (err) {
print(
'`path_provider_ios` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try {
SharedPreferencesIOS.registerWith();
} catch (err) {
print(
'`shared_preferences_ios` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try {
UrlLauncherIOS.registerWith();
} catch (err) {
print(
'`url_launcher_ios` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
} else if (Platform.isLinux) {
try {
PathProviderLinux.registerWith();
} catch (err) {
print(
'`path_provider_linux` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try {
SharedPreferencesLinux.registerWith();
} catch (err) {
print(
'`shared_preferences_linux` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try {
UrlLauncherLinux.registerWith();
} catch (err) {
print(
'`url_launcher_linux` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
} else if (Platform.isMacOS) {
try {
PathProviderMacOS.registerWith();
} catch (err) {
print(
'`path_provider_macos` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try {
SharedPreferencesMacOS.registerWith();
} catch (err) {
print(
'`shared_preferences_macos` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try {
UrlLauncherMacOS.registerWith();
} catch (err) {
print(
'`url_launcher_macos` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
} else if (Platform.isWindows) {
try {
PathProviderWindows.registerWith();
} catch (err) {
print(
'`path_provider_windows` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try {
SharedPreferencesWindows.registerWith();
} catch (err) {
print(
'`shared_preferences_windows` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
try {
UrlLauncherWindows.registerWith();
} catch (err) {
print(
'`url_launcher_windows` threw an error: $err. '
'The app may not function as expected until you remove this plugin from pubspec.yaml'
);
}
}
}
}