diff options
Diffstat (limited to 'android/config.go')
| -rw-r--r-- | android/config.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/android/config.go b/android/config.go index cf3499f2c..8fb092662 100644 --- a/android/config.go +++ b/android/config.go @@ -270,6 +270,11 @@ func (c Config) ReleaseHiddenApiExportableStubs() bool { Bool(c.config.productVariables.HiddenapiExportableStubs) } +// Enable read flag from new storage +func (c Config) ReleaseReadFromNewStorage() bool { + return c.config.productVariables.GetBuildFlagBool("RELEASE_READ_FROM_NEW_STORAGE") +} + // A DeviceConfig object represents the configuration for a particular device // being built. For now there will only be one of these, but in the future there // may be multiple devices being built. |