#kivy_permission problem #HELP YOUR BROTHER
jnius.jnius.check_exception jnius.jnius.JavaException: JVM exception occurred: interface org.kivy.android.PythonActivity$PermissionsCallback is not visible from class loader java.lang.IllegalArgumentException Hey anyone a wizard coder or smart guy on this planet.. please help me.. I was trying to run a kivy blueprint and so many days I been hit by this error and still it horrifying me.. Idk how to get out of it.. I just want my apk script opens a camera, fetch contacts and make calls.. So I have added a small snippet in my script def permissions_callback(permissions, results): for perm, res in zip(permissions, results): if not res: print(f"Permission {perm} not granted!") else: print(f"Permission {perm} granted.") request_permissions([ Permission.READ_CONTACTS, Permission.CAMERA, Permission.CALL_PHONE, Permission.READ_EXTERNAL_STORAGE, Permission.WRITE_EXTERNAL_STORAGE ], permissions_callback)