blob: 36a706d5c0dbfb4bc6a159168ba45376c9cb7c3d [file] [log] [blame]
The Android Open Source Project7c1b96a2008-10-21 07:00:00 -07001Android Utility Function Library
2
3If you need a feature that is native to Linux but not present on other
4platforms, construct a platform-dependent implementation that shares
5the Linux interface. That way the actual device runs as "light" as
6possible.
7
8If that isn't feasible, create a system-independent interface and hide
9the details.
10
11The ultimate goal is *not* to create a super-duper platform abstraction
12layer. The goal is to provide an optimized solution for Linux with
13reasonable implementations for other platforms.
14