Jaydeep Gadhia
Jaydeep Gadhia

Reputation: 59

Failed to resolve: com.adobe.creativesdk.foundation:auth:0.9.1251

I'm having trouble Android Studio to find Adobe Creative SDK.

I have downloaded sample from github.

I have set my Key class as per instruction.

My gradle file of application.

apply plugin: 'com.android.application'

apply plugin: 'me.tatarka.retrolambda'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.0"

    defaultConfig {
        applicationId "com.adobe.imageeditorui"
        minSdkVersion 16 // Minimum is 16
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        manifestPlaceholders = [appPackageName: "${applicationId}"]
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    /* 2) Compile for Java 1.8 or greater */
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    /* 3) Exclude duplicate licenses */
    packagingOptions {
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/DEPENDENCIES'
        pickFirst 'AndroidManifest.xml'
    }

    /* 4) Enable jumbo mode */
    dexOptions {
        jumboMode true
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:25.1.0'
    compile 'com.android.support:design:25.1.0'
    compile 'com.adobe.creativesdk.foundation:auth:0.9.1251'
    compile 'com.adobe.creativesdk:image:4.8.4'
    compile "com.localytics.android:library:3.8.0"
}

and main gradle file :

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.3'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files

        /* 1) Add the Gradle Retrolambda Plugin */
        classpath 'me.tatarka:gradle-retrolambda:3.3.0-beta4'
    }
}

allprojects {
    repositories {
        jcenter()

        /* 2) Add mavenCentral */
        mavenCentral()

        /* 3) Add the Creative SDK Maven repo URL */
        maven {
            url 'https://repo.adobe.com/nexus/content/repositories/releases/'
        }

        maven {
            url 'http://maven.localytics.com/public'
        }


    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

But still i am having issue while sync project below :

--> Failed to resolve: com.adobe.creativesdk.foundation:auth:0.9.1251

--> Failed to resolve: com.adobe.creativesdk:image:4.8.4

Upvotes: 0

Views: 1334

Answers (2)

rakshak manandhar
rakshak manandhar

Reputation: 21

In your main application, gradle file add this:

    maven {
        url 'https://repo.adobe.com/nexus/content/repositories/releases/'
    }

    maven {
        url 'http://maven.localytics.com/public'
    }

    maven{
        url 'https://maven.google.com'
    }

    mavenCentral()
}

You have two repositories of maven already included. Add the google maven repo as well. This will solve the problem.

Upvotes: 2

Mohammad Hossein jfp
Mohammad Hossein jfp

Reputation: 528

you could use aar library download com.adobe.creativesdk.foundation:auth:0.9.1251 from above link

Link

then place it to library folder and import it.

and for another library download it from above link and do same again.

Link

Hope it help.

Upvotes: 0

Related Questions