解决 Android Studio : minSdkVersion 8 cannot be smaller than version
Android Studio 版本:0.8.2 beta 本文介绍了解决导入工程出现“cannot be smaller than version L”的解决方法 报错: [html] view plain copy Error:Executionfailedfortask':app:processDebugManifest'. >Manifestmergerfailed:uses-sdk:minSdkVersion8cannotbesmallerthanversionLdeclaredinlibrary..... 解决: 很简单,这个是4.21的V4兼容库的问题,修改build.gradle : [javascript] view plain copy dependencies{ compile'com.android.support:support-v4:+' compilefileTree(dir:'ilbs',include:['*.jar']) } 为 [html] view plain copy dependencies{ compile'com.android.su...