Every time I copy a `Log.v(TAG, "message")` line f...
# android
h
Every time I copy a
Log.v(TAG, "message")
line from one file to another in AS, the ide is "smart" and makes a static import so that what I paste actually becomes just
v(TAG, "message")
. But I prefer to keep the whole thing. Is there a preference setting for this somewhere? (Looked in Settings -> Editor -> General -> Auto Import, but couldn't figure out what would possibly meet my needs here.)