diff options
| author | 2022-10-14 16:51:23 +0000 | |
|---|---|---|
| committer | 2022-10-14 17:25:13 +0000 | |
| commit | 1ccf57474d3894e159b1b4f7b89b38053255733c (patch) | |
| tree | d609786940e4373b13b1ca2b1eba5e9b5aa9dc46 /java | |
| parent | b472d457e08831a1827b08108a38a63a57a7a59b (diff) | |
Update documenation for default value of sdk_version
Follow-up to aosp/2065271. "private" is a Soong internal `SdkKind`
definition and is probably more meaningul for devs who work on
the build system. Changing it to "private platform APIs" should
hopefully make it more meaningful to a wider audience.
(Context: https://yaqs.corp.google.com/eng/q/4927173287831666688)
Test: None
Change-Id: Ied7198bb529eeaa85bc741177b414e06a7262365
Diffstat (limited to 'java')
| -rw-r--r-- | java/base.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/base.go b/java/base.go index 23b4d46b3..7f6132a6b 100644 --- a/java/base.go +++ b/java/base.go @@ -190,7 +190,7 @@ type CommonProperties struct { // constructing a new module. type DeviceProperties struct { // If not blank, set to the version of the sdk to compile against. - // Defaults to private. + // Defaults to an empty string, which compiles the module against the private platform APIs. // Values are of one of the following forms: // 1) numerical API level, "current", "none", or "core_platform" // 2) An SDK kind with an API level: "<sdk kind>_<API level>" |