I have imported an Android Studio
project from Github
into Android Studio
, and although my build.gradle
has the dependencies
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
}
I still get the error when trying to run:
Error:(4, -1) android-apt-compiler: error: Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light.DarkActionBar'.
I have very little experience with this build system. Could you please indicate what I could do to solve this error?