It is because, in appcompat-v7
project, the AndroidManifest.xml
declare uses-sdk minSdkVersion
to 19 while your project set to 15 which is inappropriate.
You can try set your project value greater-or-equals than value declared in appcompat-v7
. For example, 19 in both projects.
3
solved Problems with Android Studio