diff options
| author | 2020-07-14 18:17:44 +0000 | |
|---|---|---|
| committer | 2020-07-14 18:17:44 +0000 | |
| commit | 40be9bb8e1f2d04410bc5e30ea4765e37467d7a3 (patch) | |
| tree | f849e76fc8c6fbb27b2882f9ac3b8b11f70cbd5b | |
| parent | 75fd488028e81ed8abefef826da499fcf5d46d02 (diff) | |
| parent | f971af799795f1ca61391a45a76e0e012da377d6 (diff) | |
Merge "Set sdk_version for prebuilt_api to scope"
| -rw-r--r-- | java/prebuilt_apis.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/java/prebuilt_apis.go b/java/prebuilt_apis.go index 999c72f3c..b10e6c7fe 100644 --- a/java/prebuilt_apis.go +++ b/java/prebuilt_apis.go @@ -83,8 +83,7 @@ func createImport(mctx android.LoadHookContext, module string, scope string, api }{} props.Name = proptools.StringPtr(prebuiltApiModuleName(mctx, module, scope, apiver)) props.Jars = append(props.Jars, path) - // TODO(hansson): change to scope after migration is done. - props.Sdk_version = proptools.StringPtr("current") + props.Sdk_version = proptools.StringPtr(scope) props.Installable = proptools.BoolPtr(false) mctx.CreateModule(ImportFactory, &props) |