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

learn more… | top users | synonyms

0
votes
1answer
33 views

Android Service Choice [closed]

I'm porting an application from C# to Android and I need some help to decide which service type i'd need to use on Android to achieve the same result. Currently theres 2 seperate application. An ...
1
vote
1answer
147 views

android-studio can't find an aidl interface for use in class

I have an interface defined in the aidl but I can't extend it or find it any way. The ide just tells me: Can not resolve symbol 'KeyEventListener' Any idea how to fix this? Additional infos: ...
0
votes
1answer
35 views

service that gets registered with service manager

I did tried some sample code for service and installed the same on device and started the app. I tried to list this service with adb command, which was running now (could see my logs for the same in ...
2
votes
1answer
21 views

Best way to share AIDL and Parcelable files between client and server

Android AIDL services requires a copy of *.aidl and any implementation of Parcelable to exist on the remote client as well as the server. Apart from telling people to copy and paste these files from ...
0
votes
0answers
13 views

Publishing AIDL Service

I created an AIDL service server and a remote client(demo on how to use the server), each is contained in its own project. I notice that during testing, if I push the client(demo) project to run on ...
0
votes
0answers
17 views

Binder mechanisam to update UI in android

In my project I am using binder mechanism to communicate to remote service. The remote service class will call JNI function and updates to UI for every 10 seconds. The JNI function has below code ...
0
votes
1answer
34 views

Provide the code of Parcelable objects to AIDL clients

The documentation states: If you have a class that you would like to send from one process to another through an IPC interface, you can do that. However, you must ensure that the code for your ...
0
votes
0answers
24 views

android:in AIDL interface unknown type error

my app have interprocess communication in AIDL files, that need pass a inner class object to remote server.I have serialize the object with Parcelable.but the complier keeps give me a error: unknown ...
0
votes
0answers
18 views

android.location.Address not recognized by AIDL?

I'm trying to pass back a List<Address> object from a remote service and I can't seem to figure out why this is happening, but when I try to import android.location.Address into my Android AIDL ...
0
votes
0answers
30 views

Getting null value from remote service in android

In my project I have a remote service that communicate to client. For example Project-A is a remote service and Project-B is client. To communicate both applications I am using AIDL interface. Using ...
-1
votes
0answers
44 views

How to use 'Map<String,String>' in android AIDL?

I have aidl file: package com.my.aidl; interface IBackgroundTask { void work(Map<String,String> map); } but, eclipse giving error : "parameter map (1) unknown type Map" . ???????? Thanks!
0
votes
1answer
33 views

Custom Parcelables over AIDL shared between Multiple APPs results in ClassNotDefError

I have three Android Projects in Eclipse: App A (hosts a Service) App B (uses Service from A) AIDL (definition and some custom parcelables) APP A launches APP B. APP B uses an Service via AIDL ...
0
votes
0answers
17 views

Can a library class object lof SurfaceView be sent using aidl directly or do I need to send it through a Parcelable?

I need to send an object of surfaceView. I'm quite unclear how I should go about implementing this as a parcel, the class needs to implement Parcelable. Since I cannot modify the Library Class, how do ...
0
votes
2answers
60 views

Determining if process has died?

Is there a way to determine whether a process has died? I have a system service that stores information on each client that connects to it. When the process that is hosting that client dies, I would ...
0
votes
2answers
21 views

Bundle putIBinder getIBinder deprecated

It seems that Bundle has deprecated putIBinder and getIBinder which I thought was very useful for passing binders (through Bundles) over to my service. Since these are deprecated, is there an ...
0
votes
1answer
61 views

Data that persist between activity and service (aidl)

I have spent 6 hours trying to solve this issue without success. I have 2 applications which communicate through a AIDL service. Here is the source code: Application A : protected void ...
0
votes
1answer
37 views

How to generate extenstion change .aidl to .java in Eclipse?

I know that Eclipse generate extenstion change [src/ ~.aidl] to [gen/ ~.java] automatic. but, i want to know that how to generate extenstion change .aidl to .java automatic in detail.
0
votes
1answer
96 views

Android Intellij IDEA 12 AIDL

I´m trying to create a remote IPC service on Android using AIDL. I found some documents that explains how to create such services in Eclipse, but none that explains the creation process on InteliJ ...
0
votes
1answer
31 views

Where do I need to put the AIDL file?

Just one question concerning AIDL files, the context is that I'm writing a little project using another project as a library. In this library, a service is implemented and I'm trying to make a bind to ...
0
votes
1answer
32 views

How to debug remote AIDL service in Android?

I have sources of a remote service which is using AIDL. Also I have my own app that connects to that service. I debug two apps simultaneously, but inside the remote service I can hit breakpoints only ...
0
votes
1answer
46 views

AIDL — primitives as output parameters

In the AIDL guide (http://developer.android.com/guide/components/aidl.html) it mentions that all primitives are "in" parameters. However, I'd like to create a parameter that is a primitive and it is ...
1
vote
1answer
120 views

Recommended approach for handling errors across process using AIDL (Android)

I have a binder service and a client that live in different processes. Using AIDL, when the client calls into my remote binder service, there are times that I need to relay an error (exception) back ...
0
votes
1answer
98 views

Android: Bind applications (AIDL) in singleTop/ singleTask Mode

I've binded 2 android applications with an AIDL file. The Exchange between the A and B applications is like below: The A application connects to the B application through AIDL interface A ...
0
votes
0answers
43 views

how to send data in service based android app

I want to send data from one application A to other application B using AIDL file. My appl A is like below, public class LibValue { public static native int intFromJNI(int n); ...
1
vote
1answer
61 views

Two dimentional array in AIDL

I am new to Android and AIDLs. Is it possible to have two dimentional array as a parameter passed in the functions of an AIDL? For example something like: int sayHello(in byte[][] langCountry);
1
vote
1answer
46 views

How to destroy an AIDL stub?

I have a service with AIDL interfaces like this: interface Bar { void doStuff(); // ... void destroySelf(); } interface Foo { // ... Bar createBar(); } In the service ...
0
votes
1answer
112 views

Remote service with aidl file : ServiceConnection never called

I 'd like to bind 2 applications through a service with aidl file. In my application A (with service that will be accessed) : →aidl file (BillingInterface.aidl): package com.A.service; import ...
0
votes
1answer
305 views

Deploying in necessitas?

I have the following problem: when I try to deploy from necessitas on an actual device, I can't get through the .apk creation phase. Ant stops with error after finding .aidl files. Here is the output ...
0
votes
1answer
379 views

Android runtime exception - Could not find class XXX referenced from method XXX.<init>

I have a few android projects that i'm trying to put together, but i'm facing some runtime exceptions that i can't understand. The projects are built like this: C/C++ Project ProjCore (has .c and ...
0
votes
2answers
162 views

Unable to run the Android project in Eclipse: .aidl error

I am trying to run a particular Android project in Eclipse 4.2.1(Juno). And it is giving following error when I try to compile it. Failed to run ...
0
votes
1answer
53 views

Is there equivalent of AIDL on other platforms (iOS, Blackberry, Windows Mobile)

Is there equivalent of Android Interface Definition Language (AIDL) on BlackBerry mobile? We have developed an Android application using AIDL, and we would like to develop the same application on ...
2
votes
6answers
254 views

Passing an object from one application to another in android

After lot of googeling, I could not find any way to pass a object from one application to other application.Though I know that we can pass object from one activty to other activity using Parcel but ...
9
votes
1answer
196 views

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 messages sent over GCM. I have used AIDL to expose my library project ...
0
votes
1answer
59 views

Change package name of java and aidl files

Basically I have lots of files in some packages, I want to add some other text in package name, But in the same time i want all the files should also change their package names and import statement ...
1
vote
1answer
396 views

Android remote service callbacks

(I have a remote service with an AIDL interface that is used by several client apps. I would like to add an asynchronous method to the interface for calls that take some time, but I need the solution ...
0
votes
1answer
145 views

Using Handlers in remote service

Let's imagine we have a simple Android application, which connects to a remote service via IPC, schedules a relatively long task, then continues working while awaiting for callback with some results. ...
0
votes
1answer
141 views

Tracking user idle time within the app in Android

As far as I know, there is no system API for me to get user idle time. When I say user idle time, I mean user have some interaction on the touch screen within my app. Therefore, I want to track it by ...
0
votes
1answer
75 views

AIDL inout param

I wanted to know what is the inout param in the AIDL is for? I know what is in for and what out is for. (out does not marshal the object passing). But I don't understand what is the inout for. I ...
0
votes
1answer
261 views

Android service AIDL data types

I have a Service in a system app. I would like client apps without system permissions to be able to call functions in the Service to do things that does require system permissions. Since the Service ...
0
votes
2answers
132 views

not understanding compile errors in AIDL files

I'm taking my first foray into Android services and having trouble with compile errors in AIDL files. I am using Eclipse (with Android Development Tools) and Android 4.1. I have the following AIDL ...
0
votes
1answer
56 views

How to listen for new chat messages on Android?

I'm writing a small chat client for android. So the behaviour I want is, that my application is listening in the background for new messages and shows them in the notification area (only the icon of ...
0
votes
2answers
242 views

Using AIDL in Android: Check if the activity has bound the service

I'm using AIDL. I have a service and an activity. In the function onCreate I bind the service and I want update the UI: private ServiceConnection conn = null; public void onCreate(Bundle ...
1
vote
1answer
267 views

AIDL unable to find the definition of a Parcelable class

I have the following project structure. My StockInfo.java is perfectly fine. StockInfo.java (No error) package org.yccheok.jstock.engine; import android.os.Parcel; import android.os.Parcelable; ...
0
votes
0answers
90 views

Aidl call fails after obfucation..Unable to start service

I have service defined to perform network operation in the sync adapter. When needed I bind service through AIDL. It works very well without obfuscating the apk. Service is defined in the manifest ...
0
votes
2answers
85 views

about android aidl object

I must pass my object with IPC,like this class public class ForIpc { JsonObject info = new JSONObject(); public void add(String key, String value) { info.put(key,value); } } ...
2
votes
1answer
103 views

can an android service provide two interfaces to communicate with?

I have a service that communicates through AIDL with other services. I want that service to be bound by activities in my application. Can the service define two binders\interfaces? I've tried yo use a ...
2
votes
1answer
241 views

AIDL generated file compile errors with SDK tools Version 21

I upgraded the Android SDK tools to version 21 (and subsequently 21.0.1) and now all files generated from my aidl files contain compile errors related to incorrect @Override keyword being inserted ...
1
vote
1answer
51 views

How can I use AIDL remote service to deal with defferent clients' concurrent requests?

I'm writting a plug-in which defines a remote Service and provides a AIDL interface for 3rd party developers. How can I use this remote service to deal with defferent clients' concurrent requests ? ...
2
votes
3answers
206 views

Custom adapter using bound service - when to unbind?

The setup: custom adapter that feeds data into ListView. Data is based on some numbers calculated by external service. I am using AIDL to bind the service and get the data I need. Problem: How do I ...
0
votes
1answer
397 views

How to implement AT command call in my application?

I have to fetch some low level information like RxLev, BLER, RxQual etc which are not accessible through Android framework APIs. I found the alternative to be AT command. I am using rooted Samsung ...

1 2 3 4 5