mirror of https://github.com/kivy/pyjnius.git
6 lines
145 B
Cython
6 lines
145 B
Cython
|
# on android, rely on SDL to get the JNI env
|
||
|
cdef extern JNIEnv *SDL_ANDROID_GetJNIEnv()
|
||
|
|
||
|
cdef JNIEnv *get_jnienv():
|
||
|
SDL_ANDROID_GetJNIEnv()
|