Package io.flutter.embedding.engine
Class FlutterShellArgs
java.lang.Object
io.flutter.embedding.engine.FlutterShellArgs
Deprecated.
DEPRECATED. Please see
FlutterEngineFlags for the list of arguments to use or update if
you are adding a new flag.
Arguments that can be delivered to the Flutter shell when it is created.
The term "shell" refers to the native code that adapts Flutter to different platforms.
Flutter's Android Java code initializes a native "shell" and passes these arguments to that
native shell when it is initialized. See FlutterLoader.ensureInitializationComplete(Context, String[])
for more information.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated.static final StringDeprecated. -
Constructor Summary
ConstructorsConstructorDescriptionFlutterShellArgs(String[] args) Deprecated.Creates a set of Flutter shell arguments from a givenString[]array.FlutterShellArgs(List<String> args) Deprecated.Creates a set of Flutter shell arguments from a givenList<String>.FlutterShellArgs(Set<String> args) Deprecated.Creates a set of Flutter shell arguments from a givenSet<String>. -
Method Summary
Modifier and TypeMethodDescriptionvoidDeprecated.Adds the givenargto this set of arguments.static FlutterShellArgsfromIntent(Intent intent) Deprecated.voidDeprecated.Removes the givenargfrom this set of arguments.String[]toArray()Deprecated.Returns a newString[]array which contains each of the arguments within thisFlutterShellArgs.
-
Field Details
-
ARG_KEY_TRACE_STARTUP
Deprecated.- See Also:
-
ARG_TRACE_STARTUP
Deprecated.- See Also:
-
ARG_KEY_START_PAUSED
Deprecated.- See Also:
-
ARG_START_PAUSED
Deprecated.- See Also:
-
ARG_KEY_DISABLE_SERVICE_AUTH_CODES
Deprecated.- See Also:
-
ARG_DISABLE_SERVICE_AUTH_CODES
Deprecated.- See Also:
-
ARG_KEY_ENDLESS_TRACE_BUFFER
Deprecated.- See Also:
-
ARG_ENDLESS_TRACE_BUFFER
Deprecated.- See Also:
-
ARG_KEY_USE_TEST_FONTS
Deprecated.- See Also:
-
ARG_USE_TEST_FONTS
Deprecated.- See Also:
-
ARG_KEY_ENABLE_DART_PROFILING
Deprecated.- See Also:
-
ARG_ENABLE_DART_PROFILING
Deprecated.- See Also:
-
ARG_KEY_PROFILE_STARTUP
Deprecated.- See Also:
-
ARG_PROFILE_STARTUP
Deprecated.- See Also:
-
ARG_KEY_ENABLE_SOFTWARE_RENDERING
Deprecated.- See Also:
-
ARG_ENABLE_SOFTWARE_RENDERING
Deprecated.- See Also:
-
ARG_KEY_SKIA_DETERMINISTIC_RENDERING
Deprecated.- See Also:
-
ARG_SKIA_DETERMINISTIC_RENDERING
Deprecated.- See Also:
-
ARG_KEY_TRACE_SKIA
Deprecated.- See Also:
-
ARG_TRACE_SKIA
Deprecated.- See Also:
-
ARG_KEY_TRACE_SKIA_ALLOWLIST
Deprecated.- See Also:
-
ARG_TRACE_SKIA_ALLOWLIST
Deprecated.- See Also:
-
ARG_KEY_TRACE_SYSTRACE
Deprecated.- See Also:
-
ARG_TRACE_SYSTRACE
Deprecated.- See Also:
-
ARG_KEY_TRACE_TO_FILE
Deprecated.- See Also:
-
ARG_TRACE_TO_FILE
Deprecated.- See Also:
-
ARG_KEY_PROFILE_MICROTASKS
Deprecated.- See Also:
-
ARG_PROFILE_MICROTASKS
Deprecated.- See Also:
-
ARG_KEY_TOGGLE_IMPELLER
Deprecated.- See Also:
-
ARG_ENABLE_IMPELLER
Deprecated.- See Also:
-
ARG_DISABLE_IMPELLER
Deprecated.- See Also:
-
ARG_KEY_ENABLE_VULKAN_VALIDATION
Deprecated.- See Also:
-
ARG_ENABLE_VULKAN_VALIDATION
Deprecated.- See Also:
-
ARG_KEY_ENABLE_HCPP_AND_SURFACE_CONTROL
Deprecated.- See Also:
-
ARG_ENABLE_HCPP_AND_SURFACE_CONTROL
Deprecated.- See Also:
-
ARG_DISABLE_HCPP_AND_SURFACE_CONTROL
Deprecated.- See Also:
-
ARG_KEY_DUMP_SHADER_SKP_ON_SHADER_COMPILATION
Deprecated.- See Also:
-
ARG_DUMP_SHADER_SKP_ON_SHADER_COMPILATION
Deprecated.- See Also:
-
ARG_KEY_CACHE_SKSL
Deprecated.- See Also:
-
ARG_CACHE_SKSL
Deprecated.- See Also:
-
ARG_KEY_PURGE_PERSISTENT_CACHE
Deprecated.- See Also:
-
ARG_PURGE_PERSISTENT_CACHE
Deprecated.- See Also:
-
ARG_KEY_VERBOSE_LOGGING
Deprecated.- See Also:
-
ARG_VERBOSE_LOGGING
Deprecated.- See Also:
-
ARG_KEY_VM_SERVICE_PORT
Deprecated.- See Also:
-
ARG_VM_SERVICE_PORT
Deprecated.- See Also:
-
ARG_KEY_DART_FLAGS
Deprecated.- See Also:
-
ARG_DART_FLAGS
Deprecated.- See Also:
-
-
Constructor Details
-
FlutterShellArgs
Deprecated.Creates a set of Flutter shell arguments from a givenString[]array. The given arguments are automatically de-duplicated. -
FlutterShellArgs
Deprecated.Creates a set of Flutter shell arguments from a givenList<String>. The given arguments are automatically de-duplicated. -
FlutterShellArgs
Deprecated.Creates a set of Flutter shell arguments from a givenSet<String>.
-
-
Method Details
-
fromIntent
Deprecated. -
add
Deprecated.Adds the givenargto this set of arguments.- Parameters:
arg- argument to add
-
remove
Deprecated.Removes the givenargfrom this set of arguments.- Parameters:
arg- argument to remove
-
toArray
Deprecated.Returns a newString[]array which contains each of the arguments within thisFlutterShellArgs.- Returns:
- array of arguments
-