diff options
Diffstat (limited to 'android/sdk_version.go')
-rw-r--r-- | android/sdk_version.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/android/sdk_version.go b/android/sdk_version.go index 2107cbedb..26e002ae7 100644 --- a/android/sdk_version.go +++ b/android/sdk_version.go @@ -31,9 +31,9 @@ type SdkContext interface { // ReplaceMaxSdkVersionPlaceholder returns SdkSpec to replace the maxSdkVersion property of permission and // uses-permission tags if it is set. ReplaceMaxSdkVersionPlaceholder(ctx EarlyModuleContext) SdkSpec - // TargetSdkVersion returns the SdkSpec that corresponds to the target_sdk_version property of the current module, + // TargetSdkVersion returns the ApiLevel that corresponds to the target_sdk_version property of the current module, // or from sdk_version if it is not set. - TargetSdkVersion(ctx EarlyModuleContext) SdkSpec + TargetSdkVersion(ctx EarlyModuleContext) ApiLevel } // SdkKind represents a particular category of an SDK spec like public, system, test, etc. |