I want to change the automatic author that appears when I create a file in AndroidStudio.
/** * Created by a556520 on 16/01/14. */ public class POI {
You can overwrite the ${USER} variable in the template file with the
${USER}
#set( $VARIABLE = "value")
function. Go to Settings -> Editor -> File and Code Templates -> Includes -> File Header prepend the #set() function call, for example:
#set()
#set( $USER = "Your name" ) /** * Created by ${USER} on ${DATE}. */