diff options
| author | 2024-03-12 16:10:12 +0100 | |
|---|---|---|
| committer | 2024-03-12 16:10:13 +0100 | |
| commit | 55c26d3f2fb10fb0a6eb22b49a51e60ea90c00d4 (patch) | |
| tree | 07dbf907dc19f1bbc9e65722024e86e6af3676ca | |
| parent | 2381575add18002303e8467b8a91964c9cce165c (diff) | |
framework-nfc: add aconfig_declarations block
Add missing aconfig_declarations block to the framework-nfc
java_sdk_library soong module. Without this, soong doesn't know which
flags to tell metalava to retain, and metalava will effectively revert
all API changes in framework-nfc, even if the @FlaggedApi flag is
enabled.
Bug: 328923659
Test: TreeHugger
Merged-In: Iafa82071b613f9fdd590b605ab0b07cd587ecd0f
Change-Id: Iafa82071b613f9fdd590b605ab0b07cd587ecd0f
| -rw-r--r-- | nfc/Android.bp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nfc/Android.bp b/nfc/Android.bp index 2090d3397dfe..3909e1d3b807 100644 --- a/nfc/Android.bp +++ b/nfc/Android.bp @@ -69,6 +69,9 @@ java_sdk_library { lint: { strict_updatability_linting: true, }, + aconfig_declarations: [ + "android.nfc.flags-aconfig", + ], } filegroup { |