I'm using AChartEngine in my project and connected it in build.gradle via
allprojects {
repositories {
jcenter()
maven {
url = "https://repository-achartengine.forge.cloudbees.com/snapshot/"
}
}
}
After update Android Studio and Gradle\Building mechanisms i can't build\make a project with set of similar errors like -
Error:(53, 24) error: cannot find symbol class ChartFactory
for every java class, where i do the "import org.achartengine.ChartFactory"
I have tryed add "compile group: 'org.achartengine', name: 'achartengine', version: '1.2.0'" I have tryed Invalidate caches\Restart and Clean\Rebuild project, i have changed syntax in tag maven and add symbol "=" after url. It doesn't work still.
Gradle 3.X or 4.X do not see including of libs in way of: maven { url = "https://repository-achartengine.forge.cloudbees.com/snapshot/"
Please help me with that issue.