diff options
Diffstat (limited to 'apex/apex.go')
-rw-r--r-- | apex/apex.go | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/apex/apex.go b/apex/apex.go index b2ca6c480..9e9d74211 100644 --- a/apex/apex.go +++ b/apex/apex.go @@ -2946,12 +2946,8 @@ func (a *apexBundle) minSdkVersionValue(ctx android.EarlyModuleContext) string { } // Returns apex's min_sdk_version SdkSpec, honoring overrides -func (a *apexBundle) MinSdkVersion(ctx android.EarlyModuleContext) android.SdkSpec { - return android.SdkSpec{ - Kind: android.SdkNone, - ApiLevel: a.minSdkVersion(ctx), - Raw: a.minSdkVersionValue(ctx), - } +func (a *apexBundle) MinSdkVersion(ctx android.EarlyModuleContext) android.ApiLevel { + return a.minSdkVersion(ctx) } // Returns apex's min_sdk_version ApiLevel, honoring overrides |