Assigned
Status Update
Comments
vi...@google.com <vi...@google.com> #2
Thank you for reporting this issue. For us to further investigate this issue, please provide the following additional information:
- Provide a website URL, to the relevant document where you are observing the issue.
Description
In the doc for Android lint, it suggests to use
+
for multiple issues, for examplecheckOnly += "NewApi" + "InlinedApi"
, however in Kotlin gradle file,+
would be used to concat the strings, so the code actually meanscheckOnly += "NewApiInlinedApi"
. We should uselistOf
orsetOf
for multiple issues.Doc link:https://developer.android.google.cn/studio/write/lint#kts