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.
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.
Click with right button in your packet and find REFACTOR.Inside It you have the option Rename and after clicking a window will appear to confirm you with warnings.
Try it!
Basically, You need to move the entire below files to precedent package.
Suppose..
Package: com.app.example.food
if you want to delete example from package.
Move com.app.example."food" directory to com."app" directory directly
Done.
click on Setting,in setting click compack Empty middle package then click on your package :-> Refactor->Rename ->ok
Android Studio indirectly (but easily) supports this requirement;
e.g. Change java.X.Y.myPrecious to java.myPrecious [assume packages X and Y are empty]
(a) Select Android from dropdown heading in Project window.
(b) Using the 'gear/cog' tool uncheck Compact Empty Middle packages
(c) Drag myPrecious to java (be patient if necessary)
(d) Right-click/Delete X
(e) Clean and Rebuild the project making any obvious changes to the Manifest if necessary.
There is a much better way to do this. com.example.app >> com.app
In Android Studio,
1) Open your project pane (tab on left top) select Android option.
2) In the same pane click on the gear icon and uncheck "Compact Entity Middle Packages".
3) Expand your package hierarchy in Project pane.
4) Now drag the package app (the one you want to move) on the package com (where you want to move).
5) You will see a red boundary around the com package now drop package app.
6) A popup should appear select "Move package", next enter com package path, next select do refactor.
Done!!
Please note, different Studio versions have different options but drag and drop method remains the same
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.