嗨,我在生成apk时遇到了问题,并给出了这个错误
FAILURE: Build failed with an exception.
* What went wrong:
Could not determine the dependencies of task ':app:compileReleaseJavaWithJavac'.
> Could not resolve all task dependencies for configuration ':app:releaseCompileClasspath'.
> Could not find ir.tapsell.plus:tapsell-plus-sdk-android:1.1.1.
Required by:
project :app
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 6s现在我该怎么做才能解决这个问题呢?请给我指引
发布于 2020-03-19 18:35:14
sample app解释说,TapsellPlus SDK是从第三方存储库下载的,您需要在根build.gradle中指定。
allprojects {
repositories {
google()
jcenter()
maven { // THIS
url 'https://dl.bintray.com/tapsellorg/maven'
}
}
}https://stackoverflow.com/questions/60750749
复制相似问题