Ask HN: Resources for Android HAL, Framework, Platform Development in Automotive
1–3 of 3 posts
Re: Ask HN: Resources for Android HAL, Framework, Platform Development in Automotive
#2For JNI please refer the documentation on Oracle's website.
For everything below that, the best approach is to just dive into the AOSP code(https://source.android.com). There is lots of documentation there as well. But the source code still gives you a lot better insight into the workings of the system and what the top layer expects from the bottom layer. As they say, "Read the source Luke!" :)
Re: Ask HN: Resources for Android HAL, Framework, Platform Development in Automotive
#3I worked on something like this long time ago. It was not related to automotive but mobile industry. At that time it was difficult to get any such information. I don't know whether things have changed now, but I will give you my approach to understanding the low-level android stack. I approached it from bottom-up level rather than top-down. I looked at the hardware driver(I was working on enabling graphics stack for…