我已经导入了一个项目到Android工作室的几个子项目。
我想运行一个子项目。
我成功地完成了这个子项目的构建。Gradle作为一个模块。
为了运行它,我去运行>编辑配置> + > Android应用程序。
问题:当我尝试选择一个模块时,下拉列表中没有显示。
为什么会这样?
编辑:它在Groovy下显示为一个模块,但在Android应用程序下不显示。我如何让它显示在Android应用程序?
我已经导入了一个项目到Android工作室的几个子项目。
我想运行一个子项目。
我成功地完成了这个子项目的构建。Gradle作为一个模块。
为了运行它,我去运行>编辑配置> + > Android应用程序。
问题:当我尝试选择一个模块时,下拉列表中没有显示。
为什么会这样?
编辑:它在Groovy下显示为一个模块,但在Android应用程序下不显示。我如何让它显示在Android应用程序?
当前回答
在Android Studio 3.1.2中,我也遇到了同样的问题。我通过点击“File->Sync Project with Gradle Files”解决了这个问题。这对我很有用。:)
其他回答
我通过以下方法在Android Studio 1.3.1中修复了这个问题:
Make a new module from File -> New -> New Module Name it something different, e.g. 'My Libary' Copy an .iml file from an existing library module and change the name of the file and rename references in the .iml file Add the module name to settings.gradle Add the module dependency in your app's build.gradle file 'compile project(':mylibrary')' Close and reopen Android Studio Verify that Android Studio recognises the module as a library (should be bold) Rename module's directory and module name by right clicking on the newly created module. Enjoy :)
当我选择我的项目的父目录时,我有类似的问题,我通过关闭项目->从Android Studio删除项目->导入项目,选择正确的构建来解决。gradle文件。
确保您选择了正确的构建。导入Gradle文件。
对于我来说,我是一个新手,我搞砸了我的项目,不知道怎么回事,但它不会再运行,并抱怨清单,R,一切。我在我的设定中意识到这一点。gradle没有包含“:app”,一旦我添加了这个,我就回到了我的方式。
如果以上都不起作用。尝试更新你的Android工作室版本。 步骤: 1. 在Android Studio中,选择文件>设置(或Android Studio >偏好在Mac上)。 2. 在左侧窗格中,选择“外观和行为”>“系统设置”>“更新”。 3.确保选中了“自动检查更新”,然后从下拉列表中选择一个频道。 4. 单击OK。
之前的答案都不适合我,所以我删除并重新安装了Android Studio。效果很好。