By default Android Studio automatically adds a header comment to all new classes, e.g.
/**
* Created by Dan on 11/20/13.
*/
Where is the
You can overwrite the ${USER} variable in the template file with the #set( $VARIABLE = "value") function.
On windows: Press Ctrl+Alt+S and go to Settings -> File and Code Templates -> Includes -> File Header
On Mac: Android Studio -> Preferences -> Editor ->
File and Code Templates -> Includes -> File Header
prepend the #set() function call, for example:
#set( $USER = "YourName" )
/**
* Created by ${USER} on ${DATE}.
*/