Issue
I want to remove the middle part from the package name.
Ex: com.example.app to com.app
I have tried few things but not able to remove the middle part of the package name without errors.
Solution
I think that the only you can achieve that is this:
-
Press Ctrl+Shift+R, set
Text to find
tocom.example.app
,Replace with
tocom.app
and hitFind
,All Files
. -
After that open the directory
com
in file manager, moveapp
up in hierarchy, so it becomescom/app
and removeexample
directory.
Answered By – aga
This Answer collected from stackoverflow, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0