We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2624ee5 commit a8465aaCopy full SHA for a8465aa
tutorials/platform/android/android_library.rst
@@ -185,7 +185,11 @@ Below we break-down the steps used to create the GLTF Viewer app.
185
186
@Override
187
public List<String> getCommandLine(){
188
- return List.of("--main-pack","res://foo.pck");
+ List<String> results = new ArrayList<>();
189
+ results.addAll(super.getCommandLine());
190
+ results.add("--main-pack");
191
+ results.add("res://foo.pck");
192
+ return results;
193
}
194
195
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