pyjnius Questions
2
Solved
I want to create share button that will use android ACTION_SEND intent for sharing image. It's my code:
from kivy.setupconfig import USE_SDL2
def share(path):
if platform == 'android':
from jn...
7
I'm trying to make pyjnius work with a jar file I built from java application, but I keep getting the "Class not found" error:
>>> import os
>>> os.environ['CLASSPATH'] = "~/work...
2
I have tried a few ways to send an email using Python in the Kivy app on Android. The closest I've come is using Plyer's email function (https://plyer.readthedocs.org/en/latest/#plyer.facades.Email...
2
Solved
Pyjnius allows you to create a python wrapper for java classes like:
Hardware = autoclass('org.myapp.Hardware')
Is there a way to import an existing *.jar file like that? What does the syntax lo...
1
© 2022 - 2024 — McMap. All rights reserved.