我已经导入了一个项目到Android工作室的几个子项目。

我想运行一个子项目。

我成功地完成了这个子项目的构建。Gradle作为一个模块。

为了运行它,我去运行>编辑配置> + > Android应用程序。

问题:当我尝试选择一个模块时,下拉列表中没有显示。

为什么会这样?

编辑:它在Groovy下显示为一个模块,但在Android应用程序下不显示。我如何让它显示在Android应用程序?


当前回答

如果以上都不起作用。尝试更新你的Android工作室版本。 步骤: 1. 在Android Studio中,选择文件>设置(或Android Studio >偏好在Mac上)。 2. 在左侧窗格中,选择“外观和行为”>“系统设置”>“更新”。 3.确保选中了“自动检查更新”,然后从下拉列表中选择一个频道。 4. 单击OK。

其他回答

之前的答案都不适合我,所以我删除并重新安装了Android Studio。效果很好。

我终于弄清楚了为什么当我为com.android.library模块添加AndroidTests配置时,该模块没有显示。

如果在应用程序的构建中包含库模块。这样Gradle:

compile project(':yourlibrary')

因为对于库模块,它默认是用发布模式编译的,你不能为它运行Android测试,这就是为什么它不会显示在模块列表中。 我做了如下修改:

将以下配置添加到构建中。你的库模块的Gradle:

     publishNonDefault true

通过进行以下更改,您可以通过编辑构建来调试编译库。Gradle你的应用模块如下:

-    compile project(':yourlibrary')
+    debugCompile project(path: ':yourlibrary', configuration: 'debug')
+    releaseCompile project(path: ':yourlibrary', configuration: 'release')

然后同步它,你会发现它显示在列表中。

在我的案例中,问题在于SDK许可接受。 通过SDK管理器下载合适的SDK版本和许可验收解决了这个问题。

以上的方法对我来说都没用。

我刚刚在build中升级了com.android.tools.build:gradle:7.0.0版本。Gradles的最新版本(目前7.0.2),它工作!

我通过以下方法在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 :)