Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Testflight api 需要指向android.app.ApplicationAPI 方法对象的指针,如下所示:
android.app.Application
TestFlight.takeOff(this, "your-token-***-***-***")
我怎样才能为我的 kivyApp对象获取它?
App
我是夏洛克!
from jnius import autoclass PythonActivity = autoclass('org.renpy.android.PythonActivity') application = PythonActivity.getApplication()
applicationjniusandroid.app.Application实例包装的内容。
application