소스 검색

Update android_library.rst

Anish Mishra 3 달 전
부모
커밋
69ef0202b9
1개의 변경된 파일10개의 추가작업 그리고 10개의 파일을 삭제
  1. 10 10
      tutorials/platform/android/android_library.rst

+ 10 - 10
tutorials/platform/android/android_library.rst

@@ -181,16 +181,16 @@ Below we break-down the steps used to create the GLTF Viewer app.
 
 
   Example:
   Example:
 
 
-.. code-block:: java
-
-@Override
-public List<String> getCommandLine(){
-    List<String> results = new ArrayList<>();
-    results.addAll(super.getCommandLine());
-    results.add("--main-pack");
-    results.add("res://foo.pck");
-    return results;
-}
+  .. code-block:: java
+  
+    @Override
+    public List<String> getCommandLine(){
+        List<String> results = new ArrayList<>();
+        results.addAll(super.getCommandLine());
+        results.add("--main-pack");
+        results.add("res://foo.pck");
+        return results;
+    }
 
 
   The instructions below and the sample app follow the first approach of creating the Godot project in the Android app's ``assets`` directory.
   The instructions below and the sample app follow the first approach of creating the Godot project in the Android app's ``assets`` directory.