As an jarAndroid-only file , you need to add the jar file to your buildozer.spec file, for example
android.add_jars = java/myjar.jar
and in your application build
from kivy.utils import platform
...
if platform() == 'android':
BlaClass = autoclass('java.bla.BlaClass')
...
source
share