Lines Matching refs:library
2 First, com.android.mediadrm.signer.jar is a shared java library
6 Second, com.android.mediadrm.signer.stubs.jar is a stub for the shared library
9 At runtime, the shared library is added to the classloader of the app via the
10 <uses-library> tag. And since Java always tries to load a class from the
11 parent classloader, regardless of whether the stub library is linked to the
13 library.
15 --- Rules of this library ---
16 o The stub library is effectively a PUBLIC API for unbundled CAST receivers
20 o This library can see and instantiate internal platform classes, but it must not
22 break clients of the library because they cannot see the internal platform classes.
24 This library is distributed in the system image, and loaded as
25 a shared library. So you can change the implementation, but not
28 --- Why does this library exist? ---
32 This library will eventually be replaced when the provisioned certificate-
33 based signing infrastructure that is currently defined in the support library
35 this library is a compromise to make new capabilities available to the system
36 without exposing the full surface area of the support library.