diff options
| author | 2023-07-30 13:57:36 +0000 | |
|---|---|---|
| committer | 2023-07-30 13:57:36 +0000 | |
| commit | d938f83be1b64d77cfdf28e420e81e84a9c35b72 (patch) | |
| tree | 7d70f950543797fbd775c6812bed6287568db767 /java/hiddenapi.go | |
| parent | 6ff7d9e53237c5c52b57765a83d4321af36ca1ff (diff) | |
| parent | faec4db56fdae6516cfc394c517b93b6e6ad4781 (diff) | |
Merge "Disable Hidden API Checks for ENG Builds" into main
Diffstat (limited to 'java/hiddenapi.go')
| -rw-r--r-- | java/hiddenapi.go | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/java/hiddenapi.go b/java/hiddenapi.go index d25096b15..4d08b8307 100644 --- a/java/hiddenapi.go +++ b/java/hiddenapi.go @@ -106,7 +106,7 @@ func (h *hiddenAPI) initHiddenAPI(ctx android.ModuleContext, dexJar OptionalDexJ  	h.uncompressDexState = uncompressedDexState  	// If hiddenapi processing is disabled treat this as inactive. -	if ctx.Config().IsEnvTrue("UNSAFE_DISABLE_HIDDENAPI_FLAGS") { +	if ctx.Config().DisableHiddenApiChecks() {  		return  	}  |