### Invoke DynamicSystemClient.start with image details Source: https://source.android.com/docs/core/ota/dynamic-system-updates Example of how to invoke the `start` method on a `DynamicSystemClient` instance, providing the URL and size of the system image to be installed. ```java DynamicSystemClient aot = new DynamicSystemClient(...) aot.start( ...URL of the selected image…, ...uncompressed size of the selected image…); ``` -------------------------------- ### Manifest and Build Configuration Example Source: https://source.android.com/docs/core/tests/development/instrumentation Shows example lines for installing extra apps within the AndroidManifest.xml configuration. ```xml