0

I have tried look for this error, but unluckily, no solution yet. So need to post here.

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'
    }
}

}

dependencies { compile fileTree(dir: 'libs', include: ['*.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'
Marcin Orlowski
  • 72,056
  • 11
  • 123
  • 141
Ziko'w YaW
  • 11
  • 2

1 Answers1

1

As per your code snippest you can use in build.gradle

Change to

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

Instead of

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

I hope it will help to resolve your issue.

Nitin Karande
  • 1,280
  • 14
  • 33