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
Answer Checked By - Terry (JavaFixing Volunteer)