AAChartCore-Kotlin
AAChartCore-Kotlin copied to clipboard
Library not found error
including the following statement in my build-gradle script gives a 'Could not find com.github.AAChartModel:AAChartCore-Kotlin:-SNAPSHOT. Required by: project :app' error. Any idea how to fix this error ?
dependencies {
implementation 'com.github.AAChartModel:AAChartCore-Kotlin:-SNAPSHOT'
}
Did you add maven { url 'https://www.jitpack.io' } to your project build.gradle file under allprojects { }?
See: https://github.com/AAChartModel/AAChartCore-Kotlin#step-1-add-the-jitpack-repository-to-your-build-file
including the following statement in my build-gradle script gives a 'Could not find com.github.AAChartModel:AAChartCore-Kotlin:-SNAPSHOT. Required by: project :app' error. Any idea how to fix this error ?
dependencies { implementation 'com.github.AAChartModel:AAChartCore-Kotlin:-SNAPSHOT' }
The document was not clear, the dependency version should be a git tag instead of -SNAPSHOT, for example 7.1.0
See https://www.jitpack.io/#AAChartModel/AAChartCore-Kotlin for available versions
Update this library to the latest version as follows... implementation 'com.github.AAChartModel:AAChartCore-Kotlin:7.2.0'