I am writing an native application in C++ under android, and I need to broadcast some intents. Is this possible?
If you are going to point me to JNI, please give me more details, as I am not sure how this is done :)
What I will do if this is not possible is having a named pipe between the NDK daemon and a Java-Android-Service. The NDK-daemon will write to the named pipe and then the Java-Android-Service will issue the intent.
Is there a better way?