首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >未能解决:播放-服务-任务-许可(将google()放在jcenter()之前不起作用)

未能解决:播放-服务-任务-许可(将google()放在jcenter()之前不起作用)
EN

Stack Overflow用户
提问于 2019-01-25 12:47:20
回答 1查看 85关注 0票数 0

每当我尝试运行我的应用程序时,我都会得到以下的gradle错误:

未能解决:播放-服务-任务-许可证

根据this的问题,我已经尝试了所有可能的解决方案,但都没有奏效。

如果我将google()放在依赖项的第一行,那么错误仍然会出现.。

如果可以的话请帮忙。

我的应用程序级build.gradle文件:

代码语言:javascript
复制
buildscript {
    repositories {
        maven { url 'https://maven.fabric.io/public' }
    }

    dependencies {
        classpath 'io.fabric.tools:gradle:1.+'
    }
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

android {
    compileSdkVersion 26
    buildToolsVersion '28.0.3'

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    defaultConfig {
        minSdkVersion 19
        applicationId 'com.myapppackage.app'
        targetSdkVersion 26
        versionCode 77
        versionName '1.5.53'
        multiDexEnabled true

        vectorDrawables.useSupportLibrary = true

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        testInstrumentationRunner 'io.appflate.restmock.android.RESTMockTestRunner'
    }
}


repositories {
    maven {
        url 'https://maven.google.com/'
        name 'Google'
    }
    maven { url "https://jitpack.io" }
    maven { url 'https://maven.fabric.io/public' }
}


dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')

    implementation 'com.android.support:appcompat-v7:26.0.2'
    implementation 'com.android.support:design:26.0.2'
    implementation 'com.android.support:multidex:1.0.2'

    implementation 'com.google.android.gms:play-services-gcm:11.8.0'
    implementation 'com.google.android.gms:play-services-location:11.8.0'
    implementation 'com.google.android.gms:play-services-maps:11.8.0'
    implementation 'com.google.android.gms:play-services-ads:11.8.0'
    implementation 'com.google.android.gms:play-services-base:11.8.0' 

    implementation files('libs/youtube.jar')

}

我的项目级分级文件:

代码语言:javascript
复制
    // Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        google()
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
        jcenter()


    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.4'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2019-01-25 12:53:30

我认为您需要像这样更改项目级别的build.gradle文件:

代码语言:javascript
复制
buildscript {
    repositories {
        google()
        jcenter()
        maven { url 'https://maven.fabric.io/public' }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.4'

        classpath 'io.fabric.tools:gradle:1.+'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

把这个移除

代码语言:javascript
复制
repositories {
    maven {
        url 'https://maven.google.com/'
        name 'Google'
    }
    maven { url "https://jitpack.io" }
    maven { url 'https://maven.fabric.io/public' }
}

还有这个

代码语言:javascript
复制
buildscript {
    repositories {
        maven { url 'https://maven.fabric.io/public' }
    }

    dependencies {
        classpath 'io.fabric.tools:gradle:1.+'
    }
}

来自您的应用程序build.gradle文件

PS:您也可以删除implementation files('libs/youtube.jar'),因为您已经使用以下一行导入了lib:implementation fileTree(include: ['*.jar'], dir: 'libs')

票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/54365626

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档