gpt4 book ai didi

android - 错误 :Plugin with id 'com.github.dcendents.android-maven' not found

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:32:23 25 4
gpt4 key购买 nike

我在我的 Android 应用程序中使用这个库。 ( https://github.com/yazeed44/MultiImagePicker )

之前,我是这样将它添加到我的项目中的:

compile 'net.yazeed44.imagepicker:imagepicker:1.3.0'

据我所知,以这种方式导入的问题是我无法覆盖任何代码,因为在再次构建项目后我将丢失所有更改。 (我需要更改一些代码)

出于这个原因,我已经下载了源代码并将项目作为模块导入,名称为:'imagepicker'

之后,我将这一行添加到我的应用程序 build.gradle 中:

compile project(':imagepicker')

这是我的 settings.gradle(Android Studio 做的)

include ':app', ':imagepicker'

之后,我尝试运行该项目,Android Studio 显示此错误:

Gradle 'Project' project refresh failed
Error:Plugin with id 'com.github.dcendents.android-maven' not found.

最佳答案

由于您在本地使用该模块您必须在顶层 build.gradleimagepicker/build.gradle 在图像选择器中添加了相同的配置 build.gradle project .

buildscript {
repositories {
jcenter()
}

dependencies {

//ADD THESE DEPENDENCIES
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
}
}

另一种方法是修改 imagepicker/build.gradle 删除 最后两行。但是你必须这样测试。

apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'

如果你检查这些文件你会发现

apply plugin: 'com.github.dcendents.android-maven'

在您的情况下,您不需要这些文件,因为它们仅对在 maven 仓库中上传 aar 文件有用。

关于android - 错误 :Plugin with id 'com.github.dcendents.android-maven' not found,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33655292/

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