First one, refer to an origin of this fork
This fork currently contains only one fix
To install this fix you need donwload .jar file in releases then put it in 'libs' folder of your root project, then add these implementations to your build.gradle
repositories {
maven { url "https://jitpack.io" }
mavenCentral()
mavenLocal()
flatDir {
dirs('libs')
}
}
dependencies {
implementation 'com.github.stephengold:Minie:9.0.1' //requried b'cuz it loads native libs , while my 9.0.2 doesn't.
implementation 'com.github.stephengold:Minie:9.0.2-SNAPSHOT'
}
