Android Studio。错误:(24,24)无法解决

时间:2015-04-28 10:29:34

标签: android android-studio

我正在为Android手持系统课程学习Coursera编程移动应用程序,当我尝试运行实验室时,我收到错误:

  

(24,24):未能解决:   com.jayway.android.robotium:robotium-独奏:5.3.1

我的系统正在使用Proxi,但我调整了AS,因此可以使用更新和组件。我该怎么做才能解决这个错误?

1 个答案:

答案 0 :(得分:0)

为了能够使用lib项目,您需要将其包含在应用程序的settings.gradle add:

include '..:ExpandableButtonMenu:library'
compile project(':..:ExpandableButtonMenu:library') 

Good link visit "how to build an android library with android studio and gradle

相关问题