Hello,
I am developing a simple kivy application for speech recognition. It takes the input from the user and then switches to whichever application the user wants. eg: open WhatsApp should open the WhatsApp in user's phone.
For the switching, I have created a java file and I am using pyjnius for it's integration with the python file.
When I run my application, it converts the speech to text but when it reaches the pyjnius part, it gives the error:
Traceback (most recent call last):
File "./main.py", line 172, in <module>
Iris = autoclass('org.alpha.Iris')
File "/usr/local/lib/python2.7/dist-packages/jnius/reflect.py", line 154, in autoclass
c = find_javaclass(clsname)
File "jnius/jnius_export_func.pxi", line 25, in jnius.find_javaclass (jnius/jnius.c:16655)
jnius.JavaException: Class not found 'org/alpha/Iris'
where org.alpha.Iris is my package and Iris.java is my java file
What should I do?