Is there a known way of creating sdk addon libraries with aidl interfaces? I see there is a framework.aidl packed with the android sdk. When I load my sdk addon in android studio; it fails during compile time with the error : "couldn't find import for class ...". One way to fix this is to manually add aidl files from sdk addon to project directory. Is there a way to automate the process while installing sdk addon?
--
You received this message because you are subscribed to the Google Groups "android-platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to android-platfo...@googlegroups.com.
To post to this group, send email to android-...@googlegroups.com.
Visit this group at https://groups.google.com/group/android-platform.
For more options, visit https://groups.google.com/d/optout.
Hi Vitaliy,
We are trying to create a library which can interact with a custom system service using aidl. The library will be stored in the system framework, we decided to create an sdk addon so that we don't need to package the library with every apk. Do you have any idea about creating sdk addon with aidl?
Thanks,Nirmit Shah
On Thursday, August 2, 2018 at 3:08:13 PM UTC-7, Vitaliy Freidovich wrote:Hi Nirmit,What is your purpose?Why do you need AIDL?VitaliyOn Wed 1 Aug 2018, 9:18 p.m. Nirmit Shah, <nirmi...@gmail.com> wrote:--Is there a known way of creating sdk addon libraries with aidl interfaces? I see there is a framework.aidl packed with the android sdk. When I load my sdk addon in android studio; it fails during compile time with the error : "couldn't find import for class ...". One way to fix this is to manually add aidl files from sdk addon to project directory. Is there a way to automate the process while installing sdk addon?
You received this message because you are subscribed to the Google Groups "android-platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to android-platfo...@googlegroups.com.
To post to this group, send email to android-...@googlegroups.com.
Visit this group at https://groups.google.com/group/android-platform.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "android-platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to android-platform+unsubscribe@googlegroups.com.
To post to this group, send email to android-platform@googlegroups.com.
Visit this group at https://groups.google.com/group/android-platform.
For more options, visit https://groups.google.com/d/optout.
Regards,
satish patel
Hi Satish,Sorry missed your answer. We are trying to share parcelable objects between service using aidl. Now these "parcelable objects" need to be part of the "sdk add-ons". How do we do that, when we load the addon in android studio it needs the aidl files too which are not installed with sdk addon.
To unsubscribe from this group and stop receiving emails from it, send an email to android-platform+unsubscribe@googlegroups.com.
To post to this group, send email to android-platform@googlegroups.com.
Visit this group at https://groups.google.com/group/android-platform.
For more options, visit https://groups.google.com/d/optout.
Hi Satish,
We know its possible but how do you share the aidl files from the Sdk add-on with the 3rd party APK during compilation. For example: framework.aidl in the android-sdk/platform-folder does a similar job for the android.jar.