https://github.com/vjache/klips - (inspired by C Language Integrated Production System = CLIPS)
I tried to include this library to gradle like this:
implementation "org.klips:klips:1.0"
But it doens't work. Anyone know if it's possible to solve this and use the klips in android?
As you say in the comment that the library found release on the jitpack.io
you can use this gradle in your build gradle
dependencies {
implementation 'com.github.vjache:klips:v0.0.6'
}
and
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}