gpt4 book ai didi

android - 应用插件 Android Studio 失败

转载 作者:IT老高 更新时间:2023-10-28 23:31:14 26 4
gpt4 key购买 nike

我正在尝试将 ExoPlayer 库导入到我的 Android Studio 项目中。我用几种方法尝试了几次(直接用 GRADLE 导入),作为模块导入,复制粘贴,我得到了同样的错误:

Error:(15) A problem occurred evaluating project ':..:ExoPlayer:library'.
> Failed to apply plugin [id 'bintray-release']
> Plugin with id 'bintray-release' not found.

在库 gradle 中我找到了应用插件行:

apply plugin: 'bintray-release'

搜索库并将其应用于依赖项后,我仍然收到错误:

dependencies {
compile 'com.novoda:bintray-release:0.2.10'
}

任何想法我该如何解决这个问题?

最佳答案

看起来 gradle 在所有指定的存储库中都找不到这个插件。 ExoPlayer 在根项目中指定 buildscript 存储库,因此您也应该这样做。

在你的根 build.gradle 确保 buildscript 部分包含 jcenter() 存储库和 'andcom.novoda:bintray-发布:0.2.7' 类路径:

buildscript {
repositories {
...... <- whatever you have now
jcenter() <- make sure this one is there
}
dependencies {
...... <- whaterver you have now
classpath 'com.novoda:bintray-release:0.2.7' <- make sure this one is there
}
}

关于android - 应用插件 Android Studio 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29776690/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com