Add MinSdkVersion(ctx) method to ModuleWithMinSdkVersionCheck interface.

Bug: 205923322
Test: presubmit
Change-Id: I469d655823e12a14bc0abaeb544a5dd2a6d3622f
diff --git a/android/apex.go b/android/apex.go
index d5fd922..567d5c6 100644
--- a/android/apex.go
+++ b/android/apex.go
@@ -913,6 +913,7 @@
 // ModuleWithMinSdkVersionCheck represents a module that implements min_sdk_version checks
 type ModuleWithMinSdkVersionCheck interface {
 	Module
+	MinSdkVersion(ctx EarlyModuleContext) SdkSpec
 	CheckMinSdkVersion(ctx ModuleContext)
 }