I am built AOSP 13 r74 branch. Target is sdk_phone_x86_64 which is compatible for the emulator. I am trying to add MSEdge.apk as prebuild system privileged app.
I have added this to /packages/apps/MSEdge/MSEdge.apk and Also edit packages/apps/MSEdge/Android.bp to below
android_app_import {
name: "MSEdge",
owner: "Microsoft",
apk: "MSEdge.apk",
presigned: true,
prefer: true,
certificate: "platform", // Either presigned or certificate has to set true
dex_preopt: {
enabled: false,
},
privileged: true,
product_specific: true, // Either product_specific or system_ext_specific has to be true
overrides: ["ExtShared"]
system_ext_specific: true,
}
PRODUCT_PACKAGES += MSEdge
Still when I build the target and run the emulator I dont see these apps.
Suggest me the next step to bring the app in the emulator.