Analyze code with Lint for calls that require permissions
问题 I am setting my targetSdkVersion to 23 and therefore I want to implement "Requesting permissions at runtime". (see here) Lint directly calls out if you forget to check the permission and tells you the following: Call requires permission which may be rejected by user: code should explicitly check to see if permission is available (with checkPermission ) or explicitly handle a potential `SecurityException' This is quite nice and I want to analyze my code for any call that I may have forgotten,