what is the use of @SuppressLint(“InlinedApi”)

后端 未结 3 1455
长发绾君心
长发绾君心 2021-02-05 11:14

I encountered @SuppressLint(\"InlinedApi\") in some code i was going through and could not find out any description of it online. I understand @SuppressLint(\

3条回答
  •  孤城傲影
    2021-02-05 11:46

    By executing lint --list (the lint tool is located in your sdk/tools directory) you can see a list of the valid issue id's. You can find the explanation of InlinedApi there :

    "InlinedApi": Finds inlined fields that may or may not work on older platforms

提交回复
热议问题