diff options
| author | 2020-10-05 19:16:03 +0000 | |
|---|---|---|
| committer | 2020-10-05 19:16:03 +0000 | |
| commit | 103935cc2cbaebfbbbf6af003cfb658eb468082d (patch) | |
| tree | 0b173b8b72bfefbe3b06841f3e9619da1b19003a | |
| parent | 54c37b2e14a5004ac0e7d606c9904a005faf3d99 (diff) | |
| parent | a474d0e92fdcd78fee86cf96c3d6f10fd6ea1409 (diff) | |
Merge "Add last_released checking for non-updatable API" am: a474d0e92f
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1448956
Change-Id: I352525877588549b45ac172fb8abc793c881c72a
| -rw-r--r-- | StubLibraries.bp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/StubLibraries.bp b/StubLibraries.bp index c55fbd2d0728..50925a37d12b 100644 --- a/StubLibraries.bp +++ b/StubLibraries.bp @@ -157,6 +157,11 @@ droidstubs { api_file: "non-updatable-api/current.txt", removed_api_file: "non-updatable-api/removed.txt", }, + last_released: { + api_file: ":android-non-updatable.api.public.latest", + removed_api_file: ":android-non-updatable-removed.api.public.latest", + baseline_file: ":public-api-incompatibilities-with-last-released", + }, api_lint: { enabled: true, new_since: ":android-non-updatable.api.public.latest", @@ -219,6 +224,11 @@ droidstubs { api_file: "non-updatable-api/system-current.txt", removed_api_file: "non-updatable-api/system-removed.txt", }, + last_released: { + api_file: ":android-non-updatable.api.system.latest", + removed_api_file: ":android-non-updatable-removed.api.system.latest", + baseline_file: ":system-api-incompatibilities-with-last-released" + }, api_lint: { enabled: true, new_since: ":android-non-updatable.api.system.latest", |