我正在尝试在我的应用程序中使用ShowcaseView项目,但无法获得要构建的项目.
当我运行'gradle clean installDebug'时,我收到以下错误:
A problem occurred evaluating root project 'hows-it-going'.
无法在根项目'hows-it-going'上找到参数[project':ShowcaseView']的方法compile().
我正在使用gradle 1.11和Android Studio 0.54.
我已下载源代码,并使用文件 - >导入模块 - > ShowcaseView导入
项目,这使我的项目结构如下:
-项目
--app
--ShowcaseView
我的settings.gradle文件如下所示:
include ':app', 'ShowcaseView'
在我的项目级build.gradle我有以下内容:
dependencies { compile project (':ShowcaseView') }
任何有关如何正确包含这一点的帮助将非常感激.谢谢.
最新版本的ShowcaseView可用作.AAR依赖项.要使用它,请添加:
repositories { mavenCentral() maven { url 'https://oss.sonatype.org/content/repositories/snapshots' } }
在build.gradle文件中,在依赖项块下添加:
compile 'com.github.amlcurran.showcaseview:library:5.0.0-SNAPSHOT'
我很快就会得到一个稳定的非快照版本.
它应该是
compile 'com.github.amlcurran.showcaseview:library:5.0.0-SNAPSHOT@aar'
那样Maven就会使用.AAR文件