3

我已经在我的应用程序中集成了 Adob​​e SDK。之前使用 ImageUIEditor 的整个应用程序工作正常,直到我现在看到这个错误

Failed to resolve: com.nineoldandroids:library+

这个错误让我感到恶心。过去 7 小时我一直在搞砸,但在任何地方都找不到任何解决方案。这个错误属于

创意sdk-repo

文件夹

4

2 回答 2

2

以下是一些有效的尝试:

1.build.gradle,允许mavenCentral()

2.build.gradle中,将以下代码添加到您的android块中:

configurations.all {
    resolutionStrategy {
        force 'com.nineoldandroids:library:2.4.0'
    }
}

#1应该做的伎俩。保留#2作为最后的手段。

于 2016-01-12T15:46:12.987 回答
1

我在项目中还遇到了更多问题,然后我发现我忘记添加第 1 点,由@AshRayan 建议所以,如果有人想知道,只需将其添加到您的 build.gradle

allprojects {
    repositories {
        jcenter()
        mavenCentral()
        flatDir {
            dirs 'aars'
        }
        maven {
            url "${project.rootDir}/creativesdk-repo/release" // Location of the CSDK repo
        }
    } }

快乐编码!

于 2016-01-15T23:36:40.693 回答