Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public FlutterView(@NonNull Context context, @NonNull RenderMode renderMode) {
renderSurface = flutterTextureView;
} else {
throw new IllegalArgumentException(
String.format("RenderMode not supported with this constructor: ", renderMode));
String.format("RenderMode not supported with this constructor: %s", renderMode));
}

init();
Expand Down Expand Up @@ -265,7 +265,7 @@ public FlutterView(
renderSurface = flutterTextureView;
} else {
throw new IllegalArgumentException(
String.format("RenderMode not supported with this constructor: ", renderMode));
String.format("RenderMode not supported with this constructor: %s", renderMode));
}

init();
Expand Down