Skip to content

Commit a8465aa

Browse files
authored
include the results from the parent in the method
1 parent 2624ee5 commit a8465aa

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tutorials/platform/android/android_library.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,11 @@ Below we break-down the steps used to create the GLTF Viewer app.
185185
186186
@Override
187187
public List<String> getCommandLine(){
188-
return List.of("--main-pack","res://foo.pck");
188+
List<String> results = new ArrayList<>();
189+
results.addAll(super.getCommandLine());
190+
results.add("--main-pack");
191+
results.add("res://foo.pck");
192+
return results;
189193
}
190194

191195
The instructions below and the sample app follow the first approach of creating the Godot project in the Android app's ``assets`` directory.

0 commit comments

Comments
 (0)