1# Add a new VNDK APEX 2 3In this document we add a new VNDK APEX for version 30. When you follow this doc with different versions, 4change "30" to what you're adding. (eg. 31) 5 61. Add a new definition in `Android.bp` 7 8``` 9apex_vndk { 10 name: "com.android.vndk.v30", 11 defaults: ["vndk-apex-defaults"], 12 vndk_version: "30", 13 system_ext_specific: true, 14} 15``` 16 172. Verify 18 19``` 20m com.android.vndk.v30 21``` 22