Android studio remove middle part from package nam

2020-06-03 04:06发布

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.

6条回答
不美不萌又怎样
2楼-- · 2020-06-03 04:25

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!

查看更多
不美不萌又怎样
3楼-- · 2020-06-03 04:34

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.

查看更多
▲ chillily
4楼-- · 2020-06-03 04:44

click on Setting,in setting click compack Empty middle package then click on your package :-> Refactor->Rename ->ok

查看更多
叼着烟拽天下
5楼-- · 2020-06-03 04:45

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.

查看更多
放我归山
6楼-- · 2020-06-03 04:46

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

查看更多
来,给爷笑一个
7楼-- · 2020-06-03 04:47

I think that the only you can achieve that is this:

  1. Press Ctrl+Shift+R, set Text to find to com.example.app, Replace with to com.app and hit Find, All Files.

  2. After that open the directory com in file manager, move app up in hierarchy, so it becomes com/app and remove example directory.

查看更多
登录 后发表回答