Sometimes when I copy code between projects, the i...
# android-studio
z
Sometimes when I copy code between projects, the imports will be wrong but correct (i.e.
SomeFunction
will be under package
x.y.z
instead of `a.b.c`; but still named the same). I usually go through the functions and import them manually, but I was wondering if theres a better way? Add unambigious imports on the fly seems good, but I also dont want to have that enabled all of the time since it slows down code completion and the overall flow.
👍 1