3

I have integrated Adobe SDK in my app.OK previously the whole app with ImageUIEditor was working fine until i see this error now

Failed to resolve: com.nineoldandroids:library+

And this error is making me sick.I have been messing up for the last 7 hours,but couldnt find any solution any where. This error belong to the

creative-sdk-repo

folder

Ajji
  • 3,068
  • 2
  • 30
  • 31

2 Answers2

2

Here are a couple of things to try that have worked:

1. In build.gradle, allow mavenCentral().

2. In build.gradle, add the following code to your android block:

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

#1 should do the trick. Keep #2 as a last resort.

Ash Ryan Arnwine
  • 1,471
  • 1
  • 11
  • 27
1

I also faced some more issues in the project , then i figured out i forgot to add point number 1, suggested by @AshRayan So , if any body's wondering just add this to your build.gradle

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

Happy Coding !

Ajji
  • 3,068
  • 2
  • 30
  • 31