Top "Aidl" questions

Android Interface Definition Language is a special language that allows a server and a client to establish interface for Inter Process Communication (IPC).

RxJava and Cached Data

I'm still fairly new to RxJava and I'm using it in an Android application. I've read a metric ton on …

android caching aidl rx-java
Android: AIDL refusing to generate code from aidl file defining parcelable

I am trying to build a library with aidls. LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE := test LOCAL_…

android aidl
AIDL file does not generated a Java file

I have defined an AIDL android interface to make available a service from other applications. My problem is that in …

android service interface aidl
Passing enums through aidl interfaces

As enums aren't primitive types, what's the most effective way to pass an enum through an aidl interface in Android? …

java android enums primitive aidl
Share library project's manifest services and permissions

I want to develop a library project which consists of a GCMIntentService and it performs GCM registration process and receives …

android google-cloud-messaging android-library aidl android-permissions
When to use an aidl based service?

Under what circumstances would using AIDL to define a service interface be the correct decision (rather than just creating an …

android aidl
android aidl import

I'm trying to import android.content.Context to AIDL file but eclipse doesn't recognize it.. here's my code: package nsip.…

android import aidl
How to implement callbacks using IntentService on Android?

If it must implement with AIDL? And please kindly provide an example, thanks. EDIT: There are several solutions, Does anyone …

android service aidl
When should I use unbindService(), and how should I use it properly to unbind from a remote service that is using an AIDL interface?

I'm writing a simple music player, and I've created a playback service which implements an AIDL interface to bind with …

java android service aidl
Android: Custom Object in AIDL

I have an application which interacts with a custom service via two aidl implementations. When the service is ran, I …

java android service aidl