Make some device info related slices public.

Only PreferenceControllers with isPublicSlice() set to true are exposed
to other apps. Others will be Settings only.

Bug: 141088937
Test: robotests
Change-Id: Id38fd0203a4efc812e30990491786b4d8aff8902
This commit is contained in:
Yi-Ling Chuang
2019-11-27 16:55:26 +08:00
parent 617458b07c
commit 2516848b30
14 changed files with 70 additions and 1 deletions

View File

@@ -68,6 +68,11 @@ public class FirmwareVersionDetailPreferenceController extends BasePreferenceCon
return true;
}
@Override
public boolean isPublicSlice() {
return true;
}
@Override
public CharSequence getSummary() {
return Build.VERSION.RELEASE;