欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

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.

Android Studio出现Error:No service of type Factory available in ProjectScopeServic

clean了下工程,发现好像是maven出了问题

Android Studio出现Error:No service of type Factory available in ProjectScopeServic

于是把问题定位到根目录的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就可以解决问题了。