几天前,我看到HighCharts Library可用于 Android for graph。
https://github.com/highcharts/highcharts-android
我阅读了文档并开始将其添加到我的项目中,但是当我尝试将 gradle 添加到我的项目时出现错误:
错误:无法解决:com.highsoft.highcharts:6.0.2:
打开文件
他们在文档中提到了两种方法:
A)您可以从这里下载 aar:Highcharts 并手动添加。将 aar 放在项目结构的 libs 文件夹中。
B)您可以将库添加到 JCenter 的 gradle 依赖项中。
当我将 .aar 文件添加到 libs 文件夹时没有问题,但是当我添加以下代码时:
HIGChartView chartView = (HIGChartView) findViewById(R.id.hc);
我的项目无法找到课程HIGChartView
。我无法确定这是我的附带问题还是 HighCharts 库问题。
我还下载了 Github 的项目,在他们的项目上没有问题还将 Gradle 与他们的项目进行比较,但我无法找出问题所在。
我的build.gradle(Module:App) :
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.kabloom.highcharts2"
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.highsoft.highcharts:6.0.2' // HighCharts here added
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}