From 577300ef7fa804fa10a575d3d164853e0c3e2c3d Mon Sep 17 00:00:00 2001 From: OS-pedrogustavobilro Date: Wed, 4 Mar 2026 18:25:31 +0000 Subject: [PATCH 1/2] docs: Explicitly set Java language for create tutorial --- docs/plugins/tutorial/packaging.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/plugins/tutorial/packaging.md b/docs/plugins/tutorial/packaging.md index 0aeeab067..5f53e2589 100644 --- a/docs/plugins/tutorial/packaging.md +++ b/docs/plugins/tutorial/packaging.md @@ -29,6 +29,7 @@ npx @capacitor/create-plugin \ --repo "https://ionic.io" \ --license "MIT" \ --description "Work with the screen orientation in a common way for iOS, Android, and web" + --android-lang java ``` When prompted to provide a directory, use the default by pressing Enter. When asked for the author’s name, use your own! From 3e414534ff0c6e485f35a791e332ed5f25cc772f Mon Sep 17 00:00:00 2001 From: OS-pedrogustavobilro Date: Wed, 4 Mar 2026 18:37:49 +0000 Subject: [PATCH 2/2] docs: Add missing slash --- docs/plugins/tutorial/packaging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/plugins/tutorial/packaging.md b/docs/plugins/tutorial/packaging.md index 5f53e2589..7e57772a0 100644 --- a/docs/plugins/tutorial/packaging.md +++ b/docs/plugins/tutorial/packaging.md @@ -28,7 +28,7 @@ npx @capacitor/create-plugin \ --class-name ScreenOrientation \ --repo "https://ionic.io" \ --license "MIT" \ - --description "Work with the screen orientation in a common way for iOS, Android, and web" + --description "Work with the screen orientation in a common way for iOS, Android, and web" \ --android-lang java ```