Save Random Forest Model for Use in Android Application

I would like to train a random forest classifier (using DecisionTree.jl) and then export it for use in an Android application that I’m developing. I’ve seen ways to save the model as a .jld or a .jld2 file; however, I haven’t been able to find a way to import these files into Android to use for inference in a real-time setting. Is there any way to directly use a model trained in Julia in an Android app?

Thanks for the help!