diff options
author | 2024-01-18 11:36:47 -0800 | |
---|---|---|
committer | 2024-01-18 11:36:47 -0800 | |
commit | 2848c8ecc72b45e63938fae474fe20b35754caed (patch) | |
tree | 3a2e2483ad18217961fdb3c6d4d44a070d7c807d | |
parent | c53d0f2e740e266ea3a48471a3c9cec7648fb675 (diff) |
Remove strict_updatability_linting: true
strict_updatability_linting has been disabled for a while now, due to
an expansion in scope of the NewApi check. We're going to re-enable
it now, but doing so requires removing it from all modules that have
baselined NewApi issues.
Bug: 320698986
Test: Presubmits
Change-Id: Ieb445db09b69f88d44d86c0f550bf414bb6c59e7
-rw-r--r-- | Android.bp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Android.bp b/Android.bp index 764c85eee..1d9d68919 100644 --- a/Android.bp +++ b/Android.bp @@ -59,10 +59,6 @@ java_defaults { sdk_version: "system_current", min_sdk_version: "29", - - lint: { - strict_updatability_linting: true, - }, } platform_compat_config { @@ -77,7 +73,6 @@ java_library { ], lint: { strict_updatability_linting: true, - }, } @@ -112,7 +107,6 @@ android_library { target_sdk_version: "33", min_sdk_version: "29", lint: { - strict_updatability_linting: true, baseline_filename: "lint-baseline.xml", }, } @@ -129,9 +123,6 @@ android_library { sdk_version: "system_current", target_sdk_version: "33", min_sdk_version: "29", - lint: { - strict_updatability_linting: true, - }, } android_app { @@ -153,7 +144,4 @@ android_app { min_sdk_version: "29", updatable: true, - lint: { - strict_updatability_linting: true, - }, } |