Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 37a0e4a0 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Use board api level for seapp coredomain check" into main

parents 26e2967e 5bac3b6f
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -2081,3 +2081,7 @@ func (c *config) SetApiLibraries(libs []string) {
func (c *config) GetApiLibraries() map[string]struct{} {
	return c.apiLibraries
}

func (c *deviceConfig) CheckVendorSeappViolations() bool {
	return Bool(c.config.productVariables.CheckVendorSeappViolations)
}
+2 −0
Original line number Diff line number Diff line
@@ -486,6 +486,8 @@ type ProductVariables struct {
	ReleaseAconfigFlagDefaultPermission string `json:",omitempty"`

	KeepVndk *bool `json:",omitempty"`

	CheckVendorSeappViolations *bool `json:",omitempty"`
}

func boolPtr(v bool) *bool {