Merge "Replace stringly-typed API levels."

This commit is contained in:
Dan Albert
2020-09-21 20:20:30 +00:00
committed by Gerrit Code Review
10 changed files with 394 additions and 166 deletions

View File

@@ -18,7 +18,6 @@ import (
"bytes"
"fmt"
"sort"
"strconv"
"strings"
"github.com/google/blueprint"
@@ -31,7 +30,7 @@ func init() {
}
func androidMakeVarsProvider(ctx MakeVarsContext) {
ctx.Strict("MIN_SUPPORTED_SDK_VERSION", strconv.Itoa(ctx.Config().MinSupportedSdkVersion()))
ctx.Strict("MIN_SUPPORTED_SDK_VERSION", ctx.Config().MinSupportedSdkVersion().String())
}
///////////////////////////////////////////////////////////////////////////////