Android Studio出现Error:No service of type Factory available in ProjectScopeServic
程序员文章站
2022-03-23 09:27:12
Android Studio出现Error:No service of type Factory available in ProjectScopeServices.。
升级...
Android Studio出现Error:No service of type Factory available in ProjectScopeServices.。
升级完Android Studio 2.1.3 后编译时出现Error:No service of type Factory available in ProjectScopeServices.
clean了下工程,发现好像是maven出了问题
于是把问题定位到根目录的build.gradle
buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.1.3' classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2' classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3' } }
直接将' classpath com.github.dcendents:android-maven-gradle-plugin:1.3'更新到1.4.1就可以解决问题了。