When I move classes around, I often end up with ty...
# android-studio
m
When I move classes around, I often end up with types being fully qualified with the prefix
_<http://root_ide_package_.com|root_ide_package_.com>.foo
. This seems to happen with both android and KMP library modules. Anyone else seeing this? How to avoid?
3
m
My current mental model is this happens when "indexing is not finished yet". Last time this happened, I think I "undo" and then retried the refactoring a bit later and it worked fine.
Maybe I'm just trying to post-rationalize a bug though...
m
Often I don’t notice until later when undo is not an option, so then I need to trawl through, remove _root stuff and add the necessary imports. Rather annoying!
nod 1
BTW, I’m doing a lot of migration from one module to another (new location and new package structure). The target can be either a new Android module or a new KMP module.