Open4

Naming Rules package

ykwsykws

https://kotlinlang.org/docs/coding-conventions.html#naming-rules

Names of packages are always lowercase and do not use underscores (org.example.project). Using multi-word names is generally discouraged, but if you do need to use multiple words, you can either just concatenate them together or use camel case (org.example.myProject).

パッケージ名は常に小文字とし、アンダースコアは使わないようにしましょう(例えば、 org.example.project とします)
複数の言葉を使用する名前は、一般的に推奨されませんが、複数の言葉を使う必要があるならば、それらを連携するか、キャメルケースを使いましょう(例えば、 org.example.myProject のようにです)

ykwsykws

https://google.github.io/styleguide/javaguide.html#s5.2.1-package-names

Google の方では、 Java ベースではあるもののキャメルケースは推奨していません。

Package names use only lowercase letters and digits (no underscores). Consecutive words are simply concatenated together. For example, com.example.deepspace, not com.example.deepSpace or com.example.deep_space.

パッケージ名は小文字と数字だけを使いましょう(アンダースコアはなし)
連続する単語は単純に連携します。例えば、 com.example.deepspace とし、 com.example.deepSpacecom.example.deep_space とはしないです。

ykwsykws

https://docs.oracle.com/javase/tutorial/java/package/namingpkgs.html

In some cases, the internet domain name may not be a valid package name. This can occur if the domain name contains a hyphen or other special character, if the package name begins with a digit or other character that is illegal to use as the beginning of a Java name, or if the package name contains a reserved Java keyword, such as "int". In this event, the suggested convention is to add an underscore. For example:

Oracle の Java はアンダースコアを推奨