I solved the problem by editing the line below in build.gradle and it works! :-)
adding version 20.+'
From
dependencies {
compile 'com.android.support:appcompat-v7:+'
}
To
dependencies {
compile 'com.android.support:appcompat-v7:20.+'
}