- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
下午好
首先,很抱歉我对 Android 的了解非常基础。我会假设我的问题非常简单,但是,我已经尽了我所有的努力但没有成功,对此我将不胜感激。
在过去的几天里,我一直在尝试为我正在开发的应用程序导入 AnyChart-Android 库。根据在他们的 Github 页面 (https://github.com/AnyChart/AnyChart-Android) 上找到的“README.md”文件,要使用我应该的库:
然后,他们声称我应该从他们的包中导入一个 .JAR 或 .AAR 文件,但它不存在...
相反,我尝试将包导入为 import gradle 项目,但无法成功导入,我得到的错误是:
Caused by: org.gradle.api.plugins.UnknownPluginException: Plugin with id 'com.github.dcendents.android-maven' not found.
谁能帮我理解我做错了什么,或者我应该遵循哪些步骤来导入这个库?
我正在使用 Android Studio 环境,如果此信息对您有帮助的话。
非常感谢您
最佳答案
Caused by: org.gradle.api.plugins.UnknownPluginException: Plugin with id 'com.github.dcendents.android-maven' not found.
您忘记在应用级 build.gradle
部分中添加以下内容。
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
演示
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
关于android - 如何将AnyChart-Android导入Android studio,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60870722/
我是一名优秀的程序员,十分优秀!