Disable a few metalava checks that platform fails after improvements.

Change-Id: Iead8d6a26ba3c75d3612dccc5bebd82c39b5aad8
Tests: none
Bug: 217545629
Bug: 217552813
Bug: 217553717
This commit is contained in:
Sam Gilbert 2022-02-02 16:25:04 +00:00
parent 8af15e0297
commit 1a0fa38342

View file

@ -334,7 +334,11 @@ func (d *Droidstubs) annotationsFlags(ctx android.ModuleContext, cmd *android.Ru
// TODO(tnorbye): find owners to fix these warnings when annotation was enabled.
cmd.FlagWithArg("--hide ", "HiddenTypedefConstant").
FlagWithArg("--hide ", "SuperfluousPrefix").
FlagWithArg("--hide ", "AnnotationExtraction")
FlagWithArg("--hide ", "AnnotationExtraction").
// (b/217545629)
FlagWithArg("--hide ", "ChangedThrows").
// (b/217552813)
FlagWithArg("--hide ", "ChangedAbstract")
}
}