Search code examples
androidadobecreativesdk

Adobe Creative SDK - nineoldAndroidsLibrary Issue


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


Solution

  • 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.