diff options
author | 2025-02-14 11:30:32 -0800 | |
---|---|---|
committer | 2025-02-14 11:30:32 -0800 | |
commit | 83cc13dc2ffdb2e1b77cb56e9d7dfb7b251a27ac (patch) | |
tree | c93dae512f34862da2db7d446f06bb8db3508262 /rust/rust.go | |
parent | 76c144a81ece23fef09c02d18fdf95aca52c0bf9 (diff) | |
parent | df0b83966161d767714909dff032648c0d83d4c8 (diff) |
Merge "Convert CheckMinSdkVersion to use providers." into main
Diffstat (limited to 'rust/rust.go')
-rw-r--r-- | rust/rust.go | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/rust/rust.go b/rust/rust.go index 4fd800282..7a7b1064c 100644 --- a/rust/rust.go +++ b/rust/rust.go @@ -2085,26 +2085,23 @@ func (mod *Module) MinSdkVersion() string { } // Implements android.ApexModule -func (mod *Module) ShouldSupportSdkVersion(ctx android.BaseModuleContext, sdkVersion android.ApiLevel) error { +func (mod *Module) MinSdkVersionSupported(ctx android.BaseModuleContext) android.ApiLevel { minSdkVersion := mod.MinSdkVersion() if minSdkVersion == "apex_inherit" { - return nil + return android.MinApiLevel } + if minSdkVersion == "" { - return fmt.Errorf("min_sdk_version is not specificed") + return android.NoneApiLevel } - // Not using nativeApiLevelFromUser because the context here is not // necessarily a native context. - ver, err := android.ApiLevelFromUser(ctx, minSdkVersion) + ver, err := android.ApiLevelFromUserWithConfig(ctx.Config(), minSdkVersion) if err != nil { - return err + return android.NoneApiLevel } - if ver.GreaterThan(sdkVersion) { - return fmt.Errorf("newer SDK(%v)", ver) - } - return nil + return ver } // Implements android.ApexModule |