1// Runtime (Bionic) APEX module 2// 3// In Q this contained Bionic, ART and Libcore. 4// It keeps the name /apex/com.android.runtime for app compat reasons. 5 6android_app_certificate { 7 name: "com.android.runtime.certificate", 8 certificate: "com.android.runtime", 9} 10 11apex_key { 12 name: "com.android.runtime.key", 13 public_key: "com.android.runtime.avbpubkey", 14 private_key: "com.android.runtime.pem", 15} 16 17apex { 18 name: "com.android.runtime", 19 compile_multilib: "both", 20 manifest: "manifest.json", 21 native_shared_libs: [ 22 "libc", 23 "libm", 24 "libdl", 25 "libdl_android", 26 "libc_malloc_debug", 27 "libc_malloc_hooks", 28 ], 29 multilib: { 30 both: { 31 binaries: ["linker"], 32 }, 33 }, 34 key: "com.android.runtime.key", 35 certificate: ":com.android.runtime.certificate", 36} 37