Merge "Allow unversioned_until: "current"."

am: 59bed87517

Change-Id: I554ad33a3d8b1ab7f158cd6ec1ddbec4b0c23fce
This commit is contained in:
Dan Albert
2017-01-06 05:19:40 +00:00
committed by android-build-merger

View File

@@ -162,6 +162,14 @@ func shouldUseVersionScript(stub *stubDecorator) (bool, error) {
return true, nil
}
if stub.properties.Unversioned_until == "current" {
if stub.properties.ApiLevel == "current" {
return true, nil
} else {
return false, nil
}
}
if stub.properties.ApiLevel == "current" {
return true, nil
}