我正试图在android studio 0.8上的ubuntu 14.04上构建iosched应用程序。导入setting.gradle文件并按照构建指令后,出现错误
Error
:FAILURE: Build failed with an exception.
* What went wrong:
Task 'assemble' not found in root project 'iosched'.
* Try:
Run gradle tasks to get a list of available tasks. Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
这篇文章中提到的solution也不起作用。
答案 0 :(得分:7)
尝试在root build.gradle文件中添加:task assemble{}
。
根据this thread它有帮助(它对我有帮助)。
答案 1 :(得分:1)
就我而言,这是因为我的项目实现了一个android-library
(已弃用)/ com.android.library
的模块,该模块比我的项目低minSdkVersion
。
请确保您的项目android-library
/ com.android.library
具有相同的minSdkVersion
。