-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android Service #4
Comments
Sorry, I completely missed this issue. I was working on JNI bindings to the Android SDK, but was burdened with other work. You can see an example of interacting with Android services using Binder there: It has all required helpers and methods, but I cannot share additional info as didn't try such thing by myself. There are some SO answers available though http://stackoverflow.com/a/14277133 |
cool. this is exactly why i also came here. I want to run thing sin golang as a background services, but then have apps (written in golang and QT) communicating over android IPC which is called AIDL. |
The example you linked too triggers the virtual keyboard. Exactly what we need for opengl / vulkan based apps :) For the iOS project have you found a way also to do it ? Also whilst on the topic of text we are going to need cut and paste functionality too. Have not looked into how / if we can invoke the native cut and paste GUI controls yet... Would be happy to help try... |
Unfortunately all the iOS interaction goes through C shims for obj-c logic. I would like to find or make a C API project for some minimal set of iOS features such as clipboard access or keyboard toggling, then generate bindings for it. |
glad you said that. Thats exactly what i want to do too. i really think that this is huge, and love the work your doing.. |
virtual keyboardcut and paste |
Is there anyway by which one can build and interact with an Android Service or IntentService? So long-running background apps can be built without the Android Runtime killing and restarting at will.
The text was updated successfully, but these errors were encountered: