2016-12-04 16 views
0

이 오류를 찾으려고했지만 불행히도 아직 해결 방법이 없습니다. 그래서 여기에 게시해야합니다.ProcessException 실행 중 오류가 발생했습니다.

error image

apply plugin: 'com.android.application' 

android { 
compileSdkVersion 21 
buildToolsVersion "21.1.2" 

defaultConfig { 
    applicationId "com.pongodev.recipesapp" 
    minSdkVersion 11 
    targetSdkVersion 21 
    versionCode 5 
    versionName "3.0.3" 
} 
buildTypes { 
    release { 
     minifyEnabled false 
     proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
    } 
} 

}

종속 { 이 fileTree을 컴파일 (DIR : 'libs와'포함 : [ '*의 .jar']) 코드 당으로

// Main libraries, you always need this libraries in your project. do not remove them. 
compile 'com.android.support:appcompat-v7:21.0.3' 
compile 'com.android.support:support-v4:21.0.3' 
compile 'com.google.android.gms:play-services:6.5.87' 

// Important library to create material design. do not remove this. 
compile project(':materialDesign') 

// Library to create tabbar 
compile 'com.jpardogo.materialtabstrip:library:1.0.6' 

// Library to create ripple effect. work together with materialDesign library. 
compile 'com.github.traex.rippleeffect:library:1.2.2' 

// Library to create rounded, circle, and any shape image. 
compile 'com.makeramen:roundedimageview:1.4.0' 

// Library load lazy images. 
compile 'com.squareup.picasso:picasso:2.4.0' 

// Library to create simple list. 
compile 'com.android.support:recyclerview-v7:21.0.0' 

// Library to create complex clickable list. 
compile 'com.android.support:cardview-v7:21.0.3' 

// Library to create material dialog. 
compile 'com.afollestad.material-dialogs:core:0.9.0.1' 

// Library to create animation imageview. 
compile 'com.flaviofaria:kenburnsview:1.0.5' 

답변

1

snippest에서 사용할 수 있습니다 build.gradle

변경

compile 'com.android.support:recyclerview-v7:21.0.3' 

대신

compile 'com.android.support:recyclerview-v7:21.0.0' 

에 나는 그것이 문제를 해결하는 데 도움이되기를 바랍니다.

+0

이 솔루션을 사용해보십시오. http://stackoverflow.com/questions/33991832/could-not-find-property-compile-on-org-gradle-api-internal-artifacts-dsl-depen –

+0

여전히 동일한 문제 –

+0

우리는 변경해야하며 여전히 동일한 문제입니다. –

관련 문제