有办法删除一个模块在Android工作室? 当我右键单击一个模块,我找不到删除选项,是在其他地方吗?


当前回答

对于最新的Android Studio版本,删除Android Studio中的一个模块:

1. Open File -> Project Structure
2. Choose the Modules section from the left column.
3. In the right panel opened ,select the module you want to delete.
4. After selecting the module tap the (-) icon on the top to delete the respective module.

其他回答

在Android Studio中删除模块:3.1.4。

Goto Project-->Right Click on Module (FolderIcon-GreywithGreenColorDot) -->Load/UnLoadModules in PopUp -->Select Which Module to Unload in PopUpWindow Again RightClick on Module (FolderIcon-OrangeColor) -->Remove module. Finally, RightClick again on Module (FolderIcon-GreyColor) -->Delete. Note:Incase Project Enabled with Git please remove module from settings.gradle, otherwise deleted module.iml will show in project module list(Reference Link).gradle.xml which is located in project/.idea/gradle.xml--remove a module from here.

希望能有所帮助。 感谢。

编辑项目的设置。Gradle文件:删除模块名(,':xxxxx'),其中xxxxx是要删除的模块名 使用文件资源管理器删除模块文件夹

顺便说一下,当前版本的Android Studio (v3.1.2)抛出一个异常,并退出删除与一个错误,而我正在删除模块通过模块设置=>选定模块=> -(减)

最好的问候,谢谢)

这是Android studio 2.3.3 我没有在文件菜单下找到任何项目结构。 这是图片中的步骤

在Android Studio 1.0 - 1.1b4中,我发现这是删除模块的最简单方法:

打开设置。gradle在gradle脚本下找到 从include语句中删除模块名 用Gradle文件同步项目 可选地,从项目文件夹手动删除它

例子

Old:

include ':app', ':greendao'

New:

include ':app'

我发现的最可靠的方法是进入项目结构,从依赖项中删除它,从你的设置中删除它。gradle文件。

在他看来,它似乎被完全删除了,但事实并非如此。如果您尝试重新添加模块,它会说它已经存在于项目中。

最后一步是使用文件资源管理器等到项目的位置并删除模块。

在studio 1.3.1上100%的时间都是这样