As mentioned in go/partitions-in-r, we plan to forbid hidden API in product partition. So this app should be moved to /system_ext because it uses hidden API. It is not permanent, so they can be moved back to /product due to needs if there isn't hidden usage anymore. Bug: 137908189 Test: m Test: check whether device boots successfully Change-Id: Id1e897eadea814b780f199fa7f3d683924eb4ab3
20 lines
469 B
Plaintext
20 lines
469 B
Plaintext
android_app {
|
|
name: "SdkSetup",
|
|
privileged: true,
|
|
srcs: ["**/*.java"],
|
|
platform_apis: true,
|
|
certificate: "platform",
|
|
optimize: {
|
|
enabled: false,
|
|
},
|
|
system_ext_specific: true,
|
|
required: ["privapp_whitelist_com.android.sdksetup"],
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "privapp_whitelist_com.android.sdksetup",
|
|
system_ext_specific: true,
|
|
sub_dir: "permissions",
|
|
src: "com.android.sdksetup.xml",
|
|
filename_from_src: true,
|
|
} |