Since I updated my Android Studio (2.3.1) and build tools (2.3.1), I\'m getting warning,
Warning: Dangling Javadoc comment
for comme
You are using Javadoc format which starts with /** instead of a block comment format which starts with /* .
To alleviate that warning, always start your comments inside the methods with /* not /**.