Problems in learning Aidl

Java. Lang. SecurityException: Not allowed to bind to the service of Intent

Cause: The client failed to bind the Service on the server side. The Service on the server side could not be called by the external application

When a server registers a Service in Manifast file, add android:exported=”true” attribute to set the Service to be invoked by external applications

<service android:name=".IRemoteService"
            android:exported="true"/>

Read More: