0

オンラインのチュートリアルに従ってAdobe Creative SDKを実装し、最終的にアプリケーションを同期すると、これら2つのエラーが発生しました Error:(65, 14) Failed to resolve: com.adobe.creativesdk.foundation:auth:0.3.94 <a href="openFile">Show in File</a><br><a href="open.dependency.in.project.structure">Show in Project Structure dialog</a>

Error:Failed to resolve: com.adobe.creativesdk.image:4.0.0:
<a href="openFile">Open File</a>

いくつかの調査を行いましたが、この新しい問題を解決できませんでした。以前の問題は解決されました。私はアンドロイドが初めてなので、どうすればこの問題を解決できますか?

build.gradle:

apply plugin: 'com.android.application'

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

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

defaultConfig {
    minSdkVersion 10
    targetSdkVersion 20
    versionCode 1
    versionName "1.0"
}
allprojects {
    repositories {
        mavenCentral()
        jcenter()
        mavenLocal()
        maven {
            url "${project.rootDir}/creativesdk-repo/release"
        }
    }
}

android {
    compileSdkVersion 20
    buildToolsVersion "20.0.0"
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_7
        targetCompatibility JavaVersion.VERSION_1_7
    }

    packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/LICENSE'
    }

    dexOptions {
        javaMaxHeapSize "4g"
    }

}

dependencies {
    compile 'com.adobe.creativesdk.foundation:auth:0.3.94'
    compile 'com.adobe.creativesdk.image:4.0.0'
}
4

1 に答える 1

0

依存関係ブロックに問題があります。Image Editor UI コンポーネントの行は次のように記述する必要があることに注意してください。

compile 'com.adobe.creativesdk:image:4.0.0'

単語の前にimageは、ピリオドではなくコロンが必要です。

その後も依存関係に問題がある場合は、この回答を参照してください

于 2015-10-26T21:37:51.880 に答える