// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
终于,基本上能打开工程了。。还没完
会报告cordovalib 里找不到justepgetcontent。。
Gradle sync failed: Project with path ':JustepGetContent' could not be found in project ':CordovaLib'.
Consult IDE log for more details (Help | Show Log)
错误定位在下面这句
dependencies {
compile project(':JustepGetContent')
}
解决方法:
settings.gradle
增加JustepGetContent --- 注意大小写敏感哈
include ":"
include ":JustepGetContent"
include ":CordovaLib"