问题描述
我想从包装名称中删除中间部分.例如: com.example.app 到 com.app
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 think that the only you can achieve that is this:
-
按 + + ,将
Text to find
设置为com.example.app
,将Replace with
设置为com.app
然后按Find
,All Files
.
Press ++, set
Text to find
tocom.example.app
,Replace with
tocom.app
and hitFind
,All Files
.
之后,在文件管理器中打开目录com
,将app
向上移到层次结构中,使其变为com/app
并删除example
目录.
After that open the directory com
in file manager, move app
up in hierarchy, so it becomes com/app
and remove example
directory.
这篇关于Android Studio从包名称中删除中间部分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!