Add pom2bp param for default min_sdk_version

Previously 24 was hardcoded (for somewhat unclear reasons). Update
the tool to accept specifying the correct value on the cmdline.

Test: pom2bp -default-min-sdk-version 24
Change-Id: I39c23dd4bca91684a2a68d7b963cf3cb66eb1f33
This commit is contained in:
Anton Hansson
2021-03-29 16:10:06 +01:00
parent 755b10fe53
commit c29f076768

View File

@@ -144,6 +144,7 @@ func (n HostAndDeviceModuleNames) Set(v string) error {
var hostAndDeviceModuleNames = HostAndDeviceModuleNames{} var hostAndDeviceModuleNames = HostAndDeviceModuleNames{}
var sdkVersion string var sdkVersion string
var defaultMinSdkVersion string
var useVersion string var useVersion string
var staticDeps bool var staticDeps bool
var jetifier bool var jetifier bool
@@ -286,6 +287,10 @@ func (p Pom) SdkVersion() string {
return sdkVersion return sdkVersion
} }
func (p Pom) DefaultMinSdkVersion() string {
return defaultMinSdkVersion
}
func (p Pom) Jetifier() bool { func (p Pom) Jetifier() bool {
return jetifier return jetifier
} }
@@ -457,7 +462,7 @@ var bpDepsTemplate = template.Must(template.New("bp").Parse(`
min_sdk_version: "{{.MinSdkVersion}}", min_sdk_version: "{{.MinSdkVersion}}",
manifest: "manifests/{{.BpName}}/AndroidManifest.xml", manifest: "manifests/{{.BpName}}/AndroidManifest.xml",
{{- else if not .IsHostOnly}} {{- else if not .IsHostOnly}}
min_sdk_version: "24", min_sdk_version: "{{.DefaultMinSdkVersion}}",
{{- end}} {{- end}}
{{- end}} {{- end}}
static_libs: [ static_libs: [
@@ -598,6 +603,8 @@ Usage: %s [--rewrite <regex>=<replace>] [-exclude <module>] [--extra-static-libs
This may be specified multiple times to declare these dependencies. This may be specified multiple times to declare these dependencies.
-sdk-version <version> -sdk-version <version>
Sets sdk_version: "<version>" for all modules. Sets sdk_version: "<version>" for all modules.
-default-min-sdk-version
The default min_sdk_version to use for a module if one cannot be mined from AndroidManifest.xml
-use-version <version> -use-version <version>
If the maven directory contains multiple versions of artifacts and their pom files, If the maven directory contains multiple versions of artifacts and their pom files,
-use-version can be used to only write Android.bp files for a specific version of those artifacts. -use-version can be used to only write Android.bp files for a specific version of those artifacts.
@@ -622,6 +629,7 @@ Usage: %s [--rewrite <regex>=<replace>] [-exclude <module>] [--extra-static-libs
flag.Var(&hostModuleNames, "host", "Specifies that the corresponding module (specified in the form 'module.group:module.artifact') is a host module") flag.Var(&hostModuleNames, "host", "Specifies that the corresponding module (specified in the form 'module.group:module.artifact') is a host module")
flag.Var(&hostAndDeviceModuleNames, "host-and-device", "Specifies that the corresponding module (specified in the form 'module.group:module.artifact') is both a host and device module.") flag.Var(&hostAndDeviceModuleNames, "host-and-device", "Specifies that the corresponding module (specified in the form 'module.group:module.artifact') is both a host and device module.")
flag.StringVar(&sdkVersion, "sdk-version", "", "What to write to sdk_version") flag.StringVar(&sdkVersion, "sdk-version", "", "What to write to sdk_version")
flag.StringVar(&defaultMinSdkVersion, "default-min-sdk-version", "24", "Default min_sdk_version to use, if one is not available from AndroidManifest.xml. Default: 24")
flag.StringVar(&useVersion, "use-version", "", "Only read artifacts of a specific version") flag.StringVar(&useVersion, "use-version", "", "Only read artifacts of a specific version")
flag.BoolVar(&staticDeps, "static-deps", false, "Statically include direct dependencies") flag.BoolVar(&staticDeps, "static-deps", false, "Statically include direct dependencies")
flag.BoolVar(&jetifier, "jetifier", false, "Sets jetifier: true on all modules") flag.BoolVar(&jetifier, "jetifier", false, "Sets jetifier: true on all modules")